1 | <?php |
||
8 | class PagePartAdminConfigurator extends AbstractPagePartAdminConfigurator |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $name; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $internalName; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $context; |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | protected $pagePartTypes; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $widgetTemplate; |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | 1 | public function getPossiblePagePartTypes() |
|
42 | |||
43 | 3 | public function setPossiblePagePartTypes(array $pagePartTypes) |
|
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | 2 | public function getName() |
|
55 | |||
56 | /** |
||
57 | * @param string $name |
||
58 | */ |
||
59 | 3 | public function setName($name) |
|
63 | |||
64 | /** |
||
65 | * @return string |
||
66 | */ |
||
67 | public function getInternalName() |
||
71 | |||
72 | /** |
||
73 | * @param string $internalName |
||
74 | */ |
||
75 | 3 | public function setInternalName($internalName) |
|
79 | |||
80 | /** |
||
81 | * @return string |
||
82 | */ |
||
83 | 2 | public function getContext() |
|
87 | |||
88 | /** |
||
89 | * @param string $context |
||
90 | */ |
||
91 | 5 | public function setContext($context) |
|
95 | |||
96 | /** |
||
97 | * @return string |
||
98 | */ |
||
99 | public function getWidgetTemplate() |
||
103 | |||
104 | /** |
||
105 | * @param string $widgetTemplate |
||
106 | */ |
||
107 | public function setWidgetTemplate($widgetTemplate) |
||
111 | } |
||
112 |