WC_REST_System_Status_Tools_V2_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

Method of the class: WC_REST_System_Status_Tools_V2_Controller{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_links( $id );
$id(string) (required)
ID.

WC_REST_System_Status_Tools_V2_Controller::prepare_links() code WC 8.7.0

protected function prepare_links( $id ) {
	$base  = '/' . $this->namespace . '/' . $this->rest_base;
	$links = array(
		'item' => array(
			'href'       => rest_url( trailingslashit( $base ) . $id ),
			'embeddable' => true,
		),
	);

	return $links;
}