function views_plugin_pager::summary_title
3.x views_plugin_pager.inc | views_plugin_pager::summary_title() |
Return a string to display as the clickable title for the pager plugin.
Overrides views_plugin::summary_title
3 methods override views_plugin_pager::summary_title()
- views_plugin_pager_full::summary_title in plugins/
views_plugin_pager_full.inc - Return a string to display as the clickable title for the pager plugin.
- views_plugin_pager_none::summary_title in plugins/
views_plugin_pager_none.inc - Return a string to display as the clickable title for the pager plugin.
- views_plugin_pager_some::summary_title in plugins/
views_plugin_pager_some.inc - Return a string to display as the clickable title for the pager plugin.
File
- plugins/
views_plugin_pager.inc, line 127 - Definition of views_plugin_pager.
Class
- views_plugin_pager
- The base plugin to handle pager.
Code
function summary_title() {
return t('Unknown');
}