You are here

public function view::_post_execute in Views (for Drupal 7) 7.3

Run the post_execute() on all active handlers.

1 call to view::_post_execute()
view::execute in includes/view.inc
Execute the view's query.

File

includes/view.inc, line 781
views_objects Objects that represent a View or part of a view

Class

view
An object to contain all of the data to generate a view.

Code

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