function views_handler::post_execute
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 640
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
public function post_execute(&$values) {
}