WC_REST_Shipping_Methods_V2_Controller::get_items()publicWC 1.0

Get shipping methods.

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.

WC_REST_Shipping_Methods_V2_Controller::get_items() code WC 8.6.1

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 );
}