LLMS_REST_Webhook_Data::get_edit_link()
Retrieve the admin URL where the api key is managed.
Return Return
(string)
Source Source
File: libraries/lifterlms-rest/includes/abstracts/class-llms-rest-webhook-data.php
public function get_edit_link() {
return add_query_arg(
array(
'section' => 'webhooks',
'edit-webhook' => $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. |