You are here

function dblog_theme in Drupal 7

Same name and namespace in other branches
  1. 6 modules/dblog/dblog.module \dblog_theme()

Implements hook_theme().

File

modules/dblog/dblog.module, line 190
System monitoring and logging for administrators.

Code

function dblog_theme() {
  return array(
    'dblog_message' => array(
      'variables' => array(
        'event' => NULL,
        'link' => FALSE,
      ),
      'file' => 'dblog.admin.inc',
    ),
  );
}