function PagerPluginBase::get_offset

Get the page offset, or how many items to skip.

Even pagers that don't actually page can skip items at the beginning, so few pagers will need to override this method.

1 call to PagerPluginBase::get_offset()
Full::exposed_form_alter in drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php

File

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

Class

PagerPluginBase
The base plugin to handle pager.

Namespace

Drupal\views\Plugin\views\pager

Code

function get_offset() {
  return isset($this->options['offset']) ? $this->options['offset'] : 0;
}