WC_REST_Payment_Gateways_V2_Controller::prepare_links
Prepare links for the request.
Метод класса: WC_REST_Payment_Gateways_V2_Controller{}
Хуков нет.
Возвращает
Массив.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_links( $gateway, $request );
- $gateway(WC_Payment_Gateway) (обязательный)
- Payment gateway object.
- $request(WP_REST_Request) (обязательный)
- Request object.
Код WC_REST_Payment_Gateways_V2_Controller::prepare_links() WC REST Payment Gateways V2 Controller::prepare links WC 10.3.4
protected function prepare_links( $gateway, $request ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $gateway->id ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
),
);
return $links;
}