Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
19
web/core/modules/contextual/contextual.views.inc
Normal file
19
web/core/modules/contextual/contextual.views.inc
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?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',
|
||||
),
|
||||
);
|
||||
}
|
Reference in a new issue