WC_Coupon::increase_usage_count()publicWC 1.0

Increase usage count for current coupon.

Метод класса: WC_Coupon{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_Coupon = new WC_Coupon();
$WC_Coupon->increase_usage_count( $used_by, $order );
$used_by(строка)
Either user ID or billing email.
По умолчанию: ''
$order(WC_Order)
If provided, will clear the coupons held by this order.
По умолчанию: null

Код WC_Coupon::increase_usage_count() WC 8.7.0

public function increase_usage_count( $used_by = '', $order = null ) {
	if ( $this->get_id() && $this->data_store ) {
		$new_count = $this->data_store->increase_usage_count( $this, $used_by, $order );

		// Bypass set_prop and remove pending changes since the data store saves the count already.
		$this->data['usage_count'] = $new_count;
		if ( isset( $this->changes['usage_count'] ) ) {
			unset( $this->changes['usage_count'] );
		}
	}
}