You are here

function views_handler_area_alpha_pagination::post_execute in Views Alpha Pagination 7.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 utilized externally.

Overrides views_handler::post_execute

File

src/views_handler_area_alpha_pagination.inc, line 444

Class

views_handler_area_alpha_pagination
Views area handler to display alphabetic pagination.

Code

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