public function None::query

Modify the query for paging

This is called during the build phase and can directly modify the query.

Overrides PagerPluginBase::query

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/None.php, line 82
Definition of Drupal\views\Plugin\views\pager\None.

Class

None
Plugin for views without pagers.

Namespace

Drupal\views\Plugin\views\pager

Code

public function query() {

  // The only query modifications we might do are offsets.
  if (!empty($this->options['offset'])) {
    $this->view->query
      ->set_offset($this->options['offset']);
  }
}