Automattic\WooCommerce\StoreApi\Routes\V1
ProductAttributesById::get_route_response()
Get a single item.
Method of the class: ProductAttributesById{}
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.
ProductAttributesById::get_route_response() ProductAttributesById::get route response code WC 9.3.3
protected function get_route_response( \WP_REST_Request $request ) { $object = wc_get_attribute( (int) $request['id'] ); if ( ! $object || 0 === $object->id ) { throw new RouteException( 'woocommerce_rest_attribute_invalid_id', __( 'Invalid attribute ID.', 'woocommerce' ), 404 ); } $data = $this->prepare_item_for_response( $object, $request ); $response = rest_ensure_response( $data ); return $response; }