WC_REST_Payment_Gateways_V2_Controller::prepare_links()
Prepare links for the request.
Method of the class: WC_REST_Payment_Gateways_V2_Controller{}
No Hooks.
Return
Array
.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $gateway, $request );
- $gateway(WC_Payment_Gateway) (required)
- Payment gateway object.
- $request(WP_REST_Request) (required)
- Request object.
WC_REST_Payment_Gateways_V2_Controller::prepare_links() WC REST Payment Gateways V2 Controller::prepare links code WC 7.7.0
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; }