1 telemetry.telemetry.inc telemetry_telemetry_info()

Implements hook_telemetry_info().

File

core/modules/telemetry/telemetry.telemetry.inc, line 10
Telemetry hook implementations.

Code

function telemetry_telemetry_info() {
  $info['php_version'] = array(
    'label' => t('PHP version'),
    'description' => t('The current version of PHP running on your server.'),
    'project' => 'backdrop',
  );
  $info['mysql_version'] = array(
    'label' => t('MySQL version'),
    'description' => t('The version number of your database (either MySQL or MariaDB).'),
    'project' => 'backdrop',
  );
  $info['server_os'] = array(
    'label' => t('Server OS'),
    'description' => t('The operating system of your server, such as RedHat Linux, Debian, Windows, etc.'),
    'project' => 'backdrop',
  );
  $info['web_server'] = array(
    'label' => t('Web server'),
    'description' => t('The web server that delivers HTTP pages to the web browser, such as Apache or nginx.'),
    'project' => 'backdrop',
  );
  $info['install_profile'] = array(
    'label' => t('Installation profile'),
    'description' => t('The profile that was used to install your site.'),
    'project' => 'backdrop',
  );
  $info['multisite'] = array(
    'label' => t('Multisite'),
    'description' => t('Is this Backdrop installation set up as a multisite?'),
    'project' => 'backdrop',
  );
  $info['ckeditor_module_version'] = array(
    'label' => t('CKEditor Module Version'),
    'description' => t('The CKEditor module version that your site uses (either 4, 5, both, or neither).'),
    'project' => 'backdrop',
  );
  return $info;
}