1 | <?php |
||
13 | class PermissionCategory extends Content implements CategoryInterface |
||
|
|||
14 | { |
||
15 | use CategoryTrait; |
||
16 | |||
17 | /** |
||
18 | * @var \Charcoal\Translator\Translation|null |
||
19 | */ |
||
20 | private $name; |
||
21 | |||
22 | /** |
||
23 | * @param mixed $name The news category name (localized). |
||
24 | * @return self |
||
25 | */ |
||
26 | public function setName($name) |
||
31 | |||
32 | /** |
||
33 | * @return \Charcoal\Translator\Translation|null |
||
34 | */ |
||
35 | public function getName() |
||
36 | { |
||
37 | return $this->name; |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @return array |
||
42 | */ |
||
43 | public function loadCategoryItems() |
||
47 | } |
||
48 |