WC_Order_Item_Product::offsetGet()
OffsetGet for ArrayAccess/Backwards compatibility.
Method of the class: WC_Order_Item_Product{}
No Hooks.
Return
Mixed
.
Usage
$WC_Order_Item_Product = new WC_Order_Item_Product(); $WC_Order_Item_Product->offsetGet( $offset );
- $offset(string) (required)
- Offset.
WC_Order_Item_Product::offsetGet() WC Order Item Product::offsetGet code WC 9.4.2
public function offsetGet( $offset ) { if ( 'line_subtotal' === $offset ) { $offset = 'subtotal'; } elseif ( 'line_subtotal_tax' === $offset ) { $offset = 'subtotal_tax'; } elseif ( 'line_total' === $offset ) { $offset = 'total'; } elseif ( 'line_tax' === $offset ) { $offset = 'total_tax'; } elseif ( 'line_tax_data' === $offset ) { $offset = 'taxes'; } elseif ( 'qty' === $offset ) { $offset = 'quantity'; } return parent::offsetGet( $offset ); }