You are here

function monolog_theme in Monolog 7

Same name and namespace in other branches
  1. 6 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',
    ),
  );
}