public function Some::query in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/src/Plugin/views/pager/Some.php \Drupal\views\Plugin\views\pager\Some::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/ Some.php, line 67
Class
- Some
- Plugin for views without pagers.
Namespace
Drupal\views\Plugin\views\pagerCode
public function query() {
$this->view->query
->setLimit($this->options['items_per_page']);
$this->view->query
->setOffset($this->options['offset']);
}