You are here

function views_plugin_pager_none::get_items_per_page in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 plugins/views_plugin_pager_none.inc \views_plugin_pager_none::get_items_per_page()

Get how many items per page this pager will display.

All but the leanest pagers should probably return a value here, so most pagers will not need to override this method.

Overrides views_plugin_pager::get_items_per_page

File

plugins/views_plugin_pager_none.inc, line 51

Class

views_plugin_pager_none
Plugin for views without pagers.

Code

function get_items_per_page() {
  return 0;
}