ViewExecutable::_postExecute

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);
    }
  }
}
doc_Drupal
2016-10-29 09:54:30
Comments
Leave a Comment

Please login to continue.