ContextualViewsHooks.php
Namespace
Drupal\contextual\HookFile
-
core/
modules/ contextual/ src/ Hook/ ContextualViewsHooks.php
View source
<?php
namespace Drupal\contextual\Hook;
use Drupal\Core\Hook\Attribute\Hook;
/**
* Hook implementations for contextual.
*/
class ContextualViewsHooks {
/**
* @file
* Provide views data for contextual.module.
*/
/**
* Implements hook_views_data_alter().
*/
public function viewsDataAlter(&$data) {
$data['views']['contextual_links'] = [
'title' => t('Contextual Links'),
'help' => t('Display fields in a contextual links menu.'),
'field' => [
'id' => 'contextual_links',
],
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ContextualViewsHooks | Hook implementations for contextual. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.