WC_Abstract_Order::add_order_item_totals_tax_rows()
Add total row for taxes.
Метод класса: WC_Abstract_Order{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->add_order_item_totals_tax_rows( $total_rows, $tax_display );
- $total_rows(массив) (обязательный) (передается по ссылке — &)
- Reference to total rows array.
- $tax_display(строка) (обязательный)
- Excl or incl tax display mode.
Код WC_Abstract_Order::add_order_item_totals_tax_rows() WC Abstract Order::add order item totals tax rows WC 9.4.2
protected function add_order_item_totals_tax_rows( &$total_rows, $tax_display ) { // Tax for tax exclusive prices. if ( 'excl' === $tax_display && wc_tax_enabled() ) { if ( 'itemized' === get_option( 'woocommerce_tax_total_display' ) ) { foreach ( $this->get_tax_totals() as $code => $tax ) { $total_rows[ sanitize_title( $code ) ] = array( 'label' => $tax->label . ':', 'value' => $tax->formatted_amount, ); } } else { $total_rows['tax'] = array( 'label' => WC()->countries->tax_or_vat() . ':', 'value' => wc_price( $this->get_total_tax(), array( 'currency' => $this->get_currency() ) ), ); } } }