WC_REST_Product_Reviews_Controller::prepare_links() protected WC 1.0
Prepare links for the request.
{} It's a method of the class: WC_REST_Product_Reviews_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 );
- $review(WP_Comment) (required)
- Product review object.
Code of WC_REST_Product_Reviews_Controller::prepare_links() WC REST Product Reviews Controller::prepare links WC 5.0.0
protected function prepare_links( $review ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $review->comment_ID ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
),
);
if ( 0 !== (int) $review->comment_post_ID ) {
$links['up'] = array(
'href' => rest_url( sprintf( '/%s/products/%d', $this->namespace, $review->comment_post_ID ) ),
);
}
if ( 0 !== (int) $review->user_id ) {
$links['reviewer'] = array(
'href' => rest_url( 'wp/v2/users/' . $review->user_id ),
'embeddable' => true,
);
}
return $links;
}