Projet

Général

Profil

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

root / drupal7 / sites / all / modules / date / date_views / theme / date-views-pager.tpl.php @ 599a39cd

1
<?php
2

    
3
/**
4
 * @file
5
 * Template file for the example display.
6
 *
7
 * Variables available:
8
 *
9
 * $plugin: The pager plugin object. This contains the view.
10
 *
11
 * $plugin->view
12
 *   The view object for this navigation.
13
 *
14
 * $nav_title
15
 *   The formatted title for this view. In the case of block views, it will be a
16
 *   link to the full view, otherwise it will be the formatted name of the year,
17
 *   month, day, or week.
18
 *
19
 * $prev_url
20
 * $next_url
21
 *   Urls for the previous and next calendar pages. The links are composed in
22
 *   the template to make it easier to change the text, add images, etc.
23
 *
24
 * $prev_options
25
 * $next_options
26
 *   Query strings and other options for the links that need to be used in the
27
 *   l() function, including rel=nofollow.
28
 */
29
?>
30
<?php if (!empty($pager_prefix)): ?>
31
<?php print $pager_prefix; ?>
32
<?php endif; ?>
33
<div class="date-nav-wrapper clearfix<?php if (!empty($extra_classes)): print $extra_classes; endif; ?>">
34
  <div class="date-nav item-list">
35
    <div class="date-heading">
36
      <h3><?php print $nav_title ?></h3>
37
    </div>
38
    <ul class="pager">
39
    <?php if (!empty($prev_url)): ?>
40
      <li class="date-prev">
41
        <?php
42
        $text = '&laquo;';
43
        $text .= $mini ? '' : ' ' . t('Prev', array(), array('context' => 'date_nav'));
44
        print l(t($text), $prev_url, $prev_options);
45
        ?>
46
      </li>
47
    <?php endif; ?>
48
    <?php if (!empty($next_url)): ?>
49
      <li class="date-next">
50
        <?php print l(($mini ? '' : t('Next', array(), array('context' => 'date_nav')) . ' ') . '&raquo;', $next_url, $next_options); ?>
51
      </li>
52
    <?php endif; ?>
53
    </ul>
54
  </div>
55
</div>