Public Member Functions | |
__construct () | |
Protected Member Functions | |
_prepareLayout () |
Definition at line 35 of file Inbox.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_Grid_Container.
Definition at line 37 of file Inbox.php.
00038 { 00039 $this->_controller = 'notification'; 00040 $this->_headerText = Mage::helper('adminnotification')->__('Messages Inbox'); 00041 parent::__construct(); 00042 }
_prepareLayout | ( | ) | [protected] |
Preparing global layout
You can redefine this method in child classes for changin layout
Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Container.
Definition at line 44 of file Inbox.php.
00045 { 00046 $this->_removeButton('add'); 00047 00048 return parent::_prepareLayout(); 00049 }