当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Payment_Block_Info::_construct方法代码示例

本文整理汇总了PHP中Mage_Payment_Block_Info::_construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Payment_Block_Info::_construct方法的具体用法?PHP Mage_Payment_Block_Info::_construct怎么用?PHP Mage_Payment_Block_Info::_construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Payment_Block_Info的用法示例。


在下文中一共展示了Mage_Payment_Block_Info::_construct方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setInfoMessage(Mage::helper('vtmandiri/data')->_getInfoTypeIsImage() == true ? '<img src="' . $this->getSkinUrl('images/Veritrans.png') . '"/>' : '<b>' . Mage::helper('vtmandiri/data')->_getTitle() . '</b>');
     $this->setPaymentMethodTitle(Mage::helper('vtmandiri/data')->_getTitle());
     $this->setTemplate('vtmandiri/info.phtml');
 }
开发者ID:victorkho,项目名称:telor,代码行数:7,代码来源:Info.php

示例2: _construct

 protected function _construct()
 {
     parent::_construct();
     // This is the default template we want to use for this block. We need to set it here as this block
     // is instantiated by core directly rather than in layout
     $this->setTemplate('fontis/australia/payment/bpay/info.phtml');
 }
开发者ID:rob3000,项目名称:fontis_australia,代码行数:7,代码来源:Info.php

示例3: _construct

 protected function _construct()
 {
     parent::_construct();
     /* 
     	$this->setTemplate('webpos/admin/webpos/payment/method/info/cash.phtml'); 
     */
 }
开发者ID:cabrerabywaters,项目名称:magentoSunshine,代码行数:7,代码来源:Cash.php

示例4: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('payex/partpayment/info.phtml');
     // Template for Checkout page
     if ($this->getRequest()->getRequestedActionName() === 'progress') {
         $this->setTemplate('payex/partpayment/title.phtml');
     }
 }
开发者ID:AndreKlang,项目名称:Magento-Payex,代码行数:9,代码来源:PartPayment.php

示例5: _construct

 /**
  * Construct payment info block and set template
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     /* @var $helper Itabs_Debit_Helper_Data */
     $helper = Mage::helper('debit');
     if ($helper->getDebitType() == Itabs_Debit_Helper_Data::DEBIT_TYPE_SEPA) {
         $this->setTemplate('debit/sepa/info.phtml');
     } else {
         $this->setTemplate('debit/info.phtml');
     }
 }
开发者ID:thanakrit-promsiri,项目名称:GermanStoreConfig,代码行数:16,代码来源:Info.php

示例6: _construct

 protected function _construct()
 {
     parent::_construct();
     $controllerName = $this->getRequest()->getControllerName();
     if (Mage::getDesign()->getArea() == 'adminhtml' && strstr($controllerName, 'memo') !== FALSE) {
         $this->setTemplate('customweb/saferpaycw/info_creditmemo.phtml');
     } else {
         if (Mage::getDesign()->getArea() == 'adminhtml' && (strstr($controllerName, 'invoice') !== FALSE || strstr($controllerName, 'editsaferpaycw') !== FALSE)) {
             $this->setTemplate('customweb/saferpaycw/info_invoice.phtml');
         } else {
             $this->setTemplate('customweb/saferpaycw/info.phtml');
         }
     }
 }
开发者ID:jronatay,项目名称:ultimo-magento-jron,代码行数:14,代码来源:Info.php

示例7: _construct

 public function _construct()
 {
     parent::_construct();
     $this->setTemplate('bitpay/info/default.phtml');
 }
开发者ID:keramist,项目名称:magento-plugin,代码行数:5,代码来源:Info.php

示例8: _construct

 /**
  * Constructor. Set template.
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('moneybookers/info.phtml');
 }
开发者ID:ravi2jdesign,项目名称:solvingmagento_1.7.0,代码行数:8,代码来源:Info.php

示例9: _construct

 /**
  * Set block template
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('capayable/info.phtml');
 }
开发者ID:blueglobeNL,项目名称:tritac-capayable,代码行数:8,代码来源:Info.php

示例10: _construct

 protected function _construct()
 {
     parent::_construct();
 }
开发者ID:xiaoguizhidao,项目名称:emporiodopara,代码行数:4,代码来源:Info.php

示例11: _construct

 /**
  * Init default template for block
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('adyen/info/sepa.phtml');
 }
开发者ID:newsjunk,项目名称:magepaything,代码行数:8,代码来源:Sepa.php

示例12: _construct

 /**
  * Init ops payment information block
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('postfinance/info/redirect.phtml');
 }
开发者ID:nomade-it,项目名称:MagentoPostFinance,代码行数:9,代码来源:Redirect.php


注:本文中的Mage_Payment_Block_Info::_construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。