Same name and namespace in other branches
  1. 6.x-3.x includes/view.inc \view::init_handlers()

Acquire and attach all of the handlers.

2 calls to view::init_handlers()
view::build in includes/view.inc
Build the query for the view.
view::build_title in includes/view.inc
Force the view to build a title.

File

includes/view.inc, line 708
views_objects Objects that represent a View or part of a view

Class

view

Code

public function init_handlers() {
  if (empty($this->inited)) {
    $this
      ->fix_missing_relationships();
    foreach (views_object_types() as $key => $info) {
      $this
        ->_init_handler($key, $info);
    }
    $this->inited = TRUE;
  }
}