1.20.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.
File
- modules/
views/ includes/ handlers.inc, line 487 - 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) {
}