WC_REST_Shipping_Methods_V2_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

Method of the class: WC_REST_Shipping_Methods_V2_Controller{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_links( $method, $request );
$method(WC_Shipping_Method) (required)
Shipping method object.
$request(WP_REST_Request) (required)
Request object.

WC_REST_Shipping_Methods_V2_Controller::prepare_links() code WC 8.6.1

protected function prepare_links( $method, $request ) {
	$links = array(
		'self'       => array(
			'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $method->id ) ),
		),
		'collection' => array(
			'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
		),
	);

	return $links;
}