WC_REST_Taxes_V1_Controller::prepare_links
Prepare links for the request.
Method of the class: WC_REST_Taxes_V1_Controller{}
No Hooks.
Returns
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() WC REST Taxes V1 Controller::prepare links code WC 10.6.2
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;
}