function contact_views_handlers in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 6.2 modules/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',
),
),
);
}