function contact_views_data in Contact 6.2
@file Declare Views handlers.
Implements hook_views_data().
File
- ./
contact.views.inc, line 10 - Declare Views handlers.
Code
function contact_views_data() {
$data['users']['contact'] = array(
'field' => array(
'title' => t('Link to contact page'),
'help' => t('Provide a simple link to the user contact page.'),
'handler' => 'contact_handler_field_contact_link',
),
);
return $data;
}