function monolog_theme in Monolog 6
Same name and namespace in other branches
- 7 monolog.module \monolog_theme()
Implements hook_theme().
File
- ./
monolog.module, line 142 - A Framework and UI for integrating with the Monolog library.
Code
function monolog_theme() {
return array(
'monolog_channel_table' => array(
'render element' => 'element',
'file' => 'monolog.admin.inc',
),
'monolog_handler_table' => array(
'render element' => 'element',
'file' => 'monolog.admin.inc',
),
);
}