function hook_views_pre_build

Same name in other branches
  1. 6.x-3.x docs/docs.php \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 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);
    }
}