summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/contextual/contextual.views.inc
blob: bac5522f159a03249dedaa62b9f32ecf0888d7b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
    ],
  ];
}