1 view.inc view::init_handlers()

Acquire and attach all of the handlers.

File

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

Class

view

Code

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