function hook_views_plugins_join_alter

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

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

Code

function hook_views_plugins_join_alter(array &$plugins) {

  // Print out all join plugin names for debugging purposes.
  debug($plugins);
}