1 | <?php |
||
7 | class TemplateConfig |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $masterTemplate; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $masterSection; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $styleStack; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $scriptStack; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $indexTitle; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | private $indexIntro; |
||
38 | |||
39 | /** |
||
40 | * @var bool |
||
41 | */ |
||
42 | private $showProductLine; |
||
43 | |||
44 | /** |
||
45 | * @var bool |
||
46 | */ |
||
47 | private $showFootnotes; |
||
48 | |||
49 | /** |
||
50 | * TemplateConfig constructor. |
||
51 | * |
||
52 | * @param string $masterTemplate |
||
53 | * @param string $masterSection |
||
54 | * @param string $styleStack |
||
55 | * @param string $scriptStack |
||
56 | * @param string $indexTitle |
||
57 | * @param string $indexIntro |
||
58 | * @param bool $showProductLine |
||
59 | * @param bool $showFootnotes |
||
60 | */ |
||
61 | public function __construct( |
||
80 | |||
81 | /** |
||
82 | * @return string |
||
83 | */ |
||
84 | public function getMasterTemplate(): string |
||
88 | |||
89 | /** |
||
90 | * @return string |
||
91 | */ |
||
92 | public function getMasterSection(): string |
||
96 | |||
97 | /** |
||
98 | * @return string |
||
99 | */ |
||
100 | public function getStyleStack(): string |
||
104 | |||
105 | /** |
||
106 | * @return bool |
||
107 | */ |
||
108 | public function hasStyleStack(): bool |
||
112 | |||
113 | /** |
||
114 | * @return string |
||
115 | */ |
||
116 | public function getScriptStack(): string |
||
120 | |||
121 | /** |
||
122 | * @return bool |
||
123 | */ |
||
124 | public function hasScriptStack(): bool |
||
128 | |||
129 | /** |
||
130 | * @return string |
||
131 | */ |
||
132 | public function getIndexTitle(): string |
||
136 | |||
137 | /** |
||
138 | * @return string |
||
139 | */ |
||
140 | public function getIndexIntro(): string |
||
144 | |||
145 | /** |
||
146 | * @return bool |
||
147 | */ |
||
148 | public function isShowProductLine(): bool |
||
152 | |||
153 | /** |
||
154 | * @return bool |
||
155 | */ |
||
156 | public function isShowFootnotes(): bool |
||
160 | } |
||
161 |