WC_REST_Products_V1_Controller::prepare_links() protected WC 1.0
Prepare links for the request.
{} It's a method of the class: WC_REST_Products_V1_Controller{}
No Hooks.
Return
Array. Links for the given product.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $product, $request );
- $product(WC_Product) (required)
- Product object.
- $request(WP_REST_Request) (required)
- Request object.
Code of WC_REST_Products_V1_Controller::prepare_links() WC REST Products V1 Controller::prepare links WC 5.0.0
protected function prepare_links( $product, $request ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $product->get_id() ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
),
);
if ( $product->get_parent_id() ) {
$links['up'] = array(
'href' => rest_url( sprintf( '/%s/products/%d', $this->namespace, $product->get_parent_id() ) ),
);
}
return $links;
}