WC_REST_Customers_V1_Controller::prepare_links
Prepare links for the request.
Method of the class: WC_REST_Customers_V1_Controller{}
No Hooks.
Returns
Array. Links for the given customer.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $customer );
- $customer(WP_User) (required)
- Customer object.
WC_REST_Customers_V1_Controller::prepare_links() WC REST Customers V1 Controller::prepare links code WC 10.6.2
protected function prepare_links( $customer ) {
$links = array(
'self' => array(
'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $customer->ID ) ),
),
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
),
);
return $links;
}