WC_REST_Product_Reviews_V1_Controller::prepare_links() protected WC 1.0
Prepare links for the request.
{} It's a method of the class: WC_REST_Product_Reviews_V1_Controller{}
No Hooks.
Return
Array. Links for the given product review.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $review, $request );
- $review(WP_Comment) (required)
- Product review object.
- $request(WP_REST_Request) (required)
- Request object.
Code of WC_REST_Product_Reviews_V1_Controller::prepare_links() WC REST Product Reviews V1 Controller::prepare links WC 5.0.0
protected function prepare_links( $review, $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, $review->comment_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;
}