本文整理汇总了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);
}
示例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;
}