This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/core/modules/contact/contact.views.inc

20 lines
357 B
PHP
Raw Normal View History

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