WC_REST_Shipping_Zones_V2_Controller::prepare_links() protected WC 1.0
Prepare links for the request.
{} It's a method of the class: WC_REST_Shipping_Zones_V2_Controller{}
No Hooks.
Return
Array. Links for the given Shipping Zone.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $zone_id );
- $zone_id(int) (required)
- Given Shipping Zone ID.
Code of WC_REST_Shipping_Zones_V2_Controller::prepare_links() WC REST Shipping Zones V2 Controller::prepare links WC 5.0.0
protected function prepare_links( $zone_id ) {
$base = '/' . $this->namespace . '/' . $this->rest_base;
$links = array(
'self' => array(
'href' => rest_url( trailingslashit( $base ) . $zone_id ),
),
'collection' => array(
'href' => rest_url( $base ),
),
'describedby' => array(
'href' => rest_url( trailingslashit( $base ) . $zone_id . '/locations' ),
),
);
return $links;
}