function views_plugin_pager::summary_title in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 7.3 plugins/views_plugin_pager.inc \views_plugin_pager::summary_title()
Return a string to display as the clickable title for the pager plugin.
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 113
Class
- views_plugin_pager
- The base plugin to handle pager.
Code
function summary_title() {
return t('Unknown');
}