Public Member Functions | |
__construct () | |
_beforeToHtml () |
Definition at line 34 of file Group.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 37 of file Group.php.
00038 { 00039 parent::__construct(); 00040 $this->setTemplate('customer/group/list.phtml'); 00041 }
_beforeToHtml | ( | ) |
Before rendering html, but after trying to load cache
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 43 of file Group.php.
00044 { 00045 $this->assign('createUrl', $this->getUrl('*/customer_group/new')); 00046 $this->setChild('grid', $this->getLayout()->createBlock('adminhtml/customer_group_grid', 'customer.group.grid')); 00047 return parent::_beforeToHtml(); 00048 }