public function PagerPluginBase::getPagerId

Get the pager id, if it exists

File

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

Class

PagerPluginBase
The base plugin to handle pager.

Namespace

Drupal\views\Plugin\views\pager

Code

public function getPagerId() {
  return isset($this->options['id']) ? $this->options['id'] : 0;
}