function perfmon_theme in Performance monitor 8
Same name and namespace in other branches
- 7 perfmon.module \perfmon_theme()
Implements hook_theme().
File
- ./
perfmon.module, line 779 - Stand-alone perfmon test system.
Code
function perfmon_theme($existing, $type, $theme, $path) {
return array(
'perfmon_reviewed' => array(
'variables' => array(
'items' => array(),
'header' => '',
'description' => '',
),
),
'perfmon_mysql_reviewed' => array(
'variables' => array(
'items' => array(),
'header' => '',
'description' => '',
),
),
);
}