2009-05-17 11:16:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Provide views data and handlers for contact.module.
|
|
|
|
*
|
|
|
|
* @ingroup views_module_handlers
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_views_data_alter().
|
|
|
|
*/
|
|
|
|
function contact_views_data_alter(&$data) {
|
|
|
|
$data['users']['contact'] = array(
|
|
|
|
'field' => array(
|
|
|
|
'title' => t('Link to contact page'),
|
|
|
|
'help' => t('Provide a simple link to the user contact page.'),
|
2012-08-11 11:46:07 +00:00
|
|
|
'id' => 'contact_link',
|
2009-05-17 11:16:51 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|