Same name and namespace in other branches
  1. 6.x-3.x docs/docs.php \hook_views_plugins_alter()

Alter existing plugins data, defined by modules.

See also

hook_views_plugins()

Related topics

1 function implements hook_views_plugins_alter()

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

views_ui_views_plugins_alter in ./views_ui.module
Implements hook_views_plugins_alter().
1 invocation of hook_views_plugins_alter()
views_discover_plugins in includes/plugins.inc
Builds and return a list of all plugins available in the system.

File

./views.api.php, line 722
Describe hooks provided by the Views module.

Code

function hook_views_plugins_alter(&$plugins) {

  // Add apachesolr to the base of the node row plugin.
  $plugins['row']['node']['base'][] = 'apachesolr';
}