Automattic\WooCommerce\StoreApi\Routes\V1
Order::get_route_response()
Handle the request and return a valid response for this endpoint.
Метод класса: Order{}
Хуков нет.
Возвращает
\WP_REST_Response
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_route_response( $request );
- $request(\WP_REST_Request) (обязательный)
- Request object.
Код Order::get_route_response() Order::get route response WC 9.8.5
protected function get_route_response( \WP_REST_Request $request ) { $order_id = absint( $request['id'] ); return rest_ensure_response( $this->schema->get_item_response( wc_get_order( $order_id ) ) ); }