Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
15
web/core/modules/user/user.views.inc
Normal file
15
web/core/modules/user/user.views.inc
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Provide views data for user.module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_views_plugins_argument_validator_alter().
|
||||
*/
|
||||
function user_views_plugins_argument_validator_alter(array &$plugins) {
|
||||
$plugins['entity:user']['title'] = t('User ID');
|
||||
$plugins['entity:user']['class'] = 'Drupal\user\Plugin\views\argument_validator\User';
|
||||
$plugins['entity:user']['provider'] = 'user';
|
||||
}
|
Reference in a new issue