You are here

function monitoring_theme in Monitoring 7

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

Implements hook_theme().

File

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

Code

function monitoring_theme() {
  return array(
    'monitoring_config_box' => array(
      'variables' => array(
        'title' => NULL,
        'description' => NULL,
        'code' => NULL,
        'code_height' => NULL,
      ),
    ),
    'monitoring_overview_summary' => array(
      'variables' => array(
        'status_overview' => array(),
        'total_execution_time' => NULL,
        'non_cached_execution_time' => NULL,
        'oldest_sensor_label' => NULL,
        'oldest_sensor_category' => NULL,
        'oldest_sensor_called_before' => NULL,
      ),
    ),
  );
}