Public Member Functions | |
__construct () | |
Protected Member Functions | |
_prepareLayout () |
Definition at line 27 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 29 of file Tabs.php.
00030 { 00031 parent::__construct(); 00032 $this->setId('design_tabs'); 00033 $this->setDestElementId('design_edit_form'); 00034 $this->setTitle(Mage::helper('core')->__('Design Change')); 00035 }
_prepareLayout | ( | ) | [protected] |
Preparing global layout
You can redefine this method in child classes for changin layout
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 37 of file Tabs.php.
00038 { 00039 $this->addTab('general', array( 00040 'label' => Mage::helper('core')->__('General'), 00041 'content' => $this->getLayout()->createBlock('adminhtml/system_design_edit_tab_general')->toHtml(), 00042 )); 00043 00044 return parent::_prepareLayout(); 00045 }