Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ViewExecutable.php

function ViewExecutable::_postExecute

Runs the postExecute() on all active handlers.

1 call to ViewExecutable::_postExecute()
ViewExecutable::execute in core/modules/views/src/ViewExecutable.php
Executes the view's query.

File

core/modules/views/src/ViewExecutable.php, line 1080

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);
        }
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal