function view::_pre_query

Same name in other branches
  1. 7.x-3.x includes/view.inc \view::_pre_query()

Run the pre_query() on all active handlers.

1 call to view::_pre_query()
view::build in includes/view.inc
Build the query for the view.

File

includes/view.inc, line 568

Class

view
An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.

Code

function _pre_query() {
    foreach (views_object_types() as $key => $info) {
        $handlers =& $this->{$key};
        $position = 0;
        foreach ($handlers as $id => $handler) {
            $handlers[$id]->position = $position;
            $handlers[$id]->pre_query();
            $position++;
        }
    }
}