function QueryBase::range

Parameters

null $start:

null $length:

Return value

$this The called object.

Overrides QueryInterface::range

1 call to QueryBase::range()
QueryBase::initializePager in core/lib/Drupal/Core/Entity/Query/QueryBase.php
Gets the total number of results and initialize a pager for the query.

File

core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 191

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function range($start = NULL, $length = NULL) {
  $this->range = [
    'start' => $start,
    'length' => $length,
  ];
  return $this;
}

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