WC_REST_Webhook_Deliveries_V1_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

Method of the class: WC_REST_Webhook_Deliveries_V1_Controller{}

No Hooks.

Return

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() code WC 8.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;
}