1 telemetry.module | _telemetry_destination_server_name() |
Returns the hostname of the destination server for Telemetry data.
On most installations this should be "backdropcms.org".
Return value
string:
File
- core/
modules/ telemetry/ telemetry.module, line 131 - Collects usage information to help improve Backdrop CMS.
Code
function _telemetry_destination_server_name() {
return parse_url(config_get('telemetry.settings', 'destination'), PHP_URL_HOST);
}