You are here

public function HandlerBase::postExecute in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/HandlerBase.php \Drupal\views\Plugin\views\HandlerBase::postExecute()

Run after the view is executed, before the result is cached.

This gives all the handlers some time to modify values. This is primarily used so that handlers that pull up secondary data can put it in the $values so that the raw data can be used externally.

Overrides ViewsHandlerInterface::postExecute

File

core/modules/views/src/Plugin/views/HandlerBase.php, line 491

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

public function postExecute(&$values) {
}