Exemplo n.º 1
0
 /**
  * Prepare layout
  *
  * Add button that clears customer's shopping cart
  *
  * @return Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Cart
  */
 protected function _prepareLayout()
 {
     $deleteAllConfirmString = Mage::helper('sales')->__('Are you sure you want to delete all items from shopping cart?');
     $button = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('sales')->__('Clear Shopping Cart'), 'onclick' => 'order.clearShoppingCart(\'' . $deleteAllConfirmString . '\')', 'style' => 'float: right;'));
     $this->setChild('empty_customer_cart_button', $button);
     return parent::_prepareLayout();
 }
Exemplo n.º 2
0
 /**
  * Prepare layout
  *
  * Add button that clears customer's shopping cart
  *
  * @return Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Cart
  */
 protected function _prepareLayout()
 {
     $deleteAllConfirmString = Mage::helper('Mage_Sales_Helper_Data')->__('Are you sure you want to delete all items from shopping cart?');
     $this->addChild('empty_customer_cart_button', 'Mage_Adminhtml_Block_Widget_Button', array('label' => Mage::helper('Mage_Sales_Helper_Data')->__('Clear Shopping Cart'), 'onclick' => 'order.clearShoppingCart(\'' . $deleteAllConfirmString . '\')', 'style' => 'float: right;'));
     return parent::_prepareLayout();
 }