Move all files to 2017/
This commit is contained in:
parent
ac7370f67f
commit
2875863330
15717 changed files with 0 additions and 0 deletions
19
2017/web/core/modules/contextual/contextual.views.inc
Normal file
19
2017/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'] = [
|
||||
'title' => t('Contextual Links'),
|
||||
'help' => t('Display fields in a contextual links menu.'),
|
||||
'field' => [
|
||||
'id' => 'contextual_links',
|
||||
],
|
||||
];
|
||||
}
|
Reference in a new issue