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;
}
}
Please login to continue.