You are here

function hook_views_pre_build in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 8.3 views.api.php \hook_views_pre_build()
  2. 6.2 docs/docs.php \hook_views_pre_build()
  3. 7.3 views.api.php \hook_views_pre_build()

This hook is called right before the build process, but after displays are attached and the display performs its pre_execute phase.

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_build()
view::build in includes/view.inc
Build the query for the view.

File

docs/docs.php, line 638
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_build(&$view) {

  // example code here
}