ManageBoards.template.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2012 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. // Template for listing all the current categories and boards.
  13. function template_main()
  14. {
  15. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  16. // Table header.
  17. echo '
  18. <div id="manage_boards">
  19. <div class="title_bar">
  20. <h3 class="titlebg">', $txt['boardsEdit'], '</h3>
  21. </div>';
  22. if (!empty($context['move_board']))
  23. echo '
  24. <div class="information">
  25. <p>', $context['move_title'], ' [<a href="', $scripturl, '?action=admin;area=manageboards">', $txt['mboards_cancel_moving'], '</a>]', '</p>
  26. </div>';
  27. // No categories so show a label.
  28. if (empty($context['categories']))
  29. echo '
  30. <div class="windowbg">
  31. <div class="content centertext">
  32. ', $txt['mboards_no_cats'], '
  33. </div>
  34. </div>';
  35. // Loop through every category, listing the boards in each as we go.
  36. foreach ($context['categories'] as $category)
  37. {
  38. // Link to modify the category.
  39. echo '
  40. <div class="cat_bar">
  41. <h3 class="catbg">
  42. <a href="' . $scripturl . '?action=admin;area=manageboards;sa=cat;cat=' . $category['id'] . '">', $category['name'], '</a> <a href="' . $scripturl . '?action=admin;area=manageboards;sa=cat;cat=' . $category['id'] . '">', $txt['catModify'], '</a>
  43. </h3>
  44. </div>';
  45. // Boards table header.
  46. echo '
  47. <form action="', $scripturl, '?action=admin;area=manageboards;sa=newboard;cat=', $category['id'], '" method="post" accept-charset="', $context['character_set'], '">
  48. <div class="windowbg">
  49. <div class="content">
  50. <ul id="category_', $category['id'], '" class="reset nolist">';
  51. if (!empty($category['move_link']))
  52. echo '
  53. <li><a href="', $category['move_link']['href'], '" title="', $category['move_link']['label'], '"><img src="', $settings['images_url'], '/smiley_select_spot.png" alt="', $category['move_link']['label'], '" /></a></li>';
  54. $alternate = false;
  55. // List through every board in the category, printing its name and link to modify the board.
  56. foreach ($category['boards'] as $board)
  57. {
  58. echo '
  59. <li', !empty($modSettings['recycle_board']) && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $board['id'] ? ' id="recycle_board"' : ' ', ' class="windowbg', $alternate ? '' : '2', '" style="padding-' . ($context['right_to_left'] ? 'right' : 'left') . ': ', 5 + 30 * $board['child_level'], 'px;', $board['move'] ? 'color: red;' : '', '"><span class="floatleft"><a href="', $scripturl, '?board=', $board['id'], '">', $board['name'], '</a>', !empty($modSettings['recycle_board']) && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $board['id'] ? '<a href="' . $scripturl . '?action=admin;area=manageboards;sa=settings"> <img src="' . $settings['images_url'] . '/post/recycled.png" alt="' . $txt['recycle_board'] . '" /></a></span>' : '</span>', '
  60. <span class="floatright">', $context['can_manage_permissions'] ? '<span class="modify_boards"><a href="' . $scripturl . '?action=admin;area=permissions;sa=index;pid=' . $board['permission_profile'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '">' . $txt['mboards_permissions'] . '</a></span>' : '', '
  61. <span class="modify_boards"><a href="', $scripturl, '?action=admin;area=manageboards;move=', $board['id'], '">', $txt['mboards_move'], '</a></span>
  62. <span class="modify_boards"><a href="', $scripturl, '?action=admin;area=manageboards;sa=board;boardid=', $board['id'], '">', $txt['mboards_modify'], '</a></span></span><br style="clear: right;" />
  63. </li>';
  64. if (!empty($board['move_links']))
  65. {
  66. $alternate = !$alternate;
  67. echo '
  68. <li class="windowbg', $alternate ? '' : '2', '" style="padding-', $context['right_to_left'] ? 'right' : 'left', ': ', 5 + 30 * $board['move_links'][0]['child_level'], 'px;">';
  69. foreach ($board['move_links'] as $link)
  70. echo '
  71. <a href="', $link['href'], '" class="move_links" title="', $link['label'], '"><img src="', $settings['images_url'], '/board_select_spot', $link['child_level'] > 0 ? '_child' : '', '.png" alt="', $link['label'], '" style="padding: 0px; margin: 0px;" /></a>';
  72. echo '
  73. </li>';
  74. }
  75. $alternate = !$alternate;
  76. }
  77. // Button to add a new board.
  78. echo '
  79. </ul>
  80. <input type="submit" value="', $txt['mboards_new_board'], '" class="button_submit" />
  81. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  82. </div>
  83. </div>
  84. </form>';
  85. }
  86. echo '
  87. </div>';
  88. }
  89. // Template for editing/adding a category on the forum.
  90. function template_modify_category()
  91. {
  92. global $context, $settings, $options, $scripturl, $txt;
  93. // Print table header.
  94. echo '
  95. <div id="manage_boards">
  96. <form action="', $scripturl, '?action=admin;area=manageboards;sa=cat2" method="post" accept-charset="', $context['character_set'], '">
  97. <input type="hidden" name="cat" value="', $context['category']['id'], '" />
  98. <div class="cat_bar">
  99. <h3 class="catbg">
  100. ', isset($context['category']['is_new']) ? $txt['mboards_new_cat_name'] : $txt['catEdit'], '
  101. </h3>
  102. </div>
  103. <div class="windowbg">
  104. <div class="content">
  105. <dl class="settings">';
  106. // If this isn't the only category, let the user choose where this category should be positioned down the board index.
  107. if (count($context['category_order']) > 1)
  108. {
  109. echo '
  110. <dt><strong>', $txt['order'], ':</strong></dt>
  111. <dd>
  112. <select name="cat_order">';
  113. // Print every existing category into a select box.
  114. foreach ($context['category_order'] as $order)
  115. echo '
  116. <option', $order['selected'] ? ' selected="selected"' : '', ' value="', $order['id'], '">', $order['name'], '</option>';
  117. echo '
  118. </select>
  119. </dd>';
  120. }
  121. // Allow the user to edit the category name and/or choose whether you can collapse the category.
  122. echo '
  123. <dt>
  124. <strong>', $txt['full_name'], ':</strong><br />
  125. <span class="smalltext">', $txt['name_on_display'], '</span>
  126. </dt>
  127. <dd>
  128. <input type="text" name="cat_name" value="', $context['category']['editable_name'], '" size="30" tabindex="', $context['tabindex']++, '" class="input_text" />
  129. </dd>
  130. <dt>
  131. <strong>' . $txt['collapse_enable'] . '</strong><br />
  132. <span class="smalltext">' . $txt['collapse_desc'] . '</span>
  133. </dt>
  134. <dd>
  135. <input type="checkbox" name="collapse"', $context['category']['can_collapse'] ? ' checked="checked"' : '', ' tabindex="', $context['tabindex']++, '" class="input_check" />
  136. </dd>';
  137. // Table footer.
  138. echo '
  139. </dl>';
  140. if (isset($context['category']['is_new']))
  141. echo '
  142. <input type="submit" name="add" value="', $txt['mboards_add_cat_button'], '" onclick="return !isEmptyText(this.form.cat_name);" tabindex="', $context['tabindex']++, '" class="button_submit" />';
  143. else
  144. echo '
  145. <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.cat_name);" tabindex="', $context['tabindex']++, '" class="button_submit" />
  146. <input type="submit" name="delete" value="', $txt['mboards_delete_cat'], '" onclick="return confirm(\'', $txt['catConfirm'], '\');" class="button_submit" />';
  147. echo '
  148. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />';
  149. if (!empty($context['token_check']))
  150. echo '
  151. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '" />';
  152. // If this category is empty we don't bother with the next confirmation screen.
  153. if ($context['category']['is_empty'])
  154. echo '
  155. <input type="hidden" name="empty" value="1" />';
  156. echo '
  157. </div>
  158. </div>
  159. </form>
  160. </div>';
  161. }
  162. // A template to confirm if a user wishes to delete a category - and whether they want to save the boards.
  163. function template_confirm_category_delete()
  164. {
  165. global $context, $settings, $options, $scripturl, $txt;
  166. // Print table header.
  167. echo '
  168. <div id="manage_boards">
  169. <form action="', $scripturl, '?action=admin;area=manageboards;sa=cat2" method="post" accept-charset="', $context['character_set'], '">
  170. <input type="hidden" name="cat" value="', $context['category']['id'], '" />
  171. <div class="cat_bar">
  172. <h3 class="catbg">', $txt['mboards_delete_cat'], '</h3>
  173. </div>
  174. <div class="windowbg">
  175. <div class="content">
  176. <p>', $txt['mboards_delete_cat_contains'], ':</p>
  177. <ul>';
  178. foreach ($context['category']['children'] as $child)
  179. echo '
  180. <li>', $child, '</li>';
  181. echo '
  182. </ul>
  183. </div>
  184. </div>
  185. <div class="cat_bar">
  186. <h3 class="catbg">', $txt['mboards_delete_what_do'], '</h3>
  187. </div>
  188. <div class="windowbg">
  189. <div class="content">
  190. <p>
  191. <label for="delete_action0"><input type="radio" id="delete_action0" name="delete_action" value="0" class="input_radio" checked="checked" />', $txt['mboards_delete_option1'], '</label><br />
  192. <label for="delete_action1"><input type="radio" id="delete_action1" name="delete_action" value="1" class="input_radio"', count($context['category_order']) == 1 ? ' disabled="disabled"' : '', ' />', $txt['mboards_delete_option2'], '</label>:
  193. <select name="cat_to" ', count($context['category_order']) == 1 ? 'disabled="disabled"' : '', '>';
  194. foreach ($context['category_order'] as $cat)
  195. if ($cat['id'] != 0)
  196. echo '
  197. <option value="', $cat['id'], '">', $cat['true_name'], '</option>';
  198. echo '
  199. </select>
  200. </p>
  201. <input type="submit" name="delete" value="', $txt['mboards_delete_confirm'], '" class="button_submit" />
  202. <input type="submit" name="cancel" value="', $txt['mboards_delete_cancel'], '" class="button_submit" />
  203. <input type="hidden" name="confirmation" value="1" />
  204. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  205. </div>
  206. </div>
  207. </form>
  208. </div>';
  209. }
  210. // Below is the template for adding/editing an board on the forum.
  211. function template_modify_board()
  212. {
  213. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  214. // The main table header.
  215. echo '
  216. <div id="manage_boards">
  217. <form action="', $scripturl, '?action=admin;area=manageboards;sa=board2" method="post" accept-charset="', $context['character_set'], '">
  218. <input type="hidden" name="boardid" value="', $context['board']['id'], '" />
  219. <div class="cat_bar">
  220. <h3 class="catbg">
  221. ', isset($context['board']['is_new']) ? $txt['mboards_new_board_name'] : $txt['boardsEdit'], '
  222. </h3>
  223. </div>
  224. <div class="windowbg">
  225. <div class="content">
  226. <dl class="settings">';
  227. // Option for choosing the category the board lives in.
  228. echo '
  229. <dt>
  230. <strong>', $txt['mboards_category'], ':</strong>
  231. </dt>
  232. <dd>
  233. <select name="new_cat" onchange="if (this.form.order) {this.form.order.disabled = this.options[this.selectedIndex].value != 0; this.form.board_order.disabled = this.options[this.selectedIndex].value != 0 || this.form.order.options[this.form.order.selectedIndex].value == \'\';}">';
  234. foreach ($context['categories'] as $category)
  235. echo '
  236. <option', $category['selected'] ? ' selected="selected"' : '', ' value="', $category['id'], '">', $category['name'], '</option>';
  237. echo '
  238. </select>
  239. </dd>';
  240. // If this isn't the only board in this category let the user choose where the board is to live.
  241. if ((isset($context['board']['is_new']) && count($context['board_order']) > 0) || count($context['board_order']) > 1)
  242. {
  243. echo '
  244. <dt>
  245. <strong>', $txt['order'], ':</strong>
  246. </dt>
  247. <dd>';
  248. // The first select box gives the user the option to position it before, after or as a child of another board.
  249. echo '
  250. <select id="order" name="placement" onchange="this.form.board_order.disabled = this.options[this.selectedIndex].value == \'\';">
  251. ', !isset($context['board']['is_new']) ? '<option value="">(' . $txt['mboards_unchanged'] . ')</option>' : '', '
  252. <option value="after">' . $txt['mboards_order_after'] . '...</option>
  253. <option value="child">' . $txt['mboards_order_child_of'] . '...</option>
  254. <option value="before">' . $txt['mboards_order_before'] . '...</option>
  255. </select>';
  256. // The second select box lists all the boards in the category.
  257. echo '
  258. <select id="board_order" name="board_order" ', isset($context['board']['is_new']) ? '' : 'disabled="disabled"', '>
  259. ', !isset($context['board']['is_new']) ? '<option value="">(' . $txt['mboards_unchanged'] . ')</option>' : '';
  260. foreach ($context['board_order'] as $order)
  261. echo '
  262. <option', $order['selected'] ? ' selected="selected"' : '', ' value="', $order['id'], '">', $order['name'], '</option>';
  263. echo '
  264. </select>
  265. </dd>';
  266. }
  267. // Options for board name and description.
  268. echo '
  269. <dt>
  270. <strong>', $txt['full_name'], ':</strong><br />
  271. <span class="smalltext">', $txt['name_on_display'], '</span>
  272. </dt>
  273. <dd>
  274. <input type="text" name="board_name" value="', $context['board']['name'], '" size="30" class="input_text" />
  275. </dd>
  276. <dt>
  277. <strong>', $txt['mboards_description'], ':</strong><br />
  278. <span class="smalltext">', $txt['mboards_description_desc'], '</span>
  279. </dt>
  280. <dd>
  281. <textarea name="desc" rows="3" cols="35" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 99%; min-width: 99%' : 'width: 99%') . ';">', $context['board']['description'], '</textarea>
  282. </dd>
  283. <dt>
  284. <strong>', $txt['permission_profile'], ':</strong><br />
  285. <span class="smalltext">', $context['can_manage_permissions'] ? sprintf($txt['permission_profile_desc'], $scripturl . '?action=admin;area=permissions;sa=profiles;' . $context['session_var'] . '=' . $context['session_id']) : strip_tags($txt['permission_profile_desc']), '</span>
  286. </dt>
  287. <dd>
  288. <select name="profile">';
  289. if (isset($context['board']['is_new']))
  290. echo '
  291. <option value="-1">[', $txt['permission_profile_inherit'], ']</option>';
  292. foreach ($context['profiles'] as $id => $profile)
  293. echo '
  294. <option value="', $id, '" ', $id == $context['board']['profile'] ? 'selected="selected"' : '', '>', $profile['name'], '</option>';
  295. echo '
  296. </select>
  297. </dd>
  298. <dt>
  299. <strong>', $txt['mboards_groups'], ':</strong><br />
  300. <span class="smalltext">', empty($modSettings['deny_boards_access']) ? $txt['mboards_groups_desc'] : $txt['boardsaccess_option_desc'], '</span>';
  301. echo '
  302. </dt>
  303. <dd>';
  304. if (!empty($modSettings['deny_boards_access']))
  305. echo '
  306. <table>
  307. <tr>
  308. <td></td>
  309. <th>', $txt['permissions_option_on'], '</th>
  310. <th>', $txt['permissions_option_off'], '</th>
  311. <th>', $txt['permissions_option_deny'], '</th>
  312. </tr>';
  313. // List all the membergroups so the user can choose who may access this board.
  314. foreach ($context['groups'] as $group)
  315. if (empty($modSettings['deny_boards_access']))
  316. echo '
  317. <label for="groups_', $group['id'], '">
  318. <input type="checkbox" name="groups[', $group['id'], ']" value="allow" id="groups_', $group['id'], '"', $group['allow'] ? ' checked="checked"' : '', ' class="input_check" />
  319. <span', $group['is_post_group'] ? ' class="post_group" title="' . $txt['mboards_groups_post_group'] . '"' : '', $group['id'] == 0 ? ' class="regular_members" title="' . $txt['mboards_groups_regular_members'] . '"' : '', '>
  320. ', $group['name'], '
  321. </span>
  322. </label><br />';
  323. else
  324. echo '
  325. <tr>
  326. <td>
  327. <label for="groups_', $group['id'], '_a">
  328. <span', $group['is_post_group'] ? ' class="post_group" title="' . $txt['mboards_groups_post_group'] . '"' : '', $group['id'] == 0 ? ' class="regular_members" title="' . $txt['mboards_groups_regular_members'] . '"' : '', '>
  329. ', $group['name'], '
  330. </span>
  331. </label>
  332. </td>
  333. <td>
  334. <input type="radio" name="groups[', $group['id'], ']" value="allow" id="groups_', $group['id'], '_a"', $group['allow'] ? ' checked="checked"' : '', ' class="input_radio" />
  335. </td>
  336. <td>
  337. <input type="radio" name="groups[', $group['id'], ']" value="ignore" id="groups_', $group['id'], '_x"', !$group['allow'] && !$group['deny'] ? ' checked="checked"' : '', ' class="input_radio" />
  338. </td>
  339. <td>
  340. <input type="radio" name="groups[', $group['id'], ']" value="deny" id="groups_', $group['id'], '_d"', $group['deny'] ? ' checked="checked"' : '', ' class="input_radio" />
  341. </td>
  342. <td></td>
  343. </tr>';
  344. if (empty($modSettings['deny_boards_access']))
  345. echo '
  346. <span class="select_all_box">
  347. <em>', $txt['check_all'], '</em> <input type="checkbox" class="input_check" onclick="invertAll(this, this.form, \'groups[\');" />
  348. </span>
  349. <br />
  350. <br />
  351. </dd>';
  352. else
  353. echo '
  354. <tr class="select_all_box">
  355. <td>
  356. </td>
  357. <td>
  358. <input type="radio" name="select_all" class="input_radio" onclick="selectAllRadio(this, this.form, \'groups\', \'allow\');" />
  359. </td>
  360. <td>
  361. <input type="radio" name="select_all" class="input_radio" onclick="selectAllRadio(this, this.form, \'groups\', \'ignore\');" />
  362. </td>
  363. <td>
  364. <input type="radio" name="select_all" class="input_radio" onclick="selectAllRadio(this, this.form, \'groups\', \'deny\');" />
  365. </td>
  366. <td>
  367. <em>', $txt['check_all'], '</em>
  368. </td>
  369. </tr>
  370. </table>
  371. </dd>';
  372. // Options to choose moderators, specifiy as announcement board and choose whether to count posts here.
  373. echo '
  374. <dt>
  375. <strong>', $txt['mboards_moderators'], ':</strong><br />
  376. <span class="smalltext">', $txt['mboards_moderators_desc'], '</span><br />
  377. </dt>
  378. <dd>
  379. <input type="text" name="moderators" id="moderators" value="', $context['board']['moderator_list'], '" size="30" class="input_text" />
  380. <div id="moderator_container"></div>
  381. </dd>
  382. </dl>
  383. <script type="text/javascript"><!-- // --><![CDATA[
  384. $(document).ready(function () {
  385. $(".select_all_box").each(function () {
  386. $(this).removeClass(\'select_all_box\');
  387. });
  388. });
  389. // ]]></script>
  390. <hr class="hrcolor" />';
  391. if (empty($context['board']['is_recycle']) && empty($context['board']['topics']))
  392. echo '
  393. <dl class="settings">
  394. <dt>
  395. <strong', $context['board']['topics'] ? ' style="color: gray;"' : '', '>', $txt['mboards_redirect'], ':</strong><br />
  396. <span class="smalltext">', $txt['mboards_redirect_desc'], '</span><br />
  397. </dt>
  398. <dd>
  399. <input type="checkbox" id="redirect_enable" name="redirect_enable"', $context['board']['topics'] ? ' disabled="disabled"' : '', $context['board']['redirect'] != '' ? ' checked="checked"' : '', ' onclick="refreshOptions();" class="input_check" />
  400. </dd>
  401. </dl>';
  402. if (!empty($context['board']['is_recycle']))
  403. echo '
  404. <div class="information">', $txt['mboards_redirect_disabled_recycle'], '</div>';
  405. if (empty($context['board']['is_recycle']) && !empty($context['board']['topics']))
  406. echo '
  407. <div class="information">
  408. <strong>', $txt['mboards_redirect'],'</strong><br />
  409. ', $txt['mboards_redirect_disabled'], '
  410. </div>';
  411. if (!$context['board']['topics'] && empty($context['board']['is_recycle']))
  412. {
  413. echo '
  414. <div id="redirect_address_div">
  415. <dl class="settings">
  416. <dt>
  417. <strong>', $txt['mboards_redirect_url'], ':</strong><br />
  418. <span class="smalltext">', $txt['mboards_redirect_url_desc'], '</span><br />
  419. </dt>
  420. <dd>
  421. <input type="text" name="redirect_address" value="', $context['board']['redirect'], '" size="40" class="input_text" />
  422. </dd>
  423. </dl>
  424. </div>';
  425. if ($context['board']['redirect'])
  426. echo '
  427. <div id="reset_redirect_div">
  428. <dl class="settings">
  429. <dt>
  430. <strong>', $txt['mboards_redirect_reset'], ':</strong><br />
  431. <span class="smalltext">', $txt['mboards_redirect_reset_desc'], '</span><br />
  432. </dt>
  433. <dd>
  434. <input type="checkbox" name="reset_redirect" class="input_check" />
  435. <em>(', sprintf($txt['mboards_current_redirects'], $context['board']['posts']), ')</em>
  436. </dd>
  437. </dl>
  438. </div>';
  439. }
  440. echo '
  441. <div id="count_posts_div">
  442. <dl class="settings">
  443. <dt>
  444. <strong>', $txt['mboards_count_posts'], ':</strong><br />
  445. <span class="smalltext">', $txt['mboards_count_posts_desc'], '</span><br />
  446. </dt>
  447. <dd>
  448. <input type="checkbox" name="count" ', $context['board']['count_posts'] ? ' checked="checked"' : '', ' class="input_check" />
  449. </dd>
  450. </dl>
  451. </div>';
  452. // Here the user can choose to force this board to use a theme other than the default theme for the forum.
  453. echo '
  454. <div id="board_theme_div">
  455. <dl class="settings">
  456. <dt>
  457. <strong>', $txt['mboards_theme'], ':</strong><br />
  458. <span class="smalltext">', $txt['mboards_theme_desc'], '</span><br />
  459. </dt>
  460. <dd>
  461. <select name="boardtheme" id="boardtheme" onchange="refreshOptions();">
  462. <option value="0"', $context['board']['theme'] == 0 ? ' selected="selected"' : '', '>', $txt['mboards_theme_default'], '</option>';
  463. foreach ($context['themes'] as $theme)
  464. echo '
  465. <option value="', $theme['id'], '"', $context['board']['theme'] == $theme['id'] ? ' selected="selected"' : '', '>', $theme['name'], '</option>';
  466. echo '
  467. </select>
  468. </dd>
  469. </dl>
  470. </div>
  471. <div id="override_theme_div">
  472. <dl class="settings">
  473. <dt>
  474. <strong>', $txt['mboards_override_theme'], ':</strong><br />
  475. <span class="smalltext">', $txt['mboards_override_theme_desc'], '</span><br />
  476. </dt>
  477. <dd>
  478. <input type="checkbox" name="override_theme"', $context['board']['override_theme'] ? ' checked="checked"' : '', ' class="input_check" />
  479. </dd>
  480. </dl>
  481. </div>';
  482. if (!empty($context['board']['is_recycle']))
  483. echo '<div class="information">', $txt['mboards_recycle_disabled_delete'], '</div>';
  484. echo '
  485. <input type="hidden" name="rid" value="', $context['redirect_location'], '" />
  486. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  487. <input type="hidden" name="', $context['admin-be-' . $context['board']['id'] . '_token_var'], '" value="', $context['admin-be-' . $context['board']['id'] . '_token'], '" />';
  488. // If this board has no children don't bother with the next confirmation screen.
  489. if ($context['board']['no_children'])
  490. echo '
  491. <input type="hidden" name="no_children" value="1" />';
  492. if (isset($context['board']['is_new']))
  493. echo '
  494. <input type="hidden" name="cur_cat" value="', $context['board']['category'], '" />
  495. <input type="submit" name="add" value="', $txt['mboards_new_board'], '" onclick="return !isEmptyText(this.form.board_name);" class="button_submit" />';
  496. else
  497. echo '
  498. <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.board_name);" class="button_submit" />';
  499. if (!isset($context['board']['is_new']) && empty($context['board']['is_recycle']))
  500. echo '
  501. <span', $context['board']['is_recycle'] ? ' style="visibility:hidden">' : '>', '<input type="submit" name="delete" value="', $txt['mboards_delete_board'], '" onclick="return confirm(\'', $txt['boardConfirm'], '\');"', ' class="button_submit" /></span>';
  502. echo '
  503. </div>
  504. </div>
  505. </form>
  506. </div>
  507. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  508. <script type="text/javascript"><!-- // --><![CDATA[
  509. var oModeratorSuggest = new smc_AutoSuggest({
  510. sSelf: \'oModeratorSuggest\',
  511. sSessionId: smf_session_id,
  512. sSessionVar: smf_session_var,
  513. sSuggestId: \'moderators\',
  514. sControlId: \'moderators\',
  515. sSearchType: \'member\',
  516. bItemList: true,
  517. sPostName: \'moderator_list\',
  518. sURLMask: \'action=profile;u=%item_id%\',
  519. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  520. sItemListContainerId: \'moderator_container\',
  521. aListItems: [';
  522. foreach ($context['board']['moderators'] as $id_member => $member_name)
  523. echo '
  524. {
  525. sItemId: ', JavaScriptEscape($id_member), ',
  526. sItemName: ', JavaScriptEscape($member_name), '
  527. }', $id_member == $context['board']['last_moderator_id'] ? '' : ',';
  528. echo '
  529. ]
  530. });
  531. // ]]></script>';
  532. // Javascript for deciding what to show.
  533. echo '
  534. <script type="text/javascript"><!-- // --><![CDATA[
  535. function refreshOptions()
  536. {
  537. var redirect = document.getElementById("redirect_enable");
  538. var redirectEnabled = redirect ? redirect.checked : false;
  539. var nonDefaultTheme = document.getElementById("boardtheme").value == 0 ? false : true;
  540. // What to show?
  541. document.getElementById("override_theme_div").style.display = redirectEnabled || !nonDefaultTheme ? "none" : "";
  542. document.getElementById("board_theme_div").style.display = redirectEnabled ? "none" : "";
  543. document.getElementById("count_posts_div").style.display = redirectEnabled ? "none" : "";';
  544. if (!$context['board']['topics'] && empty($context['board']['is_recycle']))
  545. {
  546. echo '
  547. document.getElementById("redirect_address_div").style.display = redirectEnabled ? "" : "none";';
  548. if ($context['board']['redirect'])
  549. echo '
  550. document.getElementById("reset_redirect_div").style.display = redirectEnabled ? "" : "none";';
  551. }
  552. echo '
  553. }
  554. refreshOptions();
  555. // ]]></script>';
  556. }
  557. // A template used when a user is deleting a board with child boards in it - to see what they want to do with them.
  558. function template_confirm_board_delete()
  559. {
  560. global $context, $settings, $options, $scripturl, $txt;
  561. // Print table header.
  562. echo '
  563. <div id="manage_boards">
  564. <form action="', $scripturl, '?action=admin;area=manageboards;sa=board2" method="post" accept-charset="', $context['character_set'], '">
  565. <input type="hidden" name="boardid" value="', $context['board']['id'], '" />
  566. <div class="cat_bar">
  567. <h3 class="catbg">', $txt['mboards_delete_board'], '</h3>
  568. </div>
  569. <div class="windowbg">
  570. <div class="content">
  571. <p>', $txt['mboards_delete_board_contains'], '</p>
  572. <ul>';
  573. foreach ($context['children'] as $child)
  574. echo '
  575. <li>', $child['node']['name'], '</li>';
  576. echo '
  577. </ul>
  578. </div>
  579. </div>
  580. <div class="cat_bar">
  581. <h3 class="catbg">', $txt['mboards_delete_what_do'], '</h3>
  582. </div>
  583. <div class="windowbg">
  584. <div class="content">
  585. <p>
  586. <label for="delete_action0"><input type="radio" id="delete_action0" name="delete_action" value="0" class="input_radio" checked="checked" />', $txt['mboards_delete_board_option1'], '</label><br />
  587. <label for="delete_action1"><input type="radio" id="delete_action1" name="delete_action" value="1" class="input_radio"', empty($context['can_move_children']) ? ' disabled="disabled"' : '', ' />', $txt['mboards_delete_board_option2'], '</label>:
  588. <select name="board_to" ', empty($context['can_move_children']) ? 'disabled="disabled"' : '', '>';
  589. foreach ($context['board_order'] as $board)
  590. if ($board['id'] != $context['board']['id'] && empty($board['is_child']))
  591. echo '
  592. <option value="', $board['id'], '">', $board['name'], '</option>';
  593. echo '
  594. </select>
  595. </p>
  596. <input type="submit" name="delete" value="', $txt['mboards_delete_confirm'], '" class="button_submit" />
  597. <input type="submit" name="cancel" value="', $txt['mboards_delete_cancel'], '" class="button_submit" />
  598. <input type="hidden" name="confirmation" value="1" />
  599. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  600. </div>
  601. </div>
  602. </form>
  603. </div>';
  604. }