1 | <?php |
||
8 | class Group extends Entity |
||
9 | { |
||
10 | |||
11 | use AppTranslateTrait; |
||
12 | use TranslateTrait; |
||
13 | |||
14 | /** |
||
15 | * Fields that can be mass assigned using newEntity() or patchEntity(). |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $_accessible = [ |
||
20 | '*' => true, |
||
21 | 'id' => false, |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * The parendNode for ACL. |
||
26 | * |
||
27 | * @return null |
||
28 | */ |
||
29 | public function parentNode() |
||
33 | } |
||
34 |