Automattic\WooCommerce\StoreApi\Routes\V1
ProductsById::get_route_response
Get a single item.
Метод класса: ProductsById{}
Хуков нет.
Возвращает
\WP_REST_Response.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_route_response( $request );
- $request(WP_REST_Request) (обязательный)
- Request object.
Код ProductsById::get_route_response() ProductsById::get route response WC 10.5.0
protected function get_route_response( \WP_REST_Request $request ) {
$object = wc_get_product( (int) $request['id'] );
if ( ! $object || 0 === $object->get_id() ) {
throw new RouteException( 'woocommerce_rest_product_invalid_id', __( 'Invalid product ID.', 'woocommerce' ), 404 );
}
return rest_ensure_response( $this->schema->get_item_response( $object ) );
}