WC_REST_Refunds_Controller::prepare_links()
Prepare links for the request.
Метод класса: WC_REST_Refunds_Controller{}
Хуков нет.
Возвращает
Массив
. Links for the given post.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_links( $refund, $request );
- $refund(WC_Order_Refund) (обязательный)
- Refund data.
- $request(WP_REST_Request) (обязательный)
- Request object.
Код WC_REST_Refunds_Controller::prepare_links() WC REST Refunds Controller::prepare links WC 9.8.5
protected function prepare_links( $refund, $request ) { $base = str_replace( '(?P<order_id>[\d]+)', $refund->get_parent_id(), 'orders/(?P<order_id>[\d]+)/refunds' ); $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, $refund->get_parent_id() ) ), ), ); return $links; }