function contact_views_handlers

2.x contact.views.inc contact_views_handlers()

Implementation of hook_views_handlers() to register all of the basic handlers views uses.

File

modules/contact.views.inc, line 21
Provide views data and handlers for contact.module

Code

function contact_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'views') . '/modules/contact',
    ),
    'handlers' => array(
      'views_handler_field_contact_link' => array(
        'parent' => 'views_handler_field_user_link',
      ),
    ),
  );
}