function PagerSelectExtender::ensureElement

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php \Drupal\Core\Database\Query\PagerSelectExtender::ensureElement()

Ensure that there is an element associated with this query.

After running this method, access $this->element to get the element for this query.

File

core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php, line 102

Class

PagerSelectExtender
Query extender for pager queries.

Namespace

Drupal\Core\Database\Query

Code

protected function ensureElement() {
  if (!isset($this->element)) {
    $this->element($this->connection
      ->getPagerManager()
      ->getMaxPagerElementId() + 1);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.