1 views_plugin_pager_full.inc | views_plugin_pager_full::summary_title() |
Return a string to display as the clickable title for the pager plugin.
Overrides views_plugin_pager::summary_title
File
- core/
modules/ views/ plugins/ views_plugin_pager_full.inc, line 13 - Definition of views_plugin_pager_full.
Class
- views_plugin_pager_full
- The plugin to handle full pager.
Code
function summary_title() {
if (!empty($this->options['offset'])) {
return format_plural($this->options['items_per_page'], '@count item, skip @skip', 'Paged, @count items, skip @skip', array('@count' => $this->options['items_per_page'], '@skip' => $this->options['offset']));
}
return format_plural($this->options['items_per_page'], '@count item', 'Paged, @count items', array('@count' => $this->options['items_per_page']));
}