WC_REST_Orders_V1_Controller::update_address()
Update address.
Method of the class: WC_REST_Orders_V1_Controller{}
No Hooks.
Return
null
. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->update_address( $order, $posted, $type );
- $order(WC_Order) (required)
- Order object.
- $posted(array) (required)
- Request data.
- $type(string)
- Type of address; 'billing' or 'shipping'.
Default: 'billing'
WC_REST_Orders_V1_Controller::update_address() WC REST Orders V1 Controller::update address code WC 9.8.1
protected function update_address( $order, $posted, $type = 'billing' ) { foreach ( $posted as $key => $value ) { if ( is_callable( array( $order, "set_{$type}_{$key}" ) ) ) { $order->{"set_{$type}_{$key}"}( $value ); } } }