LLMS_REST_API_Key::get_edit_link()
Retrieve the admin URL where the api key is managed.
Return Return
(string)
Source Source
File: libraries/lifterlms-rest/includes/models/class-llms-rest-api-key.php
public function get_edit_link() {
return add_query_arg(
array(
'edit-key' => $this->get( 'id' ),
),
LLMS_REST_API()->keys()->get_admin_url()
);
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0-beta.1 | Introduced. |