You are here

public function views_plugin_display_page::get_pager_text in Views (for Drupal 7) 7.3

Provide some helpful text for pagers.

The result should contain of an array with:

  • items per page title.
  • items per page description.

Overrides views_plugin_display::get_pager_text

File

plugins/views_plugin_display_page.inc, line 621
Definition of views_plugin_display_page.

Class

views_plugin_display_page
The plugin that handles a full page.

Code

public function get_pager_text() {
  return array(
    'items per page title' => t('Items per page'),
    'items per page description' => t('The number of items to display per page. Enter 0 for no limit.'),
  );
}