|
|
Drupal example source code file (views_plugin_pager_mini.inc)
The views_plugin_pager_mini.inc Drupal example source code<?php // $Id: views_plugin_pager_mini.inc,v 1.1.4.5 2011/01/04 00:00:20 dereine Exp $ /** * The plugin to handle full pager. * * @ingroup views_pager_plugins */ class views_plugin_pager_mini extends views_plugin_pager_full { function summary_title() { if (!empty($this->options['offset'])) { return format_plural($this->options['items_per_page'], 'Mini pager, @count item, skip @skip', 'Mini pager, @count items, skip @skip', array('@count' => $this->options['items_per_page'], '@skip' => $this->options['offset'])); } return format_plural($this->options['items_per_page'], 'Mini pager, @count item', 'Mini pager, @count items', array('@count' => $this->options['items_per_page'])); } function render($input) { $pager_theme = views_theme_functions('views_mini_pager', $this->view, $this->display); return theme($pager_theme, array( 'tags' => $input, 'element' => $this->options['id'])); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_plugin_pager_mini.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.