Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SqlBase.php

function SqlBase::updatePageInfo

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::updatePageInfo

File

core/modules/views/src/Plugin/views/pager/SqlBase.php, line 332

Class

SqlBase
A common base class for sql based pager.

Namespace

Drupal\views\Plugin\views\pager

Code

public function updatePageInfo() {
    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->getItemsPerPage();
    if (!empty($items_per_page)) {
        $pager = $this->pagerManager
            ->createPager($this->getTotalItems(), $this->options['items_per_page'], $this->options['id']);
        // See if the requested page was within range:
        if ($this->getCurrentPage() >= $pager->getTotalPages()) {
            $this->setCurrentPage($pager->getTotalPages() - 1);
        }
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal