You are here

public function AlphaPaginationArea::postExecute in Views Alpha Pagination 8.2

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 HandlerBase::postExecute

File

src/Plugin/views/area/AlphaPaginationArea.php, line 569

Class

AlphaPaginationArea
Views area handler to display alphabetic pagination.

Namespace

Drupal\alpha_pagination\Plugin\views\area

Code

public function postExecute(&$values) {
  $this->alphaPagination
    ->ensureQuery();
}