Files
edlp_d8/sites/all/modules/contrib/fields/addtoany/addtoany.views.inc
T
2018-04-25 23:23:03 +02:00

22 lines
470 B
PHP

<?php
/**
* @file
* Views integration for AddToAny.
*/
/**
* Implements hook_views_data_alter().
*/
function addtoany_views_data_alter(array &$data) {
// Add the addtoany link to the node fields.
$data['node']['addtoany_share'] = [
'title' => t('AddToAny share buttons'),
'field' => [
'title' => t('AddToAny share buttons'),
'help' => t('Provide share buttons for sharing the content.'),
'id' => 'node_addtoany_share',
],
];
}