Public Member Functions | |
__construct () | |
Protected Member Functions | |
_beforeToHtml () |
Definition at line 34 of file Tabs.php.
__construct | ( | ) |
Constructor
By default is looking for first argument as array and assignes it as object attributes This behaviour may change in child classes
Reimplemented from Varien_Object.
Definition at line 37 of file Tabs.php.
00038 { 00039 parent::__construct(); 00040 $this->setId('page_tabs'); 00041 $this->setDestElementId('edit_form'); 00042 $this->setTitle(Mage::helper('cms')->__('Page Information')); 00043 }
_beforeToHtml | ( | ) | [protected] |
Before rendering html, but after trying to load cache
Reimplemented from Mage_Adminhtml_Block_Widget_Tabs.
Definition at line 45 of file Tabs.php.
00046 { 00047 $this->addTab('main_section', array( 00048 'label' => Mage::helper('cms')->__('General Information'), 00049 'title' => Mage::helper('cms')->__('General Information'), 00050 'content' => $this->getLayout()->createBlock('adminhtml/cms_page_edit_tab_main')->toHtml(), 00051 'active' => true 00052 )); 00053 00054 $this->addTab('design_section', array( 00055 'label' => Mage::helper('cms')->__('Custom Design'), 00056 'title' => Mage::helper('cms')->__('Custom Design'), 00057 'content' => $this->getLayout()->createBlock('adminhtml/cms_page_edit_tab_design')->toHtml(), 00058 )); 00059 00060 $this->addTab('meta_section', array( 00061 'label' => Mage::helper('cms')->__('Meta Data'), 00062 'title' => Mage::helper('cms')->__('Meta Data'), 00063 'content' => $this->getLayout()->createBlock('adminhtml/cms_page_edit_tab_meta')->toHtml(), 00064 )); 00065 if (Mage::app()->getConfig()->getModuleConfig('Mage_GoogleOptimizer')->is('active', true) 00066 && Mage::helper('googleoptimizer')->isOptimizerActiveForCms()) { 00067 $this->addTab('googleoptimizer_section', array( 00068 'label' => Mage::helper('googleoptimizer')->__('Page View Optimization'), 00069 'title' => Mage::helper('googleoptimizer')->__('Page View Optimization'), 00070 'content' => $this->getLayout()->createBlock('googleoptimizer/adminhtml_cms_page_edit_tab_googleoptimizer')->toHtml(), 00071 )); 00072 } 00073 return parent::_beforeToHtml(); 00074 }