WC_REST_Webhooks_V1_Controller::prepare_links()
Prepare links for the request.
Method of the class: WC_REST_Webhooks_V1_Controller{}
No Hooks.
Return
Array
.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $id );
- $id(int) (required)
- Webhook ID.
WC_REST_Webhooks_V1_Controller::prepare_links() WC REST Webhooks V1 Controller::prepare links code WC 9.8.2
protected function prepare_links( $id ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $id ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), ), ); return $links; }