當前位置: 首頁>>代碼示例>>PHP>>正文


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怎麽用?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;
 }
開發者ID:xiaoguizhidao,項目名稱:blingjewelry-prod,代碼行數:16,代碼來源:Wishlist.php

示例2: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('sales_order_create_sidebar_pcompared');
     $this->setDataId('pcompared');
 }
開發者ID:quyip8818,項目名稱:Mag,代碼行數:6,代碼來源:Pcompared.php

示例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();
 }
開發者ID:hyhoocchan,項目名稱:mage-local,代碼行數:14,代碼來源:Cart.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setId('sales_order_create_sidebar_pviewed');
     $this->setDataId('pviewed');
 }
開發者ID:ronseigel,項目名稱:agent-ohm,代碼行數:6,代碼來源:Sales_Order_Create_Sidebar_Pviewed.php

示例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();
 }
開發者ID:nayanchamp,項目名稱:magento2,代碼行數:13,代碼來源:Cart.php


注:本文中的Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。