// Change display_header and display_footer behavior on BackOffice

This commit is contained in:
rGaillard
2011-10-28 12:58:13 +00:00
parent 2a0bab6958
commit 737ba0736d
2 changed files with 13 additions and 7 deletions
+11 -3
View File
@@ -122,10 +122,18 @@ abstract class ControllerCore
{
$this->init();
if ($this->checkAccess())
// postProcess handles ajaxProcess
$this->postProcess();
if ($this->display_header || (isset($this->className) && $this->className))
{
if ($this->ajax && method_exists($this, 'ajaxPreprocess'))
$this->ajaxPreProcess();
$this->setMedia();
$this->initHeader();
}
$this->initContent();
if ($this->display_footer || (isset($this->className) && $this->className))
$this->initFooter();
// postProcess handles ajaxProcess
$this->postProcess();