function prod_monitor_theme in Production check & Production monitor 7
Same name and namespace in other branches
- 6 prod_monitor/prod_monitor.module \prod_monitor_theme()
Implementation of hook_theme()
File
- prod_monitor/
prod_monitor.module, line 272
Code
function prod_monitor_theme() {
return array(
'prod_monitor_update_report' => array(
'variables' => array(
'id' => NULL,
'last' => NULL,
'data' => NULL,
),
'file' => 'includes/prod_monitor.theme.inc',
),
'prod_monitor_update_status_label' => array(
'variables' => array(
'status' => NULL,
),
'file' => 'includes/prod_monitor.theme.inc',
),
'prod_monitor_update_version' => array(
'variables' => array(
'version' => NULL,
'tag' => NULL,
'class' => NULL,
),
'file' => 'includes/prod_monitor.theme.inc',
),
'prod_monitor_status_report' => array(
'variables' => array(
'requirements' => NULL,
),
'file' => 'includes/prod_monitor.theme.inc',
),
'prod_monitor_performance' => array(
'render element' => 'elements',
'template' => 'templates/prod-monitor-performance',
),
);
}