WC_REST_Data_Controller::prepare_links() protected WC 1.0
Prepare links for the request.
{} It's a method of the class: WC_REST_Data_Controller{}
No Hooks.
Return
Array. Links for the given country.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $item );
- $item(object) (required)
- Data object.
Code of WC_REST_Data_Controller::prepare_links() WC REST Data Controller::prepare links WC 5.0.0
protected function prepare_links( $item ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $item->slug ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
),
);
return $links;
}