function contact_views_handlers

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

File

modules/contact.views.inc, line 21

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',
            ),
        ),
    );
}