function views_handler::post_execute
3.x handlers.inc | views_handler::post_execute(&$values) |
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.
1 method overrides views_handler::post_execute()
- views_handler_field_field::post_execute in modules/
field/ views_handler_field_field.inc - Load the entities for all fields that are about to be displayed.
File
- includes/
handlers.inc, line 598 - Defines the various handler objects to help build and display views.
Class
- views_handler
- Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.
Code
function post_execute(&$values) {
}