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


PHP WC_Payment_Gateway::get_option方法代码示例

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


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

示例1: get_option

 /**
  * Gets and option from the settings API. Implemented for compatibility with
  * WooCommerce 1.6, whose class WC_Payment_Gateway doesn't implement this
  * method.
  *
  * @param string key The option key.
  * @param mixed empty_value The value to return if the option is not found.
  * @return mixed
  */
 public function get_option($key, $empty_value = null)
 {
     if (method_exists('WC_Payment_Gateway', 'get_option')) {
         return parent::get_option($key, $empty_value);
     }
     return get_value($key, $this->settings, $empty_value);
 }
开发者ID:vanminh0910,项目名称:shangri-la,代码行数:16,代码来源:class-wc-gateway-skrill.php

示例2: get_pronamic_option

 /**
  * Get Pronamic option
  *
  * The WooCommerce settings API only have an 'get_option' function in
  * WooCommerce version 2 or higher.
  *
  * @see https://github.com/woothemes/woocommerce/blob/v2.0.0/classes/abstracts/abstract-wc-settings-api.php#L130
  *
  * @param string $name
  */
 public function get_pronamic_option($key)
 {
     $value = false;
     if (method_exists($this, 'get_option')) {
         $value = parent::get_option($key);
     } elseif (isset($this->settings[$key])) {
         $value = $this->settings[$key];
     }
     return $value;
 }
开发者ID:daanbakker1995,项目名称:vanteun,代码行数:20,代码来源:Gateway.php


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