Return a string to display as the clickable title for the pager plugin.
Overrides PagerPluginBase::summaryTitle
public function summaryTitle() {
if (!empty($this->options['offset'])) {
return t('All items, skip @skip', array(
'@skip' => $this->options['offset'],
));
}
return t('All items');
}