[-] BO : fix bug #PSTEST-932 - toolbar / save button issue

This commit is contained in:
tDidierjean
2012-03-01 13:56:52 +00:00
parent 6e3a97361c
commit 11f130c695
@@ -91,6 +91,7 @@ class AdminThemesControllerCore extends AdminController
public $className = 'Theme';
public $table = 'theme';
protected $toolbar_scroll = false;
public function init()
{
@@ -595,4 +596,35 @@ class AdminThemesControllerCore extends AdminController
}
return !count($this->errors) ? true : false;
}
public function initProcess()
{
parent::initProcess();
// This is a composite page, we don't want the "options" display mode
if ($this->display == 'options')
$this->display = '';
}
/**
* Function used to render the options for this controller
*/
public function renderOptions()
{
if ($this->options && is_array($this->options))
{
$helper = new HelperOptions($this);
$this->setHelperDisplay($helper);
$helper->toolbar_scroll = true;
$helper->title = $this->l('Theme appearance');
$helper->toolbar_btn = array('save' => array(
'href' => '#',
'desc' => $this->l('Save')
));
$helper->id = $this->id;
$helper->tpl_vars = $this->tpl_option_vars;
$options = $helper->generateOptions($this->options);
return $options;
}
}
}