function hook_views_admin_links_alter
This hook should be placed in MODULENAME.views.inc and it will be auto-loaded. This must either be in the same directory as the .module file or in a subdirectory named 'includes'.
Alter the links that appear over a view. They are in a format suitable for theme('links').
Warning: $view is not a reference in PHP4 and cannot be modified here. But it IS a reference in PHP5, and can be modified. Please be careful with it.
See also
theme_links
Related topics
1 invocation of hook_views_admin_links_alter()
- template_preprocess_views_view in theme/
theme.inc - Preprocess the primary theme implementation for a view.
File
-
docs/
docs.php, line 743
Code
function hook_views_admin_links_alter(&$links, $view) {
// example code here
}