contextual.views.inc in Zircon Profile 8.0
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'] = array(
'title' => t('Contextual Links'),
'help' => t('Display fields in a contextual links menu.'),
'field' => array(
'id' => 'contextual_links',
),
);
}
Functions
Name | Description |
---|---|
contextual_views_data_alter | Implements hook_views_data_alter(). |