WC_REST_Shipping_Methods_V2_Controller::get_items() public WC 1.0
Get shipping methods.
{} It's a method of the class: WC_REST_Shipping_Methods_V2_Controller{}
No Hooks.
Return
WP_Error|WP_REST_Response.
Usage
$WC_REST_Shipping_Methods_V2_Controller = new WC_REST_Shipping_Methods_V2_Controller(); $WC_REST_Shipping_Methods_V2_Controller->get_items( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Code of WC_REST_Shipping_Methods_V2_Controller::get_items() WC REST Shipping Methods V2 Controller::get items WC 5.0.0
public function get_items( $request ) {
$wc_shipping = WC_Shipping::instance();
$response = array();
foreach ( $wc_shipping->get_shipping_methods() as $id => $shipping_method ) {
$method = $this->prepare_item_for_response( $shipping_method, $request );
$method = $this->prepare_response_for_collection( $method );
$response[] = $method;
}
return rest_ensure_response( $response );
}