WC_Coupon::get_maximum_amount
Get maximum spend amount.
Метод класса: WC_Coupon{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Coupon = new WC_Coupon(); $WC_Coupon->get_maximum_amount( $context );
- $context(строка)
- What the value is for. Valid values are
'view'and'edit'.
По умолчанию:'view'
Список изменений
| С версии 3.0.0 | Введена. |
Код WC_Coupon::get_maximum_amount() WC Coupon::get maximum amount WC 10.7.0
public function get_maximum_amount( $context = 'view' ) {
if ( 'edit' !== $context && $this->get_prop( 'maximum_amount', $context ) === '' ) {
return wc_format_decimal( 0 );
}
return wc_format_decimal( $this->get_prop( 'maximum_amount', $context ) );
}