Same name and namespace in other branches
  1. 6.x-3.x includes/view.inc \view::post_execute()

Unset the current view, mostly.

2 calls to view::post_execute()
view::execute_display in includes/view.inc
Execute the given display, with the given arguments. To be called externally by whatever mechanism invokes the view, such as a page callback, hook_block, etc.
view::preview in includes/view.inc
Preview the given display, with the given arguments.

File

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

Class

view

Code

public function post_execute() {

  // unset current view so we can be properly destructed later on.
  // Return the previous value in case we're an attachment.
  if ($this->old_view) {
    $old_view = array_pop($this->old_view);
  }
  views_set_current_view(isset($old_view) ? $old_view : FALSE);
}