ManageBoards.template.php 26 KB

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