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
1 2 3 4 5 6 7 8 9 | 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.