WC_REST_Orders_V2_Controller::prepare_shipping_lines()protectedWC 1.0

Create or update an order shipping method.

Метод класса: WC_REST_Orders_V2_Controller{}

Хуков нет.

Возвращает

WC_Order_Item_Shipping.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->prepare_shipping_lines( $posted, $action, $item );
$posted(массив) (обязательный)
$shipping Item data.
$action(строка)
'create' to add shipping or 'update' to update it.
По умолчанию: 'create'
$item(объект)
Passed when updating an item. Null during creation.
По умолчанию: null

Код WC_REST_Orders_V2_Controller::prepare_shipping_lines() WC 8.7.0

protected function prepare_shipping_lines( $posted, $action = 'create', $item = null ) {
	$item = is_null( $item ) ? new WC_Order_Item_Shipping( ! empty( $posted['id'] ) ? $posted['id'] : '' ) : $item;

	if ( 'create' === $action ) {
		if ( empty( $posted['method_id'] ) ) {
			throw new WC_REST_Exception( 'woocommerce_rest_invalid_shipping_item', __( 'Shipping method ID is required.', 'woocommerce' ), 400 );
		}
	}

	$this->maybe_set_item_props( $item, array( 'method_id', 'method_title', 'total', 'instance_id' ), $posted );
	$this->maybe_set_item_meta_data( $item, $posted );

	return $item;
}