WC_REST_Webhooks_V1_Controller::get_item() public WC 1.0
Get a single item.
{} It's a method of the class: WC_REST_Webhooks_V1_Controller{}
No Hooks.
Return
WP_Error|WP_REST_Response.
Usage
$WC_REST_Webhooks_V1_Controller = new WC_REST_Webhooks_V1_Controller(); $WC_REST_Webhooks_V1_Controller->get_item( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Code of WC_REST_Webhooks_V1_Controller::get_item() WC REST Webhooks V1 Controller::get item WC 5.0.0
public function get_item( $request ) {
$id = (int) $request['id'];
if ( empty( $id ) ) {
return new WP_Error( "woocommerce_rest_{$this->post_type}_invalid_id", __( 'Invalid ID.', 'woocommerce' ), array( 'status' => 404 ) );
}
$data = $this->prepare_item_for_response( $id, $request );
$response = rest_ensure_response( $data );
return $response;
}