Automattic\WooCommerce\StoreApi\Routes\V1
ProductsById::get_route_response()
Get a single item.
Method of the class: ProductsById{}
No Hooks.
Return
\WP_REST_Response
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_route_response( $request );
- $request(\WP_REST_Request) (required)
- Request object.
ProductsById::get_route_response() ProductsById::get route response code WC 9.3.1
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 ) ); }