1 | <?php |
||
7 | class AdminGlobalVariable |
||
8 | { |
||
9 | /** |
||
10 | * @var string|null |
||
11 | */ |
||
12 | protected $pageLayoutTemplate; |
||
13 | |||
14 | /** |
||
15 | * Sets the pagelayout template. |
||
16 | * |
||
17 | * @param string $pageLayoutTemplate |
||
18 | */ |
||
19 | public function setPageLayoutTemplate(?string $pageLayoutTemplate = null): void |
||
23 | |||
24 | /** |
||
25 | * Returns the pagelayout template. |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getPageLayoutTemplate(): ?string |
||
33 | } |
||
34 |