function Full::update_page_info

Update global paging info.

This is called after the count query has been run to set the total items available and to update the current page if the requested page is out of range.

Overrides PagerPluginBase::update_page_info

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php, line 361
Definition of Drupal\views\Plugin\views\pager\Full.

Class

Full
The plugin to handle full pager.

Namespace

Drupal\views\Plugin\views\pager

Code

function update_page_info() {
  if (!empty($this->options['total_pages'])) {
    if ($this->options['total_pages'] * $this->options['items_per_page'] < $this->total_items) {
      $this->total_items = $this->options['total_pages'] * $this->options['items_per_page'];
    }
  }

  // Don't set pager settings for items per page = 0.
  $items_per_page = $this
    ->get_items_per_page();
  if (!empty($items_per_page)) {

    // Dump information about what we already know into the globals.
    global $pager_page_array, $pager_total, $pager_total_items, $pager_limits;

    // Set the limit.
    $pager_limits[$this->options['id']] = $this->options['items_per_page'];

    // Set the item count for the pager.
    $pager_total_items[$this->options['id']] = $this->total_items;

    // Calculate and set the count of available pages.
    $pager_total[$this->options['id']] = $this
      ->get_pager_total();

    // See if the requested page was within range:
    if ($this->current_page >= $pager_total[$this->options['id']]) {

      // Pages are numbered from 0 so if there are 10 pages, the last page is 9.
      $this
        ->set_current_page($pager_total[$this->options['id']] - 1);
    }

    // Put this number in to guarantee that we do not generate notices when the pager
    // goes to look for it later.
    $pager_page_array[$this->options['id']] = $this->current_page;
  }
}