GenericList.template.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2011 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. function template_show_list($list_id = null)
  13. {
  14. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  15. // Get a shortcut to the current list.
  16. $list_id = $list_id === null ? $context['default_list'] : $list_id;
  17. $cur_list = &$context[$list_id];
  18. // These are the main tabs that is used all around the template.
  19. if (!empty($settings['use_tabs']) && isset($cur_list['list_menu'], $cur_list['list_menu']['show_on']) && ($cur_list['list_menu']['show_on'] == 'both' || $cur_list['list_menu']['show_on'] == 'top'))
  20. template_create_list_menu($cur_list['list_menu'], 'top');
  21. if (isset($cur_list['form']))
  22. echo '
  23. <form action="', $cur_list['form']['href'], '" method="post"', empty($cur_list['form']['name']) ? '' : ' name="' . $cur_list['form']['name'] . '" id="' . $cur_list['form']['name'] . '"', ' accept-charset="', $context['character_set'], '">
  24. <div class="generic_list">';
  25. // Show the title of the table (if any).
  26. if (!empty($cur_list['title']))
  27. echo '
  28. <div class="title_bar clear_right">
  29. <h3 class="titlebg">
  30. ', $cur_list['title'], '
  31. </h3>
  32. </div>';
  33. // This is for the old style menu with the arrows "> Test | Test 1"
  34. if (empty($settings['use_tabs']) && isset($cur_list['list_menu'], $cur_list['list_menu']['show_on']) && ($cur_list['list_menu']['show_on'] == 'both' || $cur_list['list_menu']['show_on'] == 'top'))
  35. template_create_list_menu($cur_list['list_menu'], 'top');
  36. if (isset($cur_list['additional_rows']['top_of_list']))
  37. template_additional_rows('top_of_list', $cur_list);
  38. if (isset($cur_list['additional_rows']['after_title']))
  39. {
  40. echo '
  41. <div class="information flow_hidden">';
  42. template_additional_rows('after_title', $cur_list);
  43. echo '
  44. </div>';
  45. }
  46. if (!empty($cur_list['items_per_page']) || isset($cur_list['additional_rows']['bottom_of_list']))
  47. {
  48. echo '
  49. <div class="flow_auto">';
  50. // Show the page index (if this list doesn't intend to show all items).
  51. if (!empty($cur_list['items_per_page']))
  52. echo '
  53. <div class="floatleft">
  54. <div class="pagesection">', $txt['pages'], ': ', $cur_list['page_index'], '</div>
  55. </div>';
  56. if (isset($cur_list['additional_rows']['above_column_headers']))
  57. {
  58. echo '
  59. <div class="floatright">';
  60. template_additional_rows('above_column_headers', $cur_list);
  61. echo '
  62. </div>';
  63. }
  64. echo '
  65. </div>';
  66. }
  67. echo '
  68. <table class="table_grid" cellspacing="0" width="', !empty($cur_list['width']) ? $cur_list['width'] : '100%', '">';
  69. // Show the column headers.
  70. $header_count = count($cur_list['headers']);
  71. if (!($header_count < 2 && empty($cur_list['headers'][0]['label'])))
  72. {
  73. echo '
  74. <thead>
  75. <tr class="catbg">';
  76. // Loop through each column and add a table header.
  77. $i = 0;
  78. foreach ($cur_list['headers'] as $col_header)
  79. {
  80. $i ++;
  81. if (empty($col_header['class']) && $i == 1)
  82. $col_header['class'] = 'first_th';
  83. elseif (empty($col_header['class']) && $i == $header_count)
  84. $col_header['class'] = 'last_th';
  85. echo '
  86. <th scope="col"', empty($col_header['class']) ? '' : ' class="' . $col_header['class'] . '"', empty($col_header['style']) ? '' : ' style="' . $col_header['style'] . '"', empty($col_header['colspan']) ? '' : ' colspan="' . $col_header['colspan'] . '"', '>', empty($col_header['href']) ? '' : '<a href="' . $col_header['href'] . '" rel="nofollow">', empty($col_header['label']) ? '&nbsp;' : $col_header['label'], empty($col_header['href']) ? '' : '</a>', empty($col_header['sort_image']) ? '' : ' <img src="' . $settings['images_url'] . '/sort_' . $col_header['sort_image'] . '.gif" alt="" />', '</th>';
  87. }
  88. echo '
  89. </tr>
  90. </thead>
  91. <tbody>';
  92. }
  93. // Show a nice message informing there are no items in this list.
  94. if (empty($cur_list['rows']) && !empty($cur_list['no_items_label']))
  95. echo '
  96. <tr>
  97. <td class="windowbg" colspan="', $cur_list['num_columns'], '" align="', !empty($cur_list['no_items_align']) ? $cur_list['no_items_align'] : 'center', '"><div class="padding">', $cur_list['no_items_label'], '</div></td>
  98. </tr>';
  99. // Show the list rows.
  100. elseif (!empty($cur_list['rows']))
  101. {
  102. $alternate = false;
  103. foreach ($cur_list['rows'] as $id => $row)
  104. {
  105. echo '
  106. <tr class="windowbg', $alternate ? '2' : '', '" id="list_', $list_id, '_', $id, '">';
  107. foreach ($row as $row_data)
  108. echo '
  109. <td', empty($row_data['class']) ? '' : ' class="' . $row_data['class'] . '"', empty($row_data['style']) ? '' : ' style="' . $row_data['style'] . '"', '>', $row_data['value'], '</td>';
  110. echo '
  111. </tr>';
  112. $alternate = !$alternate;
  113. }
  114. }
  115. echo '
  116. </tbody>
  117. </table>';
  118. if (!empty($cur_list['items_per_page']) || isset($cur_list['additional_rows']['below_table_data']) || isset($cur_list['additional_rows']['bottom_of_list']))
  119. {
  120. echo '
  121. <div class="flow_auto">';
  122. // Show the page index (if this list doesn't intend to show all items).
  123. if (!empty($cur_list['items_per_page']))
  124. echo '
  125. <div class="floatleft">
  126. <div class="pagesection">', $txt['pages'], ': ', $cur_list['page_index'], '</div>
  127. </div>';
  128. if (isset($cur_list['additional_rows']['below_table_data']))
  129. {
  130. echo '
  131. <div class="floatright">';
  132. template_additional_rows('below_table_data', $cur_list);
  133. echo '
  134. </div>';
  135. }
  136. if (isset($cur_list['additional_rows']['bottom_of_list']))
  137. {
  138. echo '
  139. <div class="floatright">';
  140. template_additional_rows('bottom_of_list', $cur_list);
  141. echo '
  142. </div>';
  143. }
  144. echo '
  145. </div>';
  146. }
  147. if (isset($cur_list['form']))
  148. {
  149. foreach ($cur_list['form']['hidden_fields'] as $name => $value)
  150. echo '
  151. <input type="hidden" name="', $name, '" value="', $value, '" />';
  152. echo '
  153. </div>
  154. </form>';
  155. }
  156. // Tabs at the bottom. Usually bottom alligned.
  157. if (!empty($settings['use_tabs']) && isset($cur_list['list_menu'], $cur_list['list_menu']['show_on']) && ($cur_list['list_menu']['show_on'] == 'both' || $cur_list['list_menu']['show_on'] == 'bottom'))
  158. template_create_list_menu($cur_list['list_menu'], 'bottom');
  159. if (isset($cur_list['javascript']))
  160. echo '
  161. <script type="text/javascript"><!-- // --><![CDATA[
  162. ', $cur_list['javascript'], '
  163. // ]]></script>';
  164. }
  165. function template_additional_rows($row_position, $cur_list)
  166. {
  167. global $context, $settings, $options;
  168. foreach ($cur_list['additional_rows'][$row_position] as $row)
  169. echo '
  170. <div class="additional_row', empty($row['class']) ? '' : ' ' . $row['class'], '"', empty($row['style']) ? '' : ' style="' . $row['style'] . '"', '>', $row['value'], '</div>';
  171. }
  172. function template_create_list_menu($list_menu, $direction = 'top')
  173. {
  174. global $context, $settings;
  175. /**
  176. // This is use if you want your generic lists to have tabs.
  177. $cur_list['list_menu'] = array(
  178. // This is the style to use. Tabs or Buttons (Text 1 | Text 2).
  179. // By default tabs are selected if not set.
  180. // The main difference between tabs and buttons is that tabs get highlighted if selected.
  181. // If style is set to buttons and use tabs is diabled then we change the style to old styled tabs.
  182. 'style' => 'tabs',
  183. // The posisiton of the tabs/buttons. Left or Right. By default is set to left.
  184. 'position' => 'left',
  185. // This is used by the old styled menu. We *need* to know the total number of columns to span.
  186. 'columns' => 0,
  187. // This gives you the option to show tabs only at the top, bottom or both.
  188. // By default they are just shown at the top.
  189. 'show_on' => 'top',
  190. // Links. This is the core of the array. It has all the info that we need.
  191. 'links' => array(
  192. 'name' => array(
  193. // This will tell use were to go when they click it.
  194. 'href' => $scripturl . '?action=theaction',
  195. // The name that you want to appear for the link.
  196. 'label' => $txt['name'],
  197. // If we use tabs instead of buttons we highlight the current tab.
  198. // Must use conditions to determine if its selected or not.
  199. 'is_selected' => isset($_REQUEST['name']),
  200. ),
  201. ),
  202. );
  203. */
  204. // Are we using right-to-left orientation?
  205. $first = $context['right_to_left'] ? 'last' : 'first';
  206. $last = $context['right_to_left'] ? 'first' : 'last';
  207. // Tabs take preference over buttons in certain cases.
  208. if (empty($settings['use_tabs']) && $list_menu['style'] == 'button')
  209. $list_menu['style'] = 'tabs';
  210. if (!isset($list_menu['style']) || isset($list_menu['style']) && $list_menu['style'] == 'tabs')
  211. {
  212. if (!empty($settings['use_tabs']))
  213. {
  214. echo '
  215. <table cellpadding="0" cellspacing="0" style="margin-', $list_menu['position'], ': 10px; width: 100%;">
  216. <tr>', $list_menu['position'] == 'right' ? '
  217. <td>&nbsp;</td>' : '', '
  218. <td align="', $list_menu['position'], '">
  219. <table cellspacing="0" cellpadding="0">
  220. <tr>
  221. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_', $first, '">&nbsp;</td>';
  222. foreach ($list_menu['links'] as $link)
  223. {
  224. if ($link['is_selected'])
  225. echo '
  226. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_active_', $first, '">&nbsp;</td>
  227. <td valign="top" class="', $direction == 'top' ? 'mirrortab' : 'maintab', '_active_back">
  228. <a href="', $link['href'], '">', $link['label'], '</a>
  229. </td>
  230. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_active_', $last, '">&nbsp;</td>';
  231. else
  232. echo '
  233. <td valign="top" class="', $direction == 'top' ? 'mirror' : 'main', 'tab_back">
  234. <a href="', $link['href'], '">', $link['label'], '</a>
  235. </td>';
  236. }
  237. echo '
  238. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_', $last, '">&nbsp;</td>
  239. </tr>
  240. </table>
  241. </td>', $list_menu['position'] == 'left' ? '
  242. <td>&nbsp;</td>' : '', '
  243. </tr>
  244. </table>';
  245. }
  246. else
  247. {
  248. echo '
  249. <tr class="titlebg">
  250. <td colspan="', $context['colspan'], '">';
  251. $links = array();
  252. foreach ($list_menu['links'] as $link)
  253. $links[] = ($link['is_selected'] ? '<img src="' . $settings['images_url'] . '/selected.gif" alt="&gt;" /> ' : '') . '<a href="' . $link['href'] . '">' . $link['label'] . '</a>';
  254. echo '
  255. ', implode(' | ', $links), '
  256. </td>
  257. </tr>';
  258. }
  259. }
  260. elseif (isset($list_menu['style']) && $list_menu['style'] == 'buttons')
  261. {
  262. $links = array();
  263. foreach ($list_menu['links'] as $link)
  264. $links[] = '<a href="' . $link['href'] . '">' . $link['label'] . '</a>';
  265. echo '
  266. <table cellpadding="0" cellspacing="0" style="margin-', $list_menu['position'], ': 10px; width: 100%;">
  267. <tr>', $list_menu['position'] == 'right' ? '
  268. <td>&nbsp;</td>' : '', '
  269. <td align="', $list_menu['position'], '">
  270. <table cellspacing="0" cellpadding="0">
  271. <tr>
  272. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_', $first, '">&nbsp;</td>
  273. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_back">', implode(' &nbsp;|&nbsp; ', $links), '</td>
  274. <td class="', $direction == 'top' ? 'mirror' : 'main', 'tab_', $last, '">&nbsp;</td>
  275. </tr>
  276. </table>
  277. </td>', $list_menu['position'] == 'left' ? '
  278. <td>&nbsp;</td>' : '', '
  279. </tr>
  280. </table>';
  281. }
  282. }
  283. ?>