ManageBoards.template.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684
  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;' : '', '">
  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. </dl>
  384. <script type="text/javascript"><!-- // --><![CDATA[
  385. $(document).ready(function () {
  386. $(".select_all_box").each(function () {
  387. $(this).removeClass(\'select_all_box\');
  388. });
  389. });
  390. // ]]></script>
  391. <hr class="hrcolor" />';
  392. if (empty($context['board']['is_recycle']) && empty($context['board']['topics']))
  393. echo '
  394. <dl class="settings">
  395. <dt>
  396. <strong', $context['board']['topics'] ? ' style="color: gray;"' : '', '>', $txt['mboards_redirect'], ':</strong><br />
  397. <span class="smalltext">', $txt['mboards_redirect_desc'], '</span><br />
  398. </dt>
  399. <dd>
  400. <input type="checkbox" id="redirect_enable" name="redirect_enable"', $context['board']['topics'] ? ' disabled="disabled"' : '', $context['board']['redirect'] != '' ? ' checked="checked"' : '', ' onclick="refreshOptions();" class="input_check" />
  401. </dd>
  402. </dl>';
  403. if (!empty($context['board']['is_recycle']))
  404. echo '
  405. <div class="information">', $txt['mboards_redirect_disabled_recycle'], '</div>';
  406. if (empty($context['board']['is_recycle']) && !empty($context['board']['topics']))
  407. echo '
  408. <div class="information">
  409. <strong>', $txt['mboards_redirect'],'</strong><br />
  410. ', $txt['mboards_redirect_disabled'], '
  411. </div>';
  412. if (!$context['board']['topics'] && empty($context['board']['is_recycle']))
  413. {
  414. echo '
  415. <div id="redirect_address_div">
  416. <dl class="settings">
  417. <dt>
  418. <strong>', $txt['mboards_redirect_url'], ':</strong><br />
  419. <span class="smalltext">', $txt['mboards_redirect_url_desc'], '</span><br />
  420. </dt>
  421. <dd>
  422. <input type="text" name="redirect_address" value="', $context['board']['redirect'], '" size="40" class="input_text" />
  423. </dd>
  424. </dl>
  425. </div>';
  426. if ($context['board']['redirect'])
  427. echo '
  428. <div id="reset_redirect_div">
  429. <dl class="settings">
  430. <dt>
  431. <strong>', $txt['mboards_redirect_reset'], ':</strong><br />
  432. <span class="smalltext">', $txt['mboards_redirect_reset_desc'], '</span><br />
  433. </dt>
  434. <dd>
  435. <input type="checkbox" name="reset_redirect" class="input_check" />
  436. <em>(', sprintf($txt['mboards_current_redirects'], $context['board']['posts']), ')</em>
  437. </dd>
  438. </dl>
  439. </div>';
  440. }
  441. echo '
  442. <div id="count_posts_div">
  443. <dl class="settings">
  444. <dt>
  445. <strong>', $txt['mboards_count_posts'], ':</strong><br />
  446. <span class="smalltext">', $txt['mboards_count_posts_desc'], '</span><br />
  447. </dt>
  448. <dd>
  449. <input type="checkbox" name="count"', $context['board']['count_posts'] ? ' checked="checked"' : '', ' class="input_check" />
  450. </dd>
  451. </dl>
  452. </div>';
  453. // Here the user can choose to force this board to use a theme other than the default theme for the forum.
  454. echo '
  455. <div id="board_theme_div">
  456. <dl class="settings">
  457. <dt>
  458. <strong>', $txt['mboards_theme'], ':</strong><br />
  459. <span class="smalltext">', $txt['mboards_theme_desc'], '</span><br />
  460. </dt>
  461. <dd>
  462. <select name="boardtheme" id="boardtheme" onchange="refreshOptions();">
  463. <option value="0"', $context['board']['theme'] == 0 ? ' selected="selected"' : '', '>', $txt['mboards_theme_default'], '</option>';
  464. foreach ($context['themes'] as $theme)
  465. echo '
  466. <option value="', $theme['id'], '"', $context['board']['theme'] == $theme['id'] ? ' selected="selected"' : '', '>', $theme['name'], '</option>';
  467. echo '
  468. </select>
  469. </dd>
  470. </dl>
  471. </div>
  472. <div id="override_theme_div">
  473. <dl class="settings">
  474. <dt>
  475. <strong>', $txt['mboards_override_theme'], ':</strong><br />
  476. <span class="smalltext">', $txt['mboards_override_theme_desc'], '</span><br />
  477. </dt>
  478. <dd>
  479. <input type="checkbox" name="override_theme"', $context['board']['override_theme'] ? ' checked="checked"' : '', ' class="input_check" />
  480. </dd>
  481. </dl>
  482. </div>';
  483. if (!empty($context['board']['is_recycle']))
  484. echo '<div class="information">', $txt['mboards_recycle_disabled_delete'], '</div>';
  485. echo '
  486. <input type="hidden" name="rid" value="', $context['redirect_location'], '" />
  487. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  488. <input type="hidden" name="', $context['admin-be-' . $context['board']['id'] . '_token_var'], '" value="', $context['admin-be-' . $context['board']['id'] . '_token'], '" />';
  489. // If this board has no children don't bother with the next confirmation screen.
  490. if ($context['board']['no_children'])
  491. echo '
  492. <input type="hidden" name="no_children" value="1" />';
  493. if (isset($context['board']['is_new']))
  494. echo '
  495. <input type="hidden" name="cur_cat" value="', $context['board']['category'], '" />
  496. <input type="submit" name="add" value="', $txt['mboards_new_board'], '" onclick="return !isEmptyText(this.form.board_name);" class="button_submit" />';
  497. else
  498. echo '
  499. <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.board_name);" class="button_submit" />';
  500. if (!isset($context['board']['is_new']) && empty($context['board']['is_recycle']))
  501. echo '
  502. <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>';
  503. echo '
  504. </div>
  505. </div>
  506. </form>
  507. </div>
  508. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  509. <script type="text/javascript"><!-- // --><![CDATA[
  510. var oModeratorSuggest = new smc_AutoSuggest({
  511. sSelf: \'oModeratorSuggest\',
  512. sSessionId: smf_session_id,
  513. sSessionVar: smf_session_var,
  514. sSuggestId: \'moderators\',
  515. sControlId: \'moderators\',
  516. sSearchType: \'member\',
  517. bItemList: true,
  518. sPostName: \'moderator_list\',
  519. sURLMask: \'action=profile;u=%item_id%\',
  520. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  521. sItemListContainerId: \'moderator_container\',
  522. aListItems: [';
  523. foreach ($context['board']['moderators'] as $id_member => $member_name)
  524. echo '
  525. {
  526. sItemId: ', JavaScriptEscape($id_member), ',
  527. sItemName: ', JavaScriptEscape($member_name), '
  528. }', $id_member == $context['board']['last_moderator_id'] ? '' : ',';
  529. echo '
  530. ]
  531. });
  532. // ]]></script>';
  533. // Javascript for deciding what to show.
  534. echo '
  535. <script type="text/javascript"><!-- // --><![CDATA[
  536. function refreshOptions()
  537. {
  538. var redirect = document.getElementById("redirect_enable");
  539. var redirectEnabled = redirect ? redirect.checked : false;
  540. var nonDefaultTheme = document.getElementById("boardtheme").value == 0 ? false : true;
  541. // What to show?
  542. document.getElementById("override_theme_div").style.display = redirectEnabled || !nonDefaultTheme ? "none" : "";
  543. document.getElementById("board_theme_div").style.display = redirectEnabled ? "none" : "";
  544. document.getElementById("count_posts_div").style.display = redirectEnabled ? "none" : "";';
  545. if (!$context['board']['topics'] && empty($context['board']['is_recycle']))
  546. {
  547. echo '
  548. document.getElementById("redirect_address_div").style.display = redirectEnabled ? "" : "none";';
  549. if ($context['board']['redirect'])
  550. echo '
  551. document.getElementById("reset_redirect_div").style.display = redirectEnabled ? "" : "none";';
  552. }
  553. echo '
  554. }
  555. refreshOptions();
  556. // ]]></script>';
  557. }
  558. // A template used when a user is deleting a board with child boards in it - to see what they want to do with them.
  559. function template_confirm_board_delete()
  560. {
  561. global $context, $settings, $options, $scripturl, $txt;
  562. // Print table header.
  563. echo '
  564. <div id="manage_boards">
  565. <form action="', $scripturl, '?action=admin;area=manageboards;sa=board2" method="post" accept-charset="', $context['character_set'], '">
  566. <input type="hidden" name="boardid" value="', $context['board']['id'], '" />
  567. <div class="cat_bar">
  568. <h3 class="catbg">', $txt['mboards_delete_board'], '</h3>
  569. </div>
  570. <div class="windowbg">
  571. <div class="content">
  572. <p>', $txt['mboards_delete_board_contains'], '</p>
  573. <ul>';
  574. foreach ($context['children'] as $child)
  575. echo '
  576. <li>', $child['node']['name'], '</li>';
  577. echo '
  578. </ul>
  579. </div>
  580. </div>
  581. <div class="cat_bar">
  582. <h3 class="catbg">', $txt['mboards_delete_what_do'], '</h3>
  583. </div>
  584. <div class="windowbg">
  585. <div class="content">
  586. <p>
  587. <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 />
  588. <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>:
  589. <select name="board_to" ', empty($context['can_move_children']) ? 'disabled="disabled"' : '', '>';
  590. foreach ($context['board_order'] as $board)
  591. if ($board['id'] != $context['board']['id'] && empty($board['is_child']))
  592. echo '
  593. <option value="', $board['id'], '">', $board['name'], '</option>';
  594. echo '
  595. </select>
  596. </p>
  597. <input type="submit" name="delete" value="', $txt['mboards_delete_confirm'], '" class="button_submit" />
  598. <input type="submit" name="cancel" value="', $txt['mboards_delete_cancel'], '" class="button_submit" />
  599. <input type="hidden" name="confirmation" value="1" />
  600. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  601. </div>
  602. </div>
  603. </form>
  604. </div>';
  605. }
  606. ?>