WC_REST_Data_Currencies_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

Method of the class: WC_REST_Data_Currencies_Controller{}

No Hooks.

Return

Array. Links for the given currency.

Usage

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

WC_REST_Data_Currencies_Controller::prepare_links() code WC 8.6.1

protected function prepare_links( $item ) {
	$code  = strtoupper( $item['code'] );
	$links = array(
		'self'       => array(
			'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $code ) ),
		),
		'collection' => array(
			'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
		),
	);

	return $links;
}