1 view.inc view::_pre_query()

Run the pre_query() on all active handlers.

File

core/modules/views/includes/view.inc, line 761
Provides the view object type and associated methods.

Class

view

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++;
    }
  }
}