You are here

function alpha_pagination_handler_pagination::post_execute in Views Alpha Pagination 7

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

views/alpha_pagination_handler_pagination.inc, line 293
Definition of alpha_pagination_handler_pagination.

Class

alpha_pagination_handler_pagination
Views area handler to display an alphabetic pagination representive of the entire result set for this view and not just the limited number being displayed by the view's configuration

Code

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