pager.func.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_pager().
  5. */
  6. /* @noinspection PhpDocMissingThrowsInspection */
  7. /**
  8. * Returns HTML for a query pager.
  9. *
  10. * Menu callbacks that display paged query results should call theme('pager') to
  11. * retrieve a pager control so that users can view other results. Format a list
  12. * of nearby pages with additional query results.
  13. *
  14. * @param array $variables
  15. * An associative array containing:
  16. * - tags: An array of labels for the controls in the pager.
  17. * - element: An optional integer to distinguish between multiple pagers on
  18. * one page.
  19. * - parameters: An associative array of query string parameters to append to
  20. * the pager links.
  21. * - quantity: The number of pages in the list.
  22. *
  23. * @return string
  24. * The constructed HTML.
  25. *
  26. * @see theme_pager()
  27. *
  28. * @ingroup theme_functions
  29. */
  30. function bootstrap_pager(array $variables) {
  31. $output = "";
  32. $items = array();
  33. $tags = $variables['tags'];
  34. $element = $variables['element'];
  35. $parameters = $variables['parameters'];
  36. $quantity = $variables['quantity'];
  37. global $pager_page_array, $pager_total;
  38. // Calculate various markers within this pager piece:
  39. // Middle is used to "center" pages around the current page.
  40. $pager_middle = ceil($quantity / 2);
  41. // Current is the page we are currently paged to.
  42. $pager_current = $pager_page_array[$element] + 1;
  43. // First is the first page listed by this pager piece (re quantity).
  44. $pager_first = $pager_current - $pager_middle + 1;
  45. // Last is the last page listed by this pager piece (re quantity).
  46. $pager_last = $pager_current + $quantity - $pager_middle;
  47. // Max is the maximum page number.
  48. $pager_max = $pager_total[$element];
  49. // Prepare for generation loop.
  50. $i = $pager_first;
  51. if ($pager_last > $pager_max) {
  52. // Adjust "center" if at end of query.
  53. $i = $i + ($pager_max - $pager_last);
  54. $pager_last = $pager_max;
  55. }
  56. if ($i <= 0) {
  57. // Adjust "center" if at start of query.
  58. $pager_last = $pager_last + (1 - $i);
  59. $i = 1;
  60. }
  61. // End of generation loop preparation.
  62. /* @noinspection PhpUnhandledExceptionInspection */
  63. $li_first = theme('pager_first', array(
  64. 'text' => (isset($tags[0]) ? $tags[0] : t('first')),
  65. 'element' => $element,
  66. 'parameters' => $parameters,
  67. ));
  68. /* @noinspection PhpUnhandledExceptionInspection */
  69. $li_previous = theme('pager_previous', array(
  70. 'text' => (isset($tags[1]) ? $tags[1] : t('previous')),
  71. 'element' => $element,
  72. 'interval' => 1,
  73. 'parameters' => $parameters,
  74. ));
  75. /* @noinspection PhpUnhandledExceptionInspection */
  76. $li_next = theme('pager_next', array(
  77. 'text' => (isset($tags[3]) ? $tags[3] : t('next')),
  78. 'element' => $element,
  79. 'interval' => 1,
  80. 'parameters' => $parameters,
  81. ));
  82. /* @noinspection PhpUnhandledExceptionInspection */
  83. $li_last = theme('pager_last', array(
  84. 'text' => (isset($tags[4]) ? $tags[4] : t('last')),
  85. 'element' => $element,
  86. 'parameters' => $parameters,
  87. ));
  88. if ($pager_total[$element] > 1) {
  89. // Only show "first" link if set on components' theme setting.
  90. if ($li_first && bootstrap_setting('pager_first_and_last')) {
  91. $items[] = array(
  92. 'class' => array('pager-first'),
  93. 'data' => $li_first,
  94. );
  95. }
  96. if ($li_previous) {
  97. $items[] = array(
  98. 'class' => array('prev'),
  99. 'data' => $li_previous,
  100. );
  101. }
  102. // When there is more than one page, create the pager list.
  103. if ($i != $pager_max) {
  104. if ($i > 1) {
  105. $items[] = array(
  106. 'class' => array('pager-ellipsis', 'disabled'),
  107. 'data' => '<span>…</span>',
  108. );
  109. }
  110. // Now generate the actual pager piece.
  111. for (; $i <= $pager_last && $i <= $pager_max; $i++) {
  112. if ($i < $pager_current) {
  113. /* @noinspection PhpUnhandledExceptionInspection */
  114. $items[] = array(
  115. // 'class' => array('pager-item'),.
  116. 'data' => theme('pager_previous', array(
  117. 'text' => $i,
  118. 'element' => $element,
  119. 'interval' => ($pager_current - $i),
  120. 'parameters' => $parameters,
  121. )),
  122. );
  123. }
  124. if ($i == $pager_current) {
  125. $items[] = array(
  126. // Add the active class.
  127. 'class' => array('active'),
  128. 'data' => "<span>$i</span>",
  129. );
  130. }
  131. if ($i > $pager_current) {
  132. /* @noinspection PhpUnhandledExceptionInspection */
  133. $items[] = array(
  134. 'data' => theme('pager_next', array(
  135. 'text' => $i,
  136. 'element' => $element,
  137. 'interval' => ($i - $pager_current),
  138. 'parameters' => $parameters,
  139. )),
  140. );
  141. }
  142. }
  143. if ($i < $pager_max) {
  144. $items[] = array(
  145. 'class' => array('pager-ellipsis', 'disabled'),
  146. 'data' => '<span>…</span>',
  147. );
  148. }
  149. }
  150. // End generation.
  151. if ($li_next) {
  152. $items[] = array(
  153. 'class' => array('next'),
  154. 'data' => $li_next,
  155. );
  156. }
  157. // // Only show "last" link if set on components' theme setting.
  158. if ($li_last && bootstrap_setting('pager_first_and_last')) {
  159. $items[] = array(
  160. 'class' => array('pager-last'),
  161. 'data' => $li_last,
  162. );
  163. }
  164. $build = array(
  165. '#theme_wrappers' => array('container__pager'),
  166. '#attributes' => array(
  167. 'class' => array(
  168. 'text-center',
  169. ),
  170. ),
  171. 'pager' => array(
  172. '#theme' => 'item_list',
  173. '#items' => $items,
  174. '#attributes' => array(
  175. 'class' => array('pagination'),
  176. ),
  177. ),
  178. );
  179. return drupal_render($build);
  180. }
  181. return $output;
  182. }