function hook_views_plugins_alter
3.x views.api.php | hook_views_plugins_alter(&$plugins) |
2.x docs.php | hook_views_plugins_alter(&$plugins) |
Alter existing plugins data, defined by modules.
See also
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 709 - 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';
}