本文整理汇总了PHP中WC_Subscriptions_Product::get_price_html方法的典型用法代码示例。如果您正苦于以下问题:PHP WC_Subscriptions_Product::get_price_html方法的具体用法?PHP WC_Subscriptions_Product::get_price_html怎么用?PHP WC_Subscriptions_Product::get_price_html使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WC_Subscriptions_Product
的用法示例。
在下文中一共展示了WC_Subscriptions_Product::get_price_html方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_price_html
/**
* Returns the price in html format.
*
* @access public
* @param string $price (default: '')
* @return string
*/
public function get_price_html($price = '')
{
$price = parent::get_price_html($price);
if (!isset($this->subscription_period) || !isset($this->subscription_period_interval) || !isset($this->max_variation_period) || !isset($this->max_variation_period_interval)) {
$this->variable_product_sync();
}
// Only create the subscription price string when a price has been set
if ($this->subscription_price !== '' || $this->subscription_sign_up_fee !== '') {
$price = '';
if ($this->is_on_sale() && isset($this->min_variation_price) && $this->min_variation_regular_price !== $this->get_price()) {
if (!$this->min_variation_price || $this->min_variation_price !== $this->max_variation_price) {
$price .= $this->get_price_html_from_text();
}
$price .= $this->get_price_html_from_to($this->get_variation_price('min', true), $this->get_variation_price('max', true));
} else {
if ($this->min_variation_price !== $this->max_variation_price) {
$price .= $this->get_price_html_from_text();
}
$price .= wc_price($this->get_variation_price('min', true));
}
// Make sure the price contains "From:" when billing schedule differs between variations
if (false === strpos($price, $this->get_price_html_from_text())) {
if ($this->subscription_period !== $this->max_variation_period) {
$price = $this->get_price_html_from_text() . $price;
} elseif ($this->subscription_period_interval !== $this->max_variation_period_interval) {
$price = $this->get_price_html_from_text() . $price;
}
}
$price .= $this->get_price_suffix();
$price = WC_Subscriptions_Product::get_price_html($price, $this);
}
return apply_filters('woocommerce_variable_subscription_price_html', $price, $this);
}
示例2: get_price_html
/**
* Returns the price in html format.
*
* @access public
* @param string $price (default: '')
* @return string
*/
public function get_price_html($price = '')
{
$price = parent::get_price_html($price);
if (!isset($this->subscription_period) || !isset($this->subscription_period_interval) || !isset($this->max_variation_period) || !isset($this->max_variation_period_interval)) {
$this->variable_product_sync();
}
// Only create the subscription price string when a price has been set
if (($this->subscription_price > 0 || $this->subscription_sign_up_fee > 0) && ($this->subscription_price !== '' || $this->subscription_sign_up_fee !== '')) {
// Make sure the price contains "From:" when billing schedule differs between variations
if (false === strpos($price, $this->get_price_html_from_text())) {
if ($this->subscription_period !== $this->max_variation_period) {
$price = $this->get_price_html_from_text() . $price;
} elseif ($this->subscription_period_interval !== $this->max_variation_period_interval) {
$price = $this->get_price_html_from_text() . $price;
}
}
$price = WC_Subscriptions_Product::get_price_html($price, $this);
}
return apply_filters('woocommerce_variable_subscription_price_html', $price, $this);
}