function hook_views_pre_execute in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 8.3 views.api.php \hook_views_pre_execute()
- 6.2 docs/docs.php \hook_views_pre_execute()
- 7.3 views.api.php \hook_views_pre_execute()
This hook is called right before the execute process. The query is now fully built, but it has not yet been run through db_rewrite_sql.
Adding output to the view can be accomplished by placing text on $view->attachment_before and $view->attachment_after.
Related topics
1 invocation of hook_views_pre_execute()
- view::execute in includes/
view.inc - Execute the view's query.
File
- docs/
docs.php, line 660 - This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.
Code
function hook_views_pre_execute(&$view) {
// example code here
}