Public Member Functions | |
__construct () | |
getHeaderText () |
Definition at line 34 of file Edit.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 Mage_Adminhtml_Block_Widget_Form_Container.
Definition at line 36 of file Edit.php.
00037 { 00038 $this->_objectId = 'id'; 00039 $this->_controller = 'extensions_console'; 00040 00041 parent::__construct(); 00042 00043 $this->_removeButton('back'); 00044 00045 $this->_removeButton('save'); 00046 00047 }
getHeaderText | ( | ) |
Get header text
Reimplemented from Mage_Adminhtml_Block_Widget_Container.
Definition at line 49 of file Edit.php.
00050 { 00051 return Mage::helper('adminhtml')->__('PEAR Console'); 00052 }