本文整理匯總了PHP中Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract類的典型用法代碼示例。如果您正苦於以下問題:PHP Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract類的具體用法?PHP Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract怎麽用?PHP Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getItems
/**
* Retrieve all items
*
* @return array
*/
public function getItems()
{
$items = parent::getItems();
foreach ($items as $item) {
$product = $item->getProduct();
$item->setName($product->getName());
$item->setPrice($product->getFinalPrice(1));
$item->setTypeId($product->getTypeId());
}
return $items;
}
示例2: _construct
protected function _construct()
{
parent::_construct();
$this->setId('sales_order_create_sidebar_pcompared');
$this->setDataId('pcompared');
}
示例3: _prepareLayout
/**
* 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();
}
示例4: __construct
public function __construct()
{
parent::__construct();
$this->setId('sales_order_create_sidebar_pviewed');
$this->setDataId('pviewed');
}
示例5: _prepareLayout
/**
* 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();
}