WC_Order_Item_Fee::offsetGet( string $offset )

OffsetGet for ArrayAccess/Backwards compatibility.


Description Description


Parameters Parameters

$offset

(Required) Offset.


Top ↑

Return Return

(mixed)


Top ↑

Source Source

File: includes/class-wc-order-item-fee.php

	public function offsetGet( $offset ) {
		if ( 'line_total' === $offset ) {
			$offset = 'total';
		} elseif ( 'line_tax' === $offset ) {
			$offset = 'total_tax';
		} elseif ( 'line_tax_data' === $offset ) {
			$offset = 'taxes';
		}
		return parent::offsetGet( $offset );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.