コード例 #1
0
ファイル: Discount.php プロジェクト: sagmahajan/aswan_release
 protected function _construct()
 {
     if (Mage::getStoreConfig('amrules/general/breakdown')) {
         $this->_template = 'amrules/checkout/discount.phtml';
     }
     parent::_construct();
 }
コード例 #2
0
ファイル: Rewarddiscount.php プロジェクト: rajarshc/Rooja
 protected function _toHtml()
 {
     if (Mage::helper('rewards')->isMultishipMode()) {
         return '';
     } else {
         return parent::_toHtml();
     }
 }
コード例 #3
0
ファイル: Grand.php プロジェクト: rajarshc/Rooja
 protected function _toHtml()
 {
     $dont_show_me = Mage::helper('rewards/config')->replaceGrandTotalWithPoints();
     if ($dont_show_me) {
         return '';
     } else {
         return parent::_toHtml();
     }
 }
コード例 #4
0
ファイル: Nominal.php プロジェクト: natxetee/magento2
 /**
  * Import total data into the block, if there are items
  *
  * @return string
  */
 protected function _toHtml()
 {
     $total = $this->getTotal();
     $items = $total->getItems();
     if ($items) {
         foreach ($total->getData() as $key => $value) {
             $this->setData("total_{$key}", $value);
         }
         return parent::_toHtml();
     }
     return '';
 }
コード例 #5
0
ファイル: PaymentFee.php プロジェクト: Maikel-Koek/magento
 /**
  * initialize taxConfig model
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_taxConfig = Mage::getModel('adyen_fee/tax_config');
 }
コード例 #6
0
 protected function _construct()
 {
     parent::_construct();
     $this->_checkoutHelper = Mage::helper('checkout');
 }