function PagerPluginBase::get_pager_id

Get the pager id, if it exists

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/PagerPluginBase.php, line 123
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_pager_id() {
  return isset($this->options['id']) ? $this->options['id'] : 0;
}