You are here

function views_set_current_view in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 8.3 views.module \views_set_current_view()
  2. 5 views.module \views_set_current_view()
  3. 6.2 views.module \views_set_current_view()
  4. 7.3 views.module \views_set_current_view()

Set the current 'current view' that is being built/rendered so that it is easy for other modules or items in drupal_eval to identify

Return value

view

3 calls to views_set_current_view()
view::post_execute in includes/view.inc
Unset the current view, mostly.
view::pre_execute in includes/view.inc
Run attachments and let the display do what it needs to do prior to running.
views_get_current_view in ./views.module
Find out what, if any, current view is currently in use. Please note that this returns a reference, so be careful! You can unintentionally modify the $view object.

File

./views.module, line 707
Primarily Drupal hooks and global API functions to manipulate views.

Code

function &views_set_current_view($view = NULL) {
  static $cache = NULL;
  if (isset($view)) {
    $cache = $view;
  }
  return $cache;
}