Files
Popsu-coloque/web/core/modules/contact/contact.views.inc
T
2020-06-08 23:57:36 +02:00

20 lines
357 B
PHP

<?php
/**
* @file
* Provide views data for contact.module.
*/
/**
* Implements hook_views_data_alter().
*/
function contact_views_data_alter(&$data) {
$data['users']['contact'] = [
'field' => [
'title' => t('Contact link'),
'help' => t('Provide a simple link to the user contact page.'),
'id' => 'contact_link',
],
];
}