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