Same name and namespace in other branches
  1. 8.9.x core/modules/views/views.api.php \hook_views_plugins_argument_alter()
  2. 9 core/modules/views/views.api.php \hook_views_plugins_argument_alter()

Modify the list of available views argument handler plugins.

This hook may be used to modify handler properties after they have been specified by other modules.

Parameters

array $plugins: An array of all the existing handler definitions, passed by reference.

See also

\Drupal\views\Plugin\ViewsHandlerManager

Related topics

1 function implements hook_views_plugins_argument_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

views_test_config_views_plugins_argument_alter in core/modules/views/tests/modules/views_test_config/views_test_config.module

File

core/modules/views/views.api.php, line 1194
Describes hooks and plugins provided by the Views module.

Code

function hook_views_plugins_argument_alter(array &$plugins) {

  // Change the 'title' handler class.
  $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
}