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_remote'; 00040 00041 parent::__construct(); 00042 00043 $this->_removeButton('save'); 00044 $this->_removeButton('delete'); 00045 $this->_removeButton('reset'); 00046 }
getHeaderText | ( | ) |
Get header text
Reimplemented from Mage_Adminhtml_Block_Widget_Container.
Definition at line 48 of file Edit.php.
00049 { 00050 $ext = Mage::registry('remote_extension'); 00051 return $this->htmlEscape($ext->getName()); 00052 }