1 | <?php |
||
5 | class AdminGlobalVariable |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $pageLayoutTemplate; |
||
11 | |||
12 | /** |
||
13 | * Sets the pagelayout template. |
||
14 | * |
||
15 | * @param string $pageLayoutTemplate |
||
16 | */ |
||
17 | public function setPageLayoutTemplate($pageLayoutTemplate = null) |
||
21 | |||
22 | /** |
||
23 | * Returns the pagelayout template. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getPageLayoutTemplate() |
||
31 | } |
||
32 |