Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_coupon_held_keys
Return array of coupon_code => meta_key for coupon which have usage limit and have tentative keys. Pass $coupon_id if key for only one of the coupon is needed.
Method of the class: OrdersTableDataStore{}
No Hooks.
Returns
Array|String. Key value pair for coupon code and meta key name. If $coupon_id is passed, returns meta_key for only that coupon.
Usage
$OrdersTableDataStore = new OrdersTableDataStore(); $OrdersTableDataStore->get_coupon_held_keys( $order, $coupon_id );
- $order(WC_Order) (required)
- Order object.
- $coupon_id(int)
- If passed, will return held key for that coupon.
Default: null
OrdersTableDataStore::get_coupon_held_keys() OrdersTableDataStore::get coupon held keys code WC 10.3.3
public function get_coupon_held_keys( $order, $coupon_id = null ) {
$held_keys = $order->get_meta( '_coupon_held_keys' );
if ( $coupon_id ) {
return isset( $held_keys[ $coupon_id ] ) ? $held_keys[ $coupon_id ] : null;
}
return $held_keys;
}