You are here

function view::post_execute in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/view.inc \view::post_execute()
  2. 7.3 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 1209
view.inc 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() {

  // 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);
}