function views_plugin_display_page::get_pager_text
3.x views_plugin_display_page.inc | views_plugin_display_page::get_pager_text() |
Provide some helpful text for pagers.
The result should contain of an array within
- items per page title
Overrides views_plugin_display::get_pager_text
File
- plugins/
views_plugin_display_page.inc, line 563 - Contains the page display plugin.
Class
- views_plugin_display_page
- The plugin that handles a full page.
Code
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.')
);
}