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