You are here

function views_watchdog_views_handlers in Views Watchdog 6

Same name and namespace in other branches
  1. 6.3 views/views_watchdog.views.inc \views_watchdog_views_handlers()
  2. 6.2 views/views_watchdog.views.inc \views_watchdog_views_handlers()

Implementation of hook_views_handlers().

File

views/views_watchdog.views.inc, line 185
Views callbacks for the "Views watchdog" module.

Code

function views_watchdog_views_handlers() {
  $handlers = array(
    'info' => array(
      'path' => drupal_get_path('module', 'views_watchdog') . '/views/handlers',
    ),
    'handlers' => array(
      'views_handler_field_watchdog' => array(
        'parent' => 'views_handler_field',
      ),
      'views_handler_field_watchdog_message' => array(
        'parent' => 'views_handler_field_watchdog',
      ),
      'views_handler_field_watchdog_severity' => array(
        'parent' => 'views_handler_field_watchdog',
      ),
      'views_handler_filter_watchdog_type' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
      'views_handler_filter_watchdog_severity' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
    ),
  );
  return $handlers;
}