contextual.views.inc in Drupal 10
Same filename and directory in other branches
Provide views data for contextual.module.
File
core/modules/contextual/contextual.views.incView source
<?php
/**
* @file
* Provide views data for contextual.module.
*/
/**
* Implements hook_views_data_alter().
*/
function contextual_views_data_alter(&$data) {
$data['views']['contextual_links'] = [
'title' => t('Contextual Links'),
'help' => t('Display fields in a contextual links menu.'),
'field' => [
'id' => 'contextual_links',
],
];
}
Functions
Name | Description |
---|---|
contextual_views_data_alter | Implements hook_views_data_alter(). |