You are here

public function views_plugin_pager::get_pager_id in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_pager.inc \views_plugin_pager::get_pager_id()

Get the pager id, if it exists.

4 calls to views_plugin_pager::get_pager_id()
views_plugin_pager_full::render in plugins/views_plugin_pager_full.inc
Render the pager.
views_plugin_pager_full::set_current_page in plugins/views_plugin_pager_full.inc
Set the current page.
views_plugin_pager_full::update_page_info in plugins/views_plugin_pager_full.inc
Update global paging info.
views_plugin_pager_mini::render in plugins/views_plugin_pager_mini.inc
Render the pager.

File

plugins/views_plugin_pager.inc, line 117
Definition of views_plugin_pager.

Class

views_plugin_pager
The base plugin to handle pager.

Code

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