function 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 75

Class

views_plugin_pager_none
Plugin for views without pagers.

Code

public function get_items_per_page() {
  return 0;
}