1 views_plugin_display.inc | views_plugin_display::get_pager_text() |
Provide some helpful text for pagers.
The result should contain of an array within
- items per page title
File
- core/
modules/ views/ plugins/ views_plugin_display.inc, line 2949 - Contains the base display plugin.
Class
- views_plugin_display
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Code
function get_pager_text() {
return array(
'items per page title' => t('Items to display'),
'items per page description' => t('The number of items to display. Enter 0 for no limit.')
);
}