date-views-pager.vars.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "date_views_pager" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "date_views_pager" theme hook.
  8. *
  9. * See template for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see date-views-pager.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_date_views_pager(array &$variables) {
  19. $mini = !empty($variables['mini']);
  20. // Link types.
  21. $types = array(
  22. // Because this is using the "date_nav" context, this must use "Prev"
  23. // instead of the full English word "Previous".
  24. // @todo Should this be fixed upstream in the date/date_views module?
  25. 'prev' => t('Prev', array(), array('context' => 'date_nav')),
  26. 'next' => t('Next', array(), array('context' => 'date_nav')),
  27. );
  28. // Icon map.
  29. $icons = array(
  30. 'prev' => array(
  31. 'name' => 'menu-left',
  32. 'default' => '&laquo;&nbsp;',
  33. 'position' => 'before',
  34. ),
  35. 'next' => array(
  36. 'name' => 'menu-right',
  37. 'default' => '&nbsp;&raquo;',
  38. 'position' => 'after',
  39. ),
  40. );
  41. // Create necessary links.
  42. $items = array();
  43. foreach ($types as $type => $text) {
  44. $item_classes = array($type);
  45. $options = isset($variables[$type . '_options']) ? $variables[$type . '_options'] : array();
  46. $options += array('attributes' => array());
  47. $url = $variables[$type . '_url'];
  48. // Make the item disabled if there is no URL.
  49. if (!$url) {
  50. $url = '#';
  51. $item_classes[] = 'disabled';
  52. $options['absolute'] = TRUE;
  53. $options['external'] = TRUE;
  54. }
  55. // Convert titles into tooltips, if enabled.
  56. elseif (!empty($options['attributes']['title']) && bootstrap_setting('tooltip_enabled')) {
  57. $options['attributes']['data-toggle'] = 'tooltip';
  58. $options['attributes']['data-placement'] = 'bottom';
  59. }
  60. // Create a link.
  61. $link = array(
  62. '#theme' => 'link__date_views__pager__' . $type,
  63. '#text' => $text,
  64. '#path' => $url,
  65. '#options' => $options,
  66. );
  67. // Add relevant icon.
  68. if (isset($icons[$type])) {
  69. $icon = $icons[$type];
  70. $link['#icon'] = _bootstrap_icon($icon['name'], $icon['default']);
  71. $link['#icon_position'] = $mini ? 'icon_only' : $icon['position'];
  72. }
  73. $items[$type] = array(
  74. 'class' => $item_classes,
  75. 'data' => $link,
  76. );
  77. }
  78. // Add items render array.
  79. $variables['items'] = array(
  80. '#theme' => 'item_list__date_views__pager',
  81. '#attributes' => array('class' => array('pagination', 'pull-right')),
  82. '#items' => $items,
  83. );
  84. // Add default classes for the <nav> wrapper.
  85. $variables['attributes_array']['class'][] = 'clearfix';
  86. $variables['attributes_array']['class'][] = 'date-nav-wrapper';
  87. // This is not mentioned anywhere other than in the original module's
  88. // template file. However, to keep BC, these need to be merged just in case.
  89. if (!empty($variables['extra_classes'])) {
  90. if (is_string($variables['extra_classes'])) {
  91. $variables['extra_classes'] = explode(' ', $variables['extra_classes']);
  92. }
  93. $variables['attributes_array']['class'] = array_merge(isset($variables['attributes']['class']) ? $variables['attributes']['class'] : array(), $variables['extra_classes']);
  94. }
  95. }