You are here

function monitoring_theme in Monitoring 8

Same name and namespace in other branches
  1. 7 monitoring.module \monitoring_theme()

Implements hook_theme().

File

./monitoring.module, line 319
Monitoring bootstrap file.

Code

function monitoring_theme() {
  return [
    'monitoring_overview_summary' => [
      'variables' => [
        'status_overview' => [],
        'total_execution_time' => NULL,
        'non_cached_execution_time' => NULL,
        'oldest_sensor_label' => NULL,
        'oldest_sensor_category' => NULL,
        'oldest_sensor_called_before' => NULL,
      ],
    ],
  ];
}