protected ViewExecutable::_postExecute()
Runs the postExecute() on all active handlers.
File
- core/modules/views/src/ViewExecutable.php, line 1010
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\views
Code
protected function _postExecute() { foreach ($this::getHandlerTypes() as $key => $info) { $handlers = &$this->$key; foreach ($handlers as $id => $handler) { $handlers[$id]->postExecute($this->result); } } }
Please login to continue.