Public Member Functions | |
__construct () | |
getCreateUrl () |
Definition at line 34 of file Order.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 Order.php.
00038 { 00039 $this->_controller = 'sales_order'; 00040 $this->_headerText = Mage::helper('sales')->__('Orders'); 00041 $this->_addButtonLabel = Mage::helper('sales')->__('Create New Order'); 00042 parent::__construct(); 00043 if (!Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/create')) { 00044 $this->_removeButton('add'); 00045 } 00046 }
getCreateUrl | ( | ) |
Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Container.
Definition at line 48 of file Order.php.
00049 { 00050 return $this->getUrl('*/sales_order_create/start'); 00051 }