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


PHP Mage_Payment_Model_Method_Cc::isAvailable方法代码示例

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


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

示例1: isAvailable

 public function isAvailable($quote = null)
 {
     if ($quote && $quote->getBaseGrandTotal() < $this->_minOrderTotal) {
         return false;
     }
     return $this->getConfigData('api_key', $quote ? $quote->getStoreId() : null) && parent::isAvailable($quote);
 }
开发者ID:FaisalRiaz115,项目名称:Inchoo_Stripe,代码行数:7,代码来源:Payment.php

示例2: isAvailable

 /**
  * Check if we're on a secure page and run
  * the parent verification
  *
  * @param Mage_Sales_Model_Quote|null $quote
  *
  * @return bool
  */
 public function isAvailable($quote = null)
 {
     $isSecure = (bool) Mage::app()->getStore()->isCurrentlySecure();
     if (!$isSecure) {
         return false;
     }
     return parent::isAvailable($quote);
 }
开发者ID:snehamalvankar,项目名称:magento-ce-emp-plugin,代码行数:16,代码来源:Direct.php

示例3: isAvailable

 /**
  * Check whether payment method can be used
  *
  * @param Mage_Sales_Model_Quote
  * @return bool
  */
 public function isAvailable($quote = null)
 {
     $storeId = Mage::app()->getStore($this->getStore())->getId();
     $config = Mage::getModel('paypal/config')->setStoreId($storeId);
     if (parent::isAvailable($quote) && $config->isMethodAvailable($this->getCode())) {
         return true;
     }
     return false;
 }
开发者ID:ravi2jdesign,项目名称:solvingmagento_1.7.0,代码行数:15,代码来源:Payflowpro.php

示例4: isAvailable

 /**
  * Check whether payment method can be used
  * @param Mage_Sales_Model_Quote
  * @return bool
  */
 public function isAvailable($quote = null)
 {
     if (parent::isAvailable($quote) && $this->_pro->getConfig()->isMethodAvailable()) {
         return true;
     }
     return false;
 }
开发者ID:cnglobal-sl,项目名称:caterez,代码行数:12,代码来源:Direct.php

示例5: isAvailable

 /**
  * Check whether payment method can be used
  *
  * This method is available only if Payment bridge is on. So we must check this own method's
  * settings and pbridge's settings
  *
  * @return bool
  */
 public function isAvailable($quote = null)
 {
     $storeId = $quote ? $quote->getStoreId() : null;
     return Mage::helper('enterprise_pbridge')->isEnabled($storeId) && parent::isAvailable();
 }
开发者ID:evinw,项目名称:project_bloom_magento,代码行数:13,代码来源:Ogone.php

示例6: isAvailable

 /**
  * Payment method available?
  */
 public function isAvailable($quote = null)
 {
     if ($this->getConfigData('active') && parent::isAvailable()) {
         return true;
     }
     return false;
 }
开发者ID:billadams,项目名称:forever-frame,代码行数:10,代码来源:Method.php


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