function views_set_current_view in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/views.module \views_set_current_view()
- 9 core/modules/views/views.module \views_set_current_view()
Set the current view.
Set the current view that is being built/rendered so that it is easy for other modules or items in drupal_eval to identify
Return value
\Drupal\views\ViewExecutable
1 call to views_set_current_view()
- views_get_current_view in core/
modules/ views/ views.module - Find out what, if any, current view is currently in use.
File
- core/
modules/ views/ views.module, line 503 - 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;
}