
Public Member Functions | |
| __construct () | |
| getHeaderText () | |
Definition at line 35 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 37 of file Edit.php.
00038 { 00039 parent::__construct(); 00040 00041 $this->_controller = 'system_account'; 00042 $this->_updateButton('save', 'label', Mage::helper('adminhtml')->__('Save Account')); 00043 $this->_removeButton('delete'); 00044 $this->_removeButton('back'); 00045 }
| getHeaderText | ( | ) |
Get header text
Reimplemented from Mage_Adminhtml_Block_Widget_Container.
Definition at line 47 of file Edit.php.
00048 { 00049 return Mage::helper('adminhtml')->__('My Account'); 00050 }
1.5.8