WC_REST_Product_Attributes_V1_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

Method of the class: WC_REST_Product_Attributes_V1_Controller{}

No Hooks.

Return

Array. Links for the given attribute.

Usage

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

WC_REST_Product_Attributes_V1_Controller::prepare_links() code WC 8.6.1

protected function prepare_links( $attribute ) {
	$base  = '/' . $this->namespace . '/' . $this->rest_base;
	$links = array(
		'self'       => array(
			'href' => rest_url( trailingslashit( $base ) . $attribute->attribute_id ),
		),
		'collection' => array(
			'href' => rest_url( $base ),
		),
	);

	return $links;
}