WC_REST_Order_Refunds_V1_Controller::prepare_links()
Prepare links for the request.
Method of the class: WC_REST_Order_Refunds_V1_Controller{}
No Hooks.
Return
Array
. Links for the given order refund.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $refund, $request );
- $refund(WC_Order_Refund) (required)
- Comment object.
- $request(WP_REST_Request) (required)
- Request object.
WC_REST_Order_Refunds_V1_Controller::prepare_links() WC REST Order Refunds V1 Controller::prepare links code WC 9.7.1
protected function prepare_links( $refund, $request ) { $order_id = $refund->get_parent_id(); $base = str_replace( '(?P<order_id>[\d]+)', $order_id, $this->rest_base ); $links = array( 'self' => array( 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $base, $refund->get_id() ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $base ) ), ), 'up' => array( 'href' => rest_url( sprintf( '/%s/orders/%d', $this->namespace, $order_id ) ), ), ); return $links; }