function hook_views_plugins_argument_validator_alter
Same name in other branches
- 8.9.x core/modules/views/views.api.php \hook_views_plugins_argument_validator_alter()
- 10 core/modules/views/views.api.php \hook_views_plugins_argument_validator_alter()
- 11.x core/modules/views/views.api.php \hook_views_plugins_argument_validator_alter()
Modify the list of available views argument validation plugins.
This hook may be used to modify plugin properties after they have been specified by other modules.
Parameters
array $plugins: An array of all the existing plugin definitions, passed by reference.
See also
\Drupal\views\Plugin\ViewsPluginManager
Related topics
1 function implements hook_views_plugins_argument_validator_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- user_views_plugins_argument_validator_alter in core/
modules/ user/ user.views.inc - Implements hook_views_plugins_argument_validator_alter().
File
-
core/
modules/ views/ views.api.php, line 982
Code
function hook_views_plugins_argument_validator_alter(array &$plugins) {
// Remove the available plugin because the users should not have access to it.
unset($plugins['php']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.