-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCollection.php
97 lines (80 loc) · 1.8 KB
/
Collection.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
namespace padavvan\placer;
use yii\helpers\Html;
class Collection extends AbstractPlace
{
/**
* Стэк
*/
private array $_children = [];
/**
* Разделитель
* @var string
*/
public $delimiter = '';
/**
* @inheritdoc
*/
public function push(AbstractPlace $place)
{
$this->_children[$place->name] = $place;
return $this;
}
/**
* @param $config
*/
public function pushPortlet($config)
{
return $this->push(Portlet::create($config));
}
/**
* @param $config
*/
public function pushCollection($config)
{
return $this->push(Collection::create($config));
}
/**
* @inheritdoc
*/
public function remove(AbstractPlace $place)
{
unset($this->_children[$place->name]);
}
/**
* @inheritdoc
*/
public function render()
{
if (!$this->isView()) {
return;
}
$collection = [];
/** @var AbstractPlace $child */
foreach ($this->_children as $child) {
$collection[] = $child->render();
}
$out = implode($this->delimiter, $collection);
if (null === $this->tag) {
return $out;
} else {
return Html::tag($this->tag, $out, $this->options);
}
}
/**
* @inheritdoc
*/
public function __get($name)
{
$getter = 'get' . $name;
if (method_exists($this, $getter)) {
return $this->$getter();
} elseif (isset($this->_children[$name])) {
return $this->_children[$name];
} else {
$collection = static::create(['name' => $name]);
$this->push($collection);
return $collection;
}
}
}