Public Member Functions | |
__construct () | |
Protected Member Functions | |
_beforeToHtml () | |
_getTabHtml ($tab) |
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 36 of file Tabs.php.
00037 { 00038 parent::__construct(); 00039 $this->setId('extensions_remote_tabs'); 00040 $this->setDestElementId('edit_form'); 00041 $this->setTitle(Mage::helper('adminhtml')->__('Remote Extension Info')); 00042 }
_beforeToHtml | ( | ) | [protected] |
Before rendering html, but after trying to load cache
Reimplemented from Mage_Adminhtml_Block_Widget_Tabs.
Definition at line 44 of file Tabs.php.
00045 { 00046 $this->addTab('package', array( 00047 'label' => Mage::helper('adminhtml')->__('Package Info'), 00048 'content' => $this->_getTabHtml('package'), 00049 'active' => true, 00050 )); 00051 00052 $this->addTab('changelog', array( 00053 'label' => Mage::helper('adminhtml')->__('Changelog'), 00054 'content' => $this->_getTabHtml('changelog'), 00055 )); 00056 00057 $this->addTab('actions', array( 00058 'label' => Mage::helper('adminhtml')->__('Actions'), 00059 'content' => $this->_getTabHtml('actions'), 00060 )); 00061 00062 /* 00063 $this->addTab('release', array( 00064 'label' => Mage::helper('adminhtml')->__('Release Info'), 00065 'content' => $this->_getTabHtml('release'), 00066 )); 00067 00068 $this->addTab('maintainers', array( 00069 'label' => Mage::helper('adminhtml')->__('Maintainers'), 00070 'content' => $this->_getTabHtml('maintainers'), 00071 )); 00072 00073 $this->addTab('depends', array( 00074 'label' => Mage::helper('adminhtml')->__('Dependencies'), 00075 'content' => $this->_getTabHtml('depends'), 00076 )); 00077 00078 00079 */ 00080 return parent::_beforeToHtml(); 00081 }
_getTabHtml | ( | $ | tab | ) | [protected] |