function views_get_page_view

Find out what, if any, page view is currently in use. Please note that this returns a reference, so be careful! You can unintentionally modify the $view object.

Return value

Drupal\views\ViewExecutable A fully formed, empty $view object.

3 calls to views_get_page_view()
Tid::get_argument in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_default/Tid.php
Return the default argument.
User::get_argument in drupal/core/modules/user/lib/Drupal/user/Plugin/views/argument_default/User.php
Return the default argument.
views_page_alter in drupal/core/modules/views/views.module
Implements hook_page_alter().

File

drupal/core/modules/views/views.module, line 1064
Primarily Drupal hooks and global API functions to manipulate views.

Code

function &views_get_page_view() {
  return views_set_page_view();
}