WC_REST_Shipping_Zones_V2_Controller::prepare_links
Prepare links for the request.
Метод класса: WC_REST_Shipping_Zones_V2_Controller{}
Хуков нет.
Возвращает
Массив. Links for the given Shipping Zone.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_links( $zone_id );
- $zone_id(int) (обязательный)
- Given Shipping Zone ID.
Код WC_REST_Shipping_Zones_V2_Controller::prepare_links() WC REST Shipping Zones V2 Controller::prepare links WC 10.8.1
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;
}