function hook_views_plugins_query_alter
Same name in other branches
- 9 core/modules/views/views.api.php \hook_views_plugins_query_alter()
- 10 core/modules/views/views.api.php \hook_views_plugins_query_alter()
- 11.x core/modules/views/views.api.php \hook_views_plugins_query_alter()
Modify the list of available views query 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 1093
Code
function hook_views_plugins_query_alter(array &$plugins) {
// Print out all query plugin names for debugging purposes.
debug($plugins);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.