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
-
core/
modules/ views/ src/ Plugin/ views/ pager/ None.php, line 82
Class
- None
- Plugin for views without pagers.
Namespace
Drupal\views\Plugin\views\pagerCode
public function query() {
// The only query modifications we might do are offsets.
if (!empty($this->options['offset'])) {
$this->view->query
->setOffset($this->options['offset']);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.