WC_REST_Product_Variations_V2_Controller::prepare_links
Prepare links for the request.
Метод класса: WC_REST_Product_Variations_V2_Controller{}
Хуков нет.
Возвращает
Массив. Links for the given post.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_links( $object, $request );
- $object(WC_Data) (обязательный)
- Object data.
- $request(WP_REST_Request) (обязательный)
- Request object.
Код WC_REST_Product_Variations_V2_Controller::prepare_links() WC REST Product Variations V2 Controller::prepare links WC 10.3.4
protected function prepare_links( $object, $request ) {
$product_id = (int) $request['product_id'];
$base = str_replace( '(?P<product_id>[\d]+)', $product_id, $this->rest_base );
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $base, $object->get_id() ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $base ) ),
),
'up' => array(
'href' => rest_url( sprintf( '/%s/products/%d', $this->namespace, $product_id ) ),
),
);
return $links;
}