WC_REST_Products_V2_Controller::prepare_links()
Prepare links for the request.
Method of the class: WC_REST_Products_V2_Controller{}
No Hooks.
Return
Array
. Links for the given post.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $object, $request );
- $object(WC_Data) (required)
- Object data.
- $request(WP_REST_Request) (required)
- Request object.
WC_REST_Products_V2_Controller::prepare_links() WC REST Products V2 Controller::prepare links code WC 7.7.0
protected function prepare_links( $object, $request ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $object->get_id() ) ), // @codingStandardsIgnoreLine. ), 'collection' => array( 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), // @codingStandardsIgnoreLine. ), ); if ( $object->get_parent_id() ) { $links['up'] = array( 'href' => rest_url( sprintf( '/%s/products/%d', $this->namespace, $object->get_parent_id() ) ), // @codingStandardsIgnoreLine. ); } return $links; }