function prod_check_theme in Production check & Production monitor 7
Same name and namespace in other branches
- 8 prod_check.module \prod_check_theme()
- 6 prod_check.module \prod_check_theme()
Implementation of hook_theme()
File
- ./
prod_check.module, line 174
Code
function prod_check_theme($existing, $type, $theme, $path) {
return array(
'prod_check_status_report' => array(
'variables' => array(
'requirements' => NULL,
),
'file' => 'includes/prod_check.theme.inc',
),
'prod_check_dbstatus' => array(
'variables' => array(
'title' => NULL,
'status' => NULL,
'details' => NULL,
),
'file' => 'includes/prod_check.theme.inc',
),
);
}