You are here

public function views_plugin_pager_some::summary_title in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_pager_some.inc \views_plugin_pager_some::summary_title()

Return a string to display as the clickable title for the pager plugin.

Overrides views_plugin_pager::summary_title

File

plugins/views_plugin_pager_some.inc, line 18
Definition of views_plugin_pager_some.

Class

views_plugin_pager_some
Plugin for views without pagers.

Code

public function summary_title() {
  if (!empty($this->options['offset'])) {
    return format_plural($this->options['items_per_page'], '@count item, skip @skip', '@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', '@count items', array(
    '@count' => $this->options['items_per_page'],
  ));
}