WC_Order_Item_Coupon::offsetGet()
Deprecated from version 4.4.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.
OffsetGet for ArrayAccess/Backwards compatibility.
Method of the class: WC_Order_Item_Coupon{}
No Hooks.
Return
Mixed
.
Usage
$WC_Order_Item_Coupon = new WC_Order_Item_Coupon(); $WC_Order_Item_Coupon->offsetGet( $offset );
- $offset(string) (required)
- Offset.
Changelog
Deprecated since | 4.4.0 |
WC_Order_Item_Coupon::offsetGet() WC Order Item Coupon::offsetGet code WC 9.4.2
public function offsetGet( $offset ) { wc_deprecated_function( 'WC_Order_Item_Coupon::offsetGet', '4.4.0', '' ); if ( 'discount_amount' === $offset ) { $offset = 'discount'; } elseif ( 'discount_amount_tax' === $offset ) { $offset = 'discount_tax'; } return parent::offsetGet( $offset ); }