You are here

public function PagerSelectExtender::__construct in Drupal 8

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

Overrides SelectExtender::__construct

File

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

Class

PagerSelectExtender
Query extender for pager queries.

Namespace

Drupal\Core\Database\Query

Code

public function __construct(SelectInterface $query, Connection $connection) {
  parent::__construct($query, $connection);

  // Add pager tag. Do this here to ensure that it is always added before
  // preExecute() is called.
  $this
    ->addTag('pager');
}