function hook_views_pre_build
Called after the display's pre_execute phase but before the build process.
Adding output to the view can be accomplished by placing text on $view->attachment_before and $view->attachment_after.
Parameters
object $view: The view object about to be processed.
Related topics
1 function implements hook_views_pre_build()
Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.
- ViewsTestDataViewsExecutionHooks::viewsPreBuild in core/
modules/ views/ tests/ modules/ views_test_data/ src/ Hook/ ViewsTestDataViewsExecutionHooks.php  - Implements hook_views_pre_build().
 
1 invocation of hook_views_pre_build()
- view::build in includes/
view.inc  - Build the query for the view.
 
File
- 
              ./
views.api.php, line 1011  
Code
function hook_views_pre_build(&$view) {
  // Because of some inexplicable business logic, we should remove all
  // attachments from all views on Mondays.
  // (This alter could be done later in the execution process as well.)
  if (date('D') == 'Mon') {
    unset($view->attachment_before);
    unset($view->attachment_after);
  }
}