public function PagerPluginBase::summaryTitle in Views (for Drupal 7) 8.3
Return a string to display as the clickable title for the pager plugin.
Overrides PluginBase::summaryTitle
3 methods override PagerPluginBase::summaryTitle()
- Full::summaryTitle in lib/
Drupal/ views/ Plugin/ views/ pager/ Full.php - Return a string to display as the clickable title for the pager plugin.
- None::summaryTitle in lib/
Drupal/ views/ Plugin/ views/ pager/ None.php - Return a string to display as the clickable title for the pager plugin.
- Some::summaryTitle in lib/
Drupal/ views/ Plugin/ views/ pager/ Some.php - Return a string to display as the clickable title for the pager plugin.
File
- lib/
Drupal/ views/ Plugin/ views/ pager/ PagerPluginBase.php, line 141 - Definition of Drupal\views\Plugin\views\pager\PagerPluginBase.
Class
- PagerPluginBase
- The base plugin to handle pager.
Namespace
Drupal\views\Plugin\views\pagerCode
public function summaryTitle() {
return t('Unknown');
}