function PagerPluginBase::get_pager_id in Views (for Drupal 7) 8.3
Get the pager id, if it exists
File
- 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\pagerCode
function get_pager_id() {
return isset($this->options['id']) ? $this->options['id'] : 0;
}