WC_REST_Webhook_Deliveries_V1_Controller::prepare_links
Prepare links for the request.
Method of the class: WC_REST_Webhook_Deliveries_V1_Controller{}
No Hooks.
Returns
Array. Links for the given webhook delivery.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $log );
- $log(stdClass) (required)
- Delivery log object.
WC_REST_Webhook_Deliveries_V1_Controller::prepare_links() WC REST Webhook Deliveries V1 Controller::prepare links code WC 10.7.0
protected function prepare_links( $log ) {
$webhook_id = (int) $log->request_headers['X-WC-Webhook-ID'];
$base = str_replace( '(?P<webhook_id>[\d]+)', $webhook_id, $this->rest_base );
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $base, $log->id ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $base ) ),
),
'up' => array(
'href' => rest_url( sprintf( '/%s/webhooks/%d', $this->namespace, $webhook_id ) ),
),
);
return $links;
}