1.20.x view.inc view::_post_execute()

Run the post_execute() on all active handlers.

File

modules/views/includes/view.inc, line 775
Provides the view object type and associated methods.

Class

view
An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.

Code

function _post_execute() {
  foreach (views_object_types() as $key => $info) {
    $handlers = &$this->$key;
    foreach ($handlers as $id => $handler) {
      $handlers[$id]->post_execute($this->result);
    }
  }
}