WC_REST_Order_Refunds_V2_Controller::prepare_links() protected WC 1.0
Prepare links for the request.
{} It's a method of the class: WC_REST_Order_Refunds_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.
Code of WC_REST_Order_Refunds_V2_Controller::prepare_links() WC REST Order Refunds V2 Controller::prepare links WC 5.0.0
protected function prepare_links( $object, $request ) {
$base = str_replace( '(?P<order_id>[\d]+)', $object->get_parent_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/orders/%d', $this->namespace, $object->get_parent_id() ) ),
),
);
return $links;
}