You are here

function views_page_alter in Views (for Drupal 7) 8.3

Same name and namespace in other branches
  1. 7.3 views.module \views_page_alter()

Implements hook_page_alter().

File

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

Code

function views_page_alter(&$page) {

  // If the main content of this page contains a view, attach its contextual
  // links to the overall page array. This allows them to be rendered directly
  // next to the page title.
  $view = views_get_page_view();
  if (!empty($view)) {

    // If a module is still putting in the display like we used to, catch that.
    if (is_subclass_of($view, 'views_plugin_display')) {
      $view = $view->view;
    }
    views_add_contextual_links($page, 'page', $view, $view->current_display);
  }
}