date-views-pager.tpl.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * @file
  4. * Template file for the example display.
  5. *
  6. * Variables available:
  7. *
  8. * $plugin: The pager plugin object. This contains the view.
  9. *
  10. * $plugin->view
  11. * The view object for this navigation.
  12. *
  13. * $nav_title
  14. * The formatted title for this view. In the case of block
  15. * views, it will be a link to the full view, otherwise it will
  16. * be the formatted name of the year, month, day, or week.
  17. *
  18. * $prev_url
  19. * $next_url
  20. * Urls for the previous and next calendar pages. The links are
  21. * composed in the template to make it easier to change the text,
  22. * add images, etc.
  23. *
  24. * $prev_options
  25. * $next_options
  26. * Query strings and other options for the links that need to
  27. * be used in the 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>