ViewExecutable::initHandlers

public ViewExecutable::initHandlers()

Acquires and attaches all of the handlers.

File

core/modules/views/src/ViewExecutable.php, line 884

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function initHandlers() {
  $this->initDisplay();
  if (empty($this->inited)) {
    foreach ($this::getHandlerTypes() as $key => $info) {
      $this->_initHandler($key, $info);
    }
    $this->inited = TRUE;
  }
}
doc_Drupal
2016-10-29 09:54:24
Comments
Leave a Comment

Please login to continue.