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

Breadcrumb

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

function QueryBase::range

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 195

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function range($start = NULL, $length = NULL) {
    $this->range = is_null($start) && is_null($length) ? [] : [
        'start' => $start ?? 0,
        'length' => $length,
    ];
    return $this;
}
RSS feed
Powered by Drupal