ManageBoards.template.php 29 KB

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