コード例 #1
0
ファイル: Notsaved.php プロジェクト: programmerrahul/vastecom
 protected function _construct()
 {
     parent::_construct();
     //unset all session's transaparent;
     Mage::getModel('ewayrapid/request_transparent')->unsetSessionData();
     $this->setTemplate('ewayrapid/form/transparent_notsaved.phtml');
 }
コード例 #2
0
 protected function _construct()
 {
     parent::_construct();
     if (!$this->isWebpos()) {
     } else {
         $this->setTemplate('webpos/webpos/payment/ccsave.phtml');
     }
 }
 protected function _construct()
 {
     parent::_construct();
     // Only replace the template on frontend side else we lose the ability to place orders from magento admin (The condition we are using doesn't work for all pages example like Magento connect pages, but definitely works in our context)
     if (!Mage::app()->getStore()->isAdmin()) {
         $this->setTemplate('anattadesign/awesomecheckout/onepage/payment/form/cc.phtml');
     }
 }
コード例 #4
0
ファイル: Saved.php プロジェクト: programmerrahul/vastecom
 protected function _construct()
 {
     parent::_construct();
     $this->setIsRecurring(Mage::helper('ewayrapid')->isRecurring());
     $this->setTemplate('ewayrapid/form/transparent_saved.phtml');
     //unset all session's transaparent
     Mage::getModel('ewayrapid/request_transparent')->unsetSessionData();
 }
コード例 #5
0
ファイル: Cc.php プロジェクト: raphaelpor/magento
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('adyen/form/cc.phtml');
     if (Mage::getStoreConfig('payment/adyen_abstract/title_renderer') == Adyen_Payment_Model_Source_Rendermode::MODE_TITLE_IMAGE) {
         $this->setMethodTitle('');
     }
 }
コード例 #6
0
ファイル: Cc.php プロジェクト: agentelinux/CardSaveCheckbox
 public function _construct()
 {
     parent::_construct();
     /**
      * we updated the template to add a "save this card" checkbox to the
      * "Pay with Card" payment option
      */
     $this->setTemplate('customerparadigm_cardsavecheckbox/form/cc.phtml');
 }
コード例 #7
0
 protected function _construct()
 {
     parent::_construct();
     if (!Mage::getStoreConfigFlag('payment/wirecard_checkout_page_cc/pci3DssSaqAEnable', Mage::app()->getStore()->getId())) {
         $this->setTemplate('wirecard_checkout_page/seamless/cc.phtml');
     } else {
         $this->setTemplate('wirecard_checkout_page/seamless/cc-nopci.phtml');
     }
 }
コード例 #8
0
 protected function _construct()
 {
     parent::_construct();
     if (!Mage::getSingleton('admin/session')->isLoggedIn()) {
         //this is the frontend -> do nothing
     } else {
         //this is backend, modify to swiper template
         $this->setTemplate('sm/xpos/payment/cc.phtml');
     }
 }
コード例 #9
0
 /**
  * Set the template
  */
 protected function _construct()
 {
     parent::_construct();
     // Utilise a differente template if we're using Hosted Fields
     if (Mage::getModel('gene_braintree/paymentmethod_creditcard')->getConfigData('form_integration') == Gene_Braintree_Model_Source_Creditcard_FormIntegration::INTEGRATION_HOSTED) {
         $this->setTemplate('gene/braintree/creditcard/hostedfields.phtml');
     } else {
         $this->setTemplate('gene/braintree/creditcard.phtml');
     }
 }
コード例 #10
0
ファイル: Cc.php プロジェクト: AmineCherrai/rostanvo
 protected function _construct()
 {
     parent::_construct();
     $paymentMethodIcon = $this->getSkinUrl('images/adyen/img_trans.gif');
     $label = Mage::helper('adyen')->_getConfigData("title", "adyen_cc");
     $mark = Mage::getConfig()->getBlockClassName('core/template');
     $mark = new $mark();
     $mark->setTemplate('adyen/payment/payment_method_label.phtml')->setPaymentMethodIcon($paymentMethodIcon)->setPaymentMethodLabel($label)->setPaymentMethodClass("adyen_cc");
     $this->setTemplate('adyen/form/cc.phtml')->setMethodTitle('')->setMethodLabelAfterHtml($mark->toHtml());
 }
