function perfmon_theme in Performance monitor 7
Same name and namespace in other branches
- 8 perfmon.module \perfmon_theme()
Implements hook_theme().
File
- ./
perfmon.module, line 66 - TODO: Enter file description here.
Code
function perfmon_theme($existing, $type, $theme, $path) {
return array(
'perfmon_reviewed' => array(
'variables' => array(
'items' => array(),
'header' => '',
'description' => '',
),
'file' => 'perfmon.pages.inc',
),
'perfmon_mysql_reviewed' => array(
'variables' => array(
'items' => array(),
'header' => '',
'description' => '',
),
'file' => 'perfmon.pages.inc',
),
);
}