本文整理汇总了PHP中WC_Subscriptions_Product::init方法的典型用法代码示例。如果您正苦于以下问题:PHP WC_Subscriptions_Product::init方法的具体用法?PHP WC_Subscriptions_Product::init怎么用?PHP WC_Subscriptions_Product::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WC_Subscriptions_Product
的用法示例。
在下文中一共展示了WC_Subscriptions_Product::init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_price_html
* @since 1.0
* @deprecated 1.5.18
*/
public static function get_price_html($price, $product)
{
_deprecated_function(__METHOD__, '1.5.18', __CLASS__ . '::get_price_string()');
if (self::is_subscription($product)) {
$price = self::get_price_string($product, array('price' => $price));
}
return $price;
}
/**
* Deprecated in favour of native get_price_html() method on the Subscription Product classes (e.g. WC_Product_Subscription)
*
* Set the subscription string for products which have a $0 recurring fee, but a sign-up fee
*
* @since 1.3.4
* @deprecated 1.5.18
*/
public static function get_free_price_html($price, $product)
{
_deprecated_function(__METHOD__, '1.5.18', __CLASS__ . '::get_price_string()');
// Check if it has a sign-up fee (we already know it has no recurring fee)
if (self::is_subscription($product) && self::get_sign_up_fee($product) > 0) {
$price = self::get_price_string($product, array('price' => $price));
}
return $price;
}
}
WC_Subscriptions_Product::init();