GenericList.template.php 11 KB

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