WC_REST_Settings_V2_Controller::prepare_links
Prepare links for the request.
Method of the class: WC_REST_Settings_V2_Controller{}
No Hooks.
Returns
Array. Links for the given group.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $group_id );
- $group_id(string) (required)
- Group ID.
WC_REST_Settings_V2_Controller::prepare_links() WC REST Settings V2 Controller::prepare links code WC 10.3.6
protected function prepare_links( $group_id ) {
$base = '/' . $this->namespace . '/' . $this->rest_base;
$links = array(
'options' => array(
'href' => rest_url( trailingslashit( $base ) . $group_id ),
),
);
return $links;
}