1 | <?php |
||
14 | class PermissionCategory extends Content implements CategoryInterface |
||
15 | { |
||
16 | use CategoryTrait; |
||
17 | |||
18 | /** |
||
19 | * @var TranslationString $name |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @param mixed $name The news category name (localized). |
||
25 | * @return NewsCategory Chainable |
||
26 | */ |
||
27 | public function setName($name) |
||
32 | |||
33 | /** |
||
34 | * @return TranslationString |
||
35 | */ |
||
36 | public function name() |
||
40 | |||
41 | /** |
||
42 | * @return array |
||
43 | */ |
||
44 | public function loadCategoryItems() |
||
48 | } |
||
49 |