@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | $this->pm->configureTwig($this->getConfiguration(), array( |
149 | 149 | 'safe' => $this->safeMode, |
150 | 150 | 'globals' => array( |
151 | - array('name' => 'site', 'value' => $this->getConfiguration()->getConfiguration()), |
|
151 | + array('name' => 'site', 'value' => $this->getConfiguration()->getConfiguration()), |
|
152 | 152 | array('name' => 'collections', 'value' => $this->cm->getJailedCollections()), |
153 | - array('name' => 'menu', 'value' => $this->mm->getSiteMenu()), |
|
154 | - array('name' => 'pages', 'value' => $this->pm->getJailedStaticPages()), |
|
155 | - array('name' => 'data', 'value' => $this->dm->getDataItems()) |
|
153 | + array('name' => 'menu', 'value' => $this->mm->getSiteMenu()), |
|
154 | + array('name' => 'pages', 'value' => $this->pm->getJailedStaticPages()), |
|
155 | + array('name' => 'data', 'value' => $this->dm->getDataItems()) |
|
156 | 156 | ) |
157 | 157 | )); |
158 | 158 | $this->pm->compileAll(); |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | /** |
319 | 319 | * @return boolean |
320 | 320 | */ |
321 | - public function isNoClean() |
|
321 | + public function isNoClean () |
|
322 | 322 | { |
323 | 323 | return $this->noClean; |
324 | 324 | } |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | /** |
327 | 327 | * @param boolean $noClean |
328 | 328 | */ |
329 | - public function setNoClean($noClean) |
|
329 | + public function setNoClean ($noClean) |
|
330 | 330 | { |
331 | 331 | $this->noClean = $noClean; |
332 | 332 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | /** @var PageView */ |
16 | 16 | private $siteMenu; |
17 | 17 | |
18 | - public function __construct() |
|
18 | + public function __construct () |
|
19 | 19 | { |
20 | 20 | parent::__construct(); |
21 | 21 |