Telemetry::get_permissions_url()
Get the URL for the permission link in the optin modal.
Return
(string)
Source
File: src/Common/Telemetry/Telemetry.php
public static function get_permissions_url(): string {
/**
* Allow overriding the permissions URL.
*
* @since 5.1.0
*
* @param string $url The URL to the permissions page.
*/
return esc_url( apply_filters( 'tec_common_telemetry_permissions_url', 'https://evnt.is/1bcl' ) );
}
Changelog
| Version | Description |
|---|---|
| 5.1.0 | Introduced. |