Projet

Général

Profil

Paste
Télécharger (1,21 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / bootstrap / templates / date / date-views-pager.tpl.php @ 7547bb19

1
<?php
2

    
3
/**
4
 * @file
5
 * Displays the date views pager.
6
 *
7
 * Available variables:
8
 * - $attributes: A string of attributes to apply to the pager wrapper element.
9
 * - $items: A render array of pagination items.
10
 * - $mini: Flag indicating whether simple pager items should be shown.
11
 * - $nav_title: The formatted title for this view. In the case of block views,
12
 *   it will be a link to the full view, otherwise it will be the formatted name
13
 *   of the year, month, day, or week. See theme_date_nav_title() for more
14
 *   details.
15
 * - $prev_options: An list of link options that is passed to the link theme
16
 *   hook.
17
 * - $prev_url: URL for the previous calendar page.
18
 * - $next_options: An list of link options that is passed to the link theme
19
 *   hook.
20
 * - $next_url: URL for the next calendar page.
21
 * - $plugin: The pager plugin object. This contains the view.
22
 *
23
 * @see bootstrap_process_date_views_pager()
24
 * @see bootstrap_preprocess_date_views_pager()
25
 * @see template_preprocess_date_views_pager()
26
 *
27
 * @ingroup templates
28
 */
29
?>
30
<?php if (!empty($pager_prefix)): ?>
31
<?php print $pager_prefix; ?>
32
<?php endif; ?>
33
<nav<?php print $attributes;?>>
34
  <?php print render($items); ?>
35
  <h3><?php print $nav_title ?></h3>
36
</nav>