コード例 #11
0
ファイル: Cc.php プロジェクト: wirecard/magento-wcs
 protected function _construct()
 {
     parent::_construct();
     /** @var Wirecard_CheckoutSeamless_Helper_Data $helper */
     $helper = Mage::helper('wirecard_checkoutseamless');
     if (!$helper->getConfigData('ccard/pci3_dss_saq_a_enable')) {
         $this->setTemplate('wirecard/checkoutseamless/seamless/cc.phtml');
     } else {
         $this->setTemplate('wirecard/checkoutseamless/seamless/cc-nopci.phtml');
     }
 }
コード例 #12
0
ファイル: Form.php プロジェクト: andrew-dwyer/PINpayments
 protected function _construct()
 {
     parent::_construct();
     $template = $this->setTemplate('pinpay/form/pinpay.phtml');
     if (!Mage::app()->getStore()->isAdmin()) {
         $mark = Mage::getConfig()->getBlockClassName('core/template');
         $mark = new $mark();
         $mark->setTemplate('pinpay/form/mark.phtml');
         // Appends the "Powered by PinPayments logo to payment method description
         $template->setMethodLabelAfterHtml($mark->toHtml());
     }
 }
コード例 #13
0
ファイル: Form.php プロジェクト: xiaoguizhidao/BumblebeeSite
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('morecc/cc.phtml');
 }
コード例 #14
0
ファイル: Form.php プロジェクト: jweiss/Magento-Example
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('paybox/direct/form.phtml');
 }
コード例 #15
0
ファイル: Saved.php プロジェクト: programmerrahul/vastecom
 protected function _construct()
 {
     parent::_construct();
     $this->setIsRecurring(Mage::helper('ewayrapid')->isRecurring());
     $this->setTemplate('ewayrapid/form/direct_saved.phtml');
 }
コード例 #16
0
ファイル: Cc.php プロジェクト: thiagormartins/iugu-magento
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('iugu/form/cc.phtml');
 }
コード例 #17
0
ファイル: Form.php プロジェクト: emaraschio/plugin-magento
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('totalcoin/standard/form.phtml');
 }
コード例 #18
0
ファイル: Form.php プロジェクト: colombinis/cart-magento
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('mercadopago/custom/form.phtml');
 }
コード例 #19
0
 protected function _construct()
 {
     parent::_construct();
     $this->_config = Mage::helper('ebayenterprise_creditcard')->getConfigModel();
     $this->setTemplate('ebayenterprise_creditcard/form/cc.phtml');
 }
コード例 #20
0
ファイル: Form.php プロジェクト: hyhoocchan/mage-local
 /**
  * Internal constructor
  * Set info template for payment step
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('authorizenet/directpost/info.phtml');
 }
コード例 #21
0
ファイル: Adminpayment.php プロジェクト: AleksNesh/pandora
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('authorizenetcim/payment/form/cc.phtml');
 }
コード例 #22
0
ファイル: Cc.php プロジェクト: voolitels/Magento-Datatrans
 /**
  * Set the method template
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('datatrans/hiddenmode/form/cc.phtml');
 }
コード例 #23
0
ファイル: Cc.php プロジェクト: bfellows37/magento-paytrace
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('bradfellows/form/tokenized.phtml');
 }
コード例 #24
0
ファイル: Pay.php プロジェクト: Ryan-Odonnell/Magento
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('pay/pay.phtml');
 }
コード例 #25
0
ファイル: Form.php プロジェクト: joebushi/magento-mirror
 /**
  * Init Ofone pay from to use it on frontend
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('ogone/form.phtml');
 }
コード例 #26
0
 /**
  * setting up block template
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('chargepayment/form/creditcard.phtml');
 }
コード例 #27
0
ファイル: Form.php プロジェクト: xiaoguizhidao/tyler-live
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('merchantware/directpost/form.phtml');
 }
コード例 #28
0
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('magebase/dps/pxpost/form.phtml');
 }
コード例 #29
0
ファイル: Ccsave.php プロジェクト: okite11/frames21
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('payment/form/ccsave.phtml');
 }
コード例 #30
0
ファイル: Gatewaycc.php プロジェクト: payfort/magento-payfort
 protected function _construct()
 {
     parent::_construct();
 }