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