WC_REST_Taxes_V1_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

Method of the class: WC_REST_Taxes_V1_Controller{}

No Hooks.

Return

Array. Links for the given tax.

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_links( $tax );
$tax(stdClass) (required)
Tax object.

WC_REST_Taxes_V1_Controller::prepare_links() code WC 8.7.0

protected function prepare_links( $tax ) {
	$links = array(
		'self'       => array(
			'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $tax->tax_rate_id ) ),
		),
		'collection' => array(
			'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
		),
	);

	return $links;
}