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

Modify the list of available views display extender 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

File

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

Code

function hook_views_plugins_display_extenders_alter(array &$plugins) {

  // Alter the title of an existing plugin.
  $plugins['time']['title'] = t('Custom title');
}