function None::summaryTitle
Returns a string to display as the clickable title for the pager plugin.
Overrides PagerPluginBase::summaryTitle
File
- 
              core/modules/ views/ src/ Plugin/ views/ pager/ None.php, line 33 
Class
- None
- Plugin for views without pagers.
Namespace
Drupal\views\Plugin\views\pagerCode
public function summaryTitle() {
  if (!empty($this->options['offset'])) {
    return $this->t('All items, skip @skip', [
      '@skip' => $this->options['offset'],
    ]);
  }
  return $this->t('All items');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
