public function QueryBase::range in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::range()
Parameters
null $start:
null $length:
Return value
\Drupal\Core\Entity\Query\QueryInterface 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 188 - Contains \Drupal\Core\Entity\Query\QueryBase.
Class
- QueryBase
- The base entity query class.
Namespace
Drupal\Core\Entity\QueryCode
public function range($start = NULL, $length = NULL) {
$this->range = array(
'start' => $start,
'length' => $length,
);
return $this;
}