Public Member Functions | |
indexAction () | |
Protected Member Functions | |
_isAllowed () |
Definition at line 34 of file ConfigController.php.
_isAllowed | ( | ) | [protected] |
Reimplemented from Mage_Adminhtml_Controller_Action.
Definition at line 51 of file ConfigController.php.
00052 { 00053 return Mage::getSingleton('admin/session')->isAllowed('customer/config'); 00054 }
indexAction | ( | ) |
Definition at line 36 of file ConfigController.php.
00037 { 00038 $this->loadLayout(); 00039 $this->_setActiveMenu('customer/config'); 00040 $this->_addBreadcrumb(Mage::helper('customer')->__('Customer'), Mage::helper('customer')->__('Customer')); 00041 $this->_addBreadcrumb(Mage::helper('customer')->__('Config'), Mage::helper('customer')->__('Config')); 00042 $this->_addContent( 00043 $this->getLayout()->createBlock('adminhtml/customer_config') 00044 ); 00045 $this->getLayout()->getBlock('left') 00046 ->append($this->getLayout()->createBlock('adminhtml/customer_config_tabs')); 00047 00048 $this->renderLayout(); 00049 }