public function Some::query in Views (for Drupal 7) 8.3
Modify the query for paging
This is called during the build phase and can directly modify the query.
Overrides PagerPluginBase::query
File
- lib/
Drupal/ views/ Plugin/ views/ pager/ Some.php, line 71 - Definition of Drupal\views\Plugin\views\pager\Some.
Class
- Some
- Plugin for views without pagers.
Namespace
Drupal\views\Plugin\views\pagerCode
public function query() {
$this->view->query
->set_limit($this->options['items_per_page']);
$this->view->query
->set_offset($this->options['offset']);
}