Post.template.php 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines http://www.simplemachines.org
  7. * @copyright 2014 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. // The main template for the post page.
  13. function template_main()
  14. {
  15. global $context, $settings, $options, $txt, $scripturl, $modSettings, $counter;
  16. // Start the javascript... and boy is there a lot.
  17. echo '
  18. <script><!-- // --><![CDATA[';
  19. // When using Go Back due to fatal_error, allow the form to be re-submitted with changes.
  20. if (isBrowser('is_firefox'))
  21. echo '
  22. window.addEventListener("pageshow", reActivate, false);';
  23. // Start with message icons - and any missing from this theme.
  24. echo '
  25. var icon_urls = {';
  26. foreach ($context['icons'] as $icon)
  27. echo '
  28. \'', $icon['value'], '\': \'', $icon['url'], '\'', $icon['is_last'] ? '' : ',';
  29. echo '
  30. };';
  31. // If this is a poll - use some javascript to ensure the user doesn't create a poll with illegal option combinations.
  32. if ($context['make_poll'])
  33. echo '
  34. var pollOptionNum = 0, pollTabIndex;
  35. var pollOptionId = ', $context['last_choice_id'], ';
  36. function addPollOption()
  37. {
  38. if (pollOptionNum == 0)
  39. {
  40. for (var i = 0, n = document.forms.postmodify.elements.length; i < n; i++)
  41. if (document.forms.postmodify.elements[i].id.substr(0, 8) == \'options-\')
  42. {
  43. pollOptionNum++;
  44. pollTabIndex = document.forms.postmodify.elements[i].tabIndex;
  45. }
  46. }
  47. pollOptionNum++
  48. pollOptionId++
  49. setOuterHTML(document.getElementById(\'pollMoreOptions\'), ', JavaScriptEscape('<li><label for="options-'), ' + pollOptionId + ', JavaScriptEscape('">' . $txt['option'] . ' '), ' + pollOptionNum + ', JavaScriptEscape('</label>: <input type="text" name="options['), ' + pollOptionId + ', JavaScriptEscape(']" id="options-'), ' + pollOptionId + ', JavaScriptEscape('" value="" size="80" maxlength="255" tabindex="'), ' + pollTabIndex + ', JavaScriptEscape('" class="input_text"></li><li id="pollMoreOptions"></li>'), ');
  50. }';
  51. // If we are making a calendar event we want to ensure we show the current days in a month etc... this is done here.
  52. if ($context['make_event'])
  53. echo '
  54. var monthLength = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];';
  55. // End of the javascript, start the form and display the link tree.
  56. echo '
  57. // ]]></script>
  58. <form action="', $scripturl, '?action=', $context['destination'], ';', empty($context['current_board']) ? '' : 'board=' . $context['current_board'], '" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" class="flow_hidden" onsubmit="', ($context['becomes_approved'] ? '' : 'alert(\'' . $txt['js_post_will_require_approval'] . '\');'), 'submitonce(this);smc_saveEntities(\'postmodify\', [\'subject\', \'', $context['post_box_name'], '\', \'guestname\', \'evtitle\', \'question\'], \'options\');" enctype="multipart/form-data">';
  59. // If the user wants to see how their message looks - the preview section is where it's at!
  60. echo '
  61. <div id="preview_section"', isset($context['preview_message']) ? '' : ' style="display: none;"', '>
  62. <div class="cat_bar">
  63. <h3 class="catbg">
  64. <span id="preview_subject">', empty($context['preview_subject']) ? '' : $context['preview_subject'], '</span>
  65. </h3>
  66. </div>
  67. <div class="windowbg">
  68. <div class="content">
  69. <div class="post" id="preview_body">
  70. ', empty($context['preview_message']) ? '<br>' : $context['preview_message'], '
  71. </div>
  72. </div>
  73. </div>
  74. </div><br>';
  75. if ($context['make_event'] && (!$context['event']['new'] || !empty($context['current_board'])))
  76. echo '
  77. <input type="hidden" name="eventid" value="', $context['event']['id'], '">';
  78. // Start the main table.
  79. echo '
  80. <div class="cat_bar">
  81. <h3 class="catbg">', $context['page_title'], '</h3>
  82. </div>
  83. <div>
  84. <div class="roundframe">', isset($context['current_topic']) ? '
  85. <input type="hidden" name="topic" value="' . $context['current_topic'] . '">' : '';
  86. // If an error occurred, explain what happened.
  87. echo '
  88. <div class="', empty($context['error_type']) || $context['error_type'] != 'serious' ? 'noticebox' : 'errorbox', '"', empty($context['post_error']) ? ' style="display: none"' : '', ' id="errors">
  89. <dl>
  90. <dt>
  91. <strong id="error_serious">', $txt['error_while_submitting'], '</strong>
  92. </dt>
  93. <dd class="error" id="error_list">
  94. ', empty($context['post_error']) ? '' : implode('<br>', $context['post_error']), '
  95. </dd>
  96. </dl>
  97. </div>';
  98. // If this won't be approved let them know!
  99. if (!$context['becomes_approved'])
  100. {
  101. echo '
  102. <p class="information">
  103. <em>', $txt['wait_for_approval'], '</em>
  104. <input type="hidden" name="not_approved" value="1">
  105. </p>';
  106. }
  107. // If it's locked, show a message to warn the replyer.
  108. echo '
  109. <p class="information"', $context['locked'] ? '' : ' style="display: none"', ' id="lock_warning">
  110. ', $txt['topic_locked_no_reply'], '
  111. </p>';
  112. if (!empty($modSettings['drafts_post_enabled']))
  113. echo '
  114. <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>',
  115. sprintf($txt['draft_saved'], $scripturl . '?action=profile;u=' . $context['user']['id'] . ';area=showdrafts'), '
  116. ', (!empty($modSettings['drafts_keep_days']) ? ' <strong>' . sprintf($txt['draft_save_warning'], $modSettings['drafts_keep_days']) . '</strong>' : ''), '
  117. </div>';
  118. // The post header... important stuff
  119. echo '
  120. <dl id="post_header">';
  121. // Guests have to put in their name and email...
  122. if (isset($context['name']) && isset($context['email']))
  123. {
  124. echo '
  125. <dt>
  126. <span', isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) || isset($context['post_error']['bad_name']) ? ' class="error"' : '', ' id="caption_guestname">', $txt['name'], ':</span>
  127. </dt>
  128. <dd>
  129. <input type="text" name="guestname" size="25" value="', $context['name'], '" tabindex="', $context['tabindex']++, '" class="input_text">
  130. </dd>';
  131. if (empty($modSettings['guest_post_no_email']))
  132. echo '
  133. <dt>
  134. <span', isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? ' class="error"' : '', ' id="caption_email">', $txt['email'], ':</span>
  135. </dt>
  136. <dd>
  137. <input type="text" name="email" size="25" value="', $context['email'], '" tabindex="', $context['tabindex']++, '" class="input_text">
  138. </dd>';
  139. }
  140. // Now show the subject box for this post.
  141. echo '
  142. <dt class="clear">
  143. <span', isset($context['post_error']['no_subject']) ? ' class="error"' : '', ' id="caption_subject">', $txt['subject'], ':</span>
  144. </dt>
  145. <dd>
  146. <input type="text" name="subject"', $context['subject'] == '' ? '' : ' value="' . $context['subject'] . '"', ' tabindex="', $context['tabindex']++, '" size="80" maxlength="80"', isset($context['post_error']['no_subject']) ? ' class="error"' : ' class="input_text"', '/>
  147. </dd>
  148. <dt class="clear_left">
  149. ', $txt['message_icon'], ':
  150. </dt>
  151. <dd>
  152. <select name="icon" id="icon" onchange="showimage()">';
  153. // Loop through each message icon allowed, adding it to the drop down list.
  154. foreach ($context['icons'] as $icon)
  155. echo '
  156. <option value="', $icon['value'], '"', $icon['value'] == $context['icon'] ? ' selected' : '', '>', $icon['name'], '</option>';
  157. echo '
  158. </select>
  159. <img src="', $context['icon_url'], '" name="icons" hspace="15" alt="">
  160. </dd>
  161. </dl>';
  162. // Are you posting a calendar event?
  163. if ($context['make_event'])
  164. {
  165. echo '
  166. <hr class="clear">
  167. <div id="post_event">
  168. <fieldset id="event_main">
  169. <legend><span', isset($context['post_error']['no_event']) ? ' class="error"' : '', ' id="caption_evtitle">', $txt['calendar_event_title'], '</span></legend>
  170. <input type="text" name="evtitle" maxlength="255" size="55" value="', $context['event']['title'], '" tabindex="', $context['tabindex']++, '" class="input_text">
  171. <div class="smalltext" style="white-space: nowrap;">
  172. <input type="hidden" name="calendar" value="1">', $txt['calendar_year'], '
  173. <select name="year" id="year" tabindex="', $context['tabindex']++, '" onchange="generateDays();">';
  174. // Show a list of all the years we allow...
  175. for ($year = $modSettings['cal_minyear']; $year <= $modSettings['cal_maxyear']; $year++)
  176. echo '
  177. <option value="', $year, '"', $year == $context['event']['year'] ? ' selected' : '', '>', $year, '&nbsp;</option>';
  178. echo '
  179. </select>
  180. ', $txt['calendar_month'], '
  181. <select name="month" id="month" onchange="generateDays();">';
  182. // There are 12 months per year - ensure that they all get listed.
  183. for ($month = 1; $month <= 12; $month++)
  184. echo '
  185. <option value="', $month, '"', $month == $context['event']['month'] ? ' selected' : '', '>', $txt['months'][$month], '&nbsp;</option>';
  186. echo '
  187. </select>
  188. ', $txt['calendar_day'], '
  189. <select name="day" id="day">';
  190. // This prints out all the days in the current month - this changes dynamically as we switch months.
  191. for ($day = 1; $day <= $context['event']['last_day']; $day++)
  192. echo '
  193. <option value="', $day, '"', $day == $context['event']['day'] ? ' selected' : '', '>', $day, '&nbsp;</option>';
  194. echo '
  195. </select>
  196. </div>
  197. </fieldset>';
  198. if (!empty($modSettings['cal_allowspan']) || ($context['event']['new'] && $context['is_new_post']))
  199. {
  200. echo '
  201. <fieldset id="event_options">
  202. <legend>', $txt['calendar_event_options'], '</legend>
  203. <div class="event_options smalltext">
  204. <ul class="event_options">';
  205. // If events can span more than one day then allow the user to select how long it should last.
  206. if (!empty($modSettings['cal_allowspan']))
  207. {
  208. echo '
  209. <li>
  210. ', $txt['calendar_numb_days'], '
  211. <select name="span">';
  212. for ($days = 1; $days <= $modSettings['cal_maxspan']; $days++)
  213. echo '
  214. <option value="', $days, '"', $days == $context['event']['span'] ? ' selected' : '', '>', $days, '&nbsp;</option>';
  215. echo '
  216. </select>
  217. </li>';
  218. }
  219. // If this is a new event let the user specify which board they want the linked post to be put into.
  220. if ($context['event']['new'] && $context['is_new_post'])
  221. {
  222. echo '
  223. <li>
  224. ', $txt['calendar_post_in'], '
  225. <select name="board">';
  226. foreach ($context['event']['categories'] as $category)
  227. {
  228. echo '
  229. <optgroup label="', $category['name'], '">';
  230. foreach ($category['boards'] as $board)
  231. echo '
  232. <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=&gt;' : '', ' ', $board['name'], '&nbsp;</option>';
  233. echo '
  234. </optgroup>';
  235. }
  236. echo '
  237. </select>
  238. </li>';
  239. }
  240. echo '
  241. </ul>
  242. </div>
  243. </fieldset>';
  244. }
  245. echo '
  246. </div>';
  247. }
  248. // If this is a poll then display all the poll options!
  249. if ($context['make_poll'])
  250. {
  251. echo '
  252. <hr class="clear">
  253. <div id="edit_poll">
  254. <fieldset id="poll_main">
  255. <legend><span ', (isset($context['poll_error']['no_question']) ? ' class="error"' : ''), '>', $txt['poll_question'], '</span></legend>
  256. <input type="text" name="question" value="', isset($context['question']) ? $context['question'] : '', '" tabindex="', $context['tabindex']++, '" size="80" class="input_text">
  257. <ul class="poll_main">';
  258. // Loop through all the choices and print them out.
  259. foreach ($context['choices'] as $choice)
  260. {
  261. echo '
  262. <li>
  263. <label for="options-', $choice['id'], '">', $txt['option'], ' ', $choice['number'], '</label>:
  264. <input type="text" name="options[', $choice['id'], ']" id="options-', $choice['id'], '" value="', $choice['label'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="255" class="input_text">
  265. </li>';
  266. }
  267. echo '
  268. <li id="pollMoreOptions"></li>
  269. </ul>
  270. <strong><a href="javascript:addPollOption(); void(0);">(', $txt['poll_add_option'], ')</a></strong>
  271. </fieldset>
  272. <fieldset id="poll_options">
  273. <legend>', $txt['poll_options'], '</legend>
  274. <dl class="settings poll_options">
  275. <dt>
  276. <label for="poll_max_votes">', $txt['poll_max_votes'], ':</label>
  277. </dt>
  278. <dd>
  279. <input type="text" name="poll_max_votes" id="poll_max_votes" size="2" value="', $context['poll_options']['max_votes'], '" class="input_text">
  280. </dd>
  281. <dt>
  282. <label for="poll_expire">', $txt['poll_run'], ':</label><br>
  283. <em class="smalltext">', $txt['poll_run_limit'], '</em>
  284. </dt>
  285. <dd>
  286. <input type="text" name="poll_expire" id="poll_expire" size="2" value="', $context['poll_options']['expire'], '" onchange="pollOptions();" maxlength="4" class="input_text"> ', $txt['days_word'], '
  287. </dd>
  288. <dt>
  289. <label for="poll_change_vote">', $txt['poll_do_change_vote'], ':</label>
  290. </dt>
  291. <dd>
  292. <input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked' : '', ' class="input_check">
  293. </dd>';
  294. if ($context['poll_options']['guest_vote_enabled'])
  295. echo '
  296. <dt>
  297. <label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label>
  298. </dt>
  299. <dd>
  300. <input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll_options']['guest_vote']) ? ' checked' : '', ' class="input_check">
  301. </dd>';
  302. echo '
  303. <dt>
  304. ', $txt['poll_results_visibility'], ':
  305. </dt>
  306. <dd>
  307. <input type="radio" name="poll_hide" id="poll_results_anyone" value="0"', $context['poll_options']['hide'] == 0 ? ' checked' : '', ' class="input_radio"> <label for="poll_results_anyone">', $txt['poll_results_anyone'], '</label><br>
  308. <input type="radio" name="poll_hide" id="poll_results_voted" value="1"', $context['poll_options']['hide'] == 1 ? ' checked' : '', ' class="input_radio"> <label for="poll_results_voted">', $txt['poll_results_voted'], '</label><br>
  309. <input type="radio" name="poll_hide" id="poll_results_expire" value="2"', $context['poll_options']['hide'] == 2 ? ' checked' : '', empty($context['poll_options']['expire']) ? ' disabled' : '', ' class="input_radio"> <label for="poll_results_expire">', $txt['poll_results_after'], '</label>
  310. </dd>
  311. </dl>
  312. </fieldset>
  313. </div>';
  314. }
  315. // Show the actual posting area...
  316. echo '
  317. ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message');
  318. // If we're editing and displaying edit details, show a box where they can say why
  319. if (isset($context['editing']) && $settings['show_modify'])
  320. echo '
  321. <dl>
  322. <dt class="clear">
  323. <span id="caption_edit_reason">', $txt['reason_for_edit'], ':</span>
  324. </dt>
  325. <dd>
  326. <input type="text" name="modify_reason"', isset($context['last_modified_reason']) ? ' value="' . $context['last_modified_reason'] . '"' : '', ' tabindex="', $context['tabindex']++, '" size="80" maxlength="80" class="input_text">
  327. </dd>
  328. </dl>';
  329. // If this message has been edited in the past - display when it was.
  330. if (isset($context['last_modified']))
  331. echo '
  332. <div class="padding smalltext">
  333. ', $context['last_modified_text'], '
  334. </div>';
  335. // If the admin has enabled the hiding of the additional options - show a link and image for it.
  336. if (!empty($settings['additional_options_collapsable']))
  337. echo '
  338. <div id="postAdditionalOptionsHeader" class="title_bar">
  339. <h4 class="titlebg">
  340. <span id="postMoreExpand" class="toggle_up floatright" style="display: none;"></span> <strong><a href="#" id="postMoreExpandLink">', $context['can_post_attachment'] ? $txt['post_additionalopt_attach'] : $txt['post_additionalopt'], '</a></strong>
  341. </h4>
  342. </div>
  343. <div id="postAdditionalOptions">';
  344. // Display the check boxes for all the standard options - if they are available to the user!
  345. echo '
  346. <div id="postMoreOptions" class="smalltext">
  347. <ul class="post_options">
  348. ', $context['can_notify'] ? '<li><input type="hidden" name="notify" value="0"><label for="check_notify"><input type="checkbox" name="notify" id="check_notify"' . ($context['notify'] || !empty($options['auto_notify']) ? ' checked' : '') . ' value="1" class="input_check"> ' . $txt['notify_replies'] . '</label></li>' : '', '
  349. ', $context['can_lock'] ? '<li><input type="hidden" name="lock" value="0"><label for="check_lock"><input type="checkbox" name="lock" id="check_lock"' . ($context['locked'] ? ' checked' : '') . ' value="1" class="input_check"> ' . $txt['lock_topic'] . '</label></li>' : '', '
  350. <li><label for="check_back"><input type="checkbox" name="goback" id="check_back"' . ($context['back_to_topic'] || !empty($options['return_to_post']) ? ' checked' : '') . ' value="1" class="input_check"> ' . $txt['back_to_topic'] . '</label></li>
  351. ', $context['can_sticky'] ? '<li><input type="hidden" name="sticky" value="0"><label for="check_sticky"><input type="checkbox" name="sticky" id="check_sticky"' . ($context['sticky'] ? ' checked' : '') . ' value="1" class="input_check"> ' . $txt['sticky_after'] . '</label></li>' : '', '
  352. <li><label for="check_smileys"><input type="checkbox" name="ns" id="check_smileys"', $context['use_smileys'] ? '' : ' checked', ' value="NS" class="input_check"> ', $txt['dont_use_smileys'], '</label></li>', '
  353. ', $context['can_move'] ? '<li><input type="hidden" name="move" value="0"><label for="check_move"><input type="checkbox" name="move" id="check_move" value="1" class="input_check"' . (!empty($context['move']) ? ' checked" ' : '') . '> ' . $txt['move_after2'] . '</label></li>' : '', '
  354. ', $context['can_announce'] && $context['is_first_post'] ? '<li><label for="check_announce"><input type="checkbox" name="announce_topic" id="check_announce" value="1" class="input_check"' . (!empty($context['announce']) ? ' checked' : '') . '> ' . $txt['announce_topic'] . '</label></li>' : '', '
  355. ', $context['show_approval'] ? '<li><label for="approve"><input type="checkbox" name="approve" id="approve" value="2" class="input_check"' . ($context['show_approval'] === 2 ? ' checked' : '') . '> ' . $txt['approve_this_post'] . '</label></li>' : '', '
  356. </ul>
  357. </div>';
  358. // If this post already has attachments on it - give information about them.
  359. if (!empty($context['current_attachments']))
  360. {
  361. echo '
  362. <dl id="postAttachment">
  363. <dt>
  364. ', $txt['attached'], ':
  365. </dt>
  366. <dd class="smalltext" style="width: 100%;">
  367. <input type="hidden" name="attach_del[]" value="0">
  368. ', $txt['uncheck_unwatchd_attach'], ':
  369. </dd>';
  370. foreach ($context['current_attachments'] as $attachment)
  371. echo '
  372. <dd class="smalltext">
  373. <label for="attachment_', $attachment['id'], '"><input type="checkbox" id="attachment_', $attachment['id'], '" name="attach_del[]" value="', $attachment['id'], '"', empty($attachment['unchecked']) ? ' checked' : '', ' class="input_check"> ', $attachment['name'], (empty($attachment['approved']) ? ' (' . $txt['awaiting_approval'] . ')' : ''),
  374. !empty($modSettings['attachmentPostLimit']) || !empty($modSettings['attachmentSizeLimit']) ? sprintf($txt['attach_kb'], comma_format(round(max($attachment['size'], 1028) / 1028), 0)) : '', '</label>
  375. </dd>';
  376. echo '
  377. </dl>';
  378. if (!empty($context['files_in_session_warning']))
  379. echo '
  380. <div class="smalltext">', $context['files_in_session_warning'], '</div>';
  381. }
  382. // Is the user allowed to post any additional ones? If so give them the boxes to do it!
  383. if ($context['can_post_attachment'])
  384. {
  385. echo '
  386. <dl id="postAttachment2">';
  387. // But, only show them if they haven't reached a limit. Or a mod author hasn't hidden them.
  388. if ($context['num_allowed_attachments'] > 0 || !empty($context['dont_show_them']))
  389. {
  390. echo '
  391. <dt>
  392. ', $txt['attach'], ':
  393. </dt>
  394. <dd class="smalltext">
  395. ', empty($modSettings['attachmentSizeLimit']) ? '' : ('<input type="hidden" name="MAX_FILE_SIZE" value="' . $modSettings['attachmentSizeLimit'] * 1028 . '">'), '
  396. <input type="file" size="60" multiple="multiple" name="attachment[]" id="attachment1" class="input_file"> (<a href="javascript:void(0);" onclick="cleanFileInput(\'attachment1\');">', $txt['clean_attach'], '</a>)';
  397. // Show more boxes if they aren't approaching that limit.
  398. if ($context['num_allowed_attachments'] > 1)
  399. echo '
  400. <script><!-- // --><![CDATA[
  401. var allowed_attachments = ', $context['num_allowed_attachments'], ';
  402. var current_attachment = 1;
  403. function addAttachment()
  404. {
  405. allowed_attachments = allowed_attachments - 1;
  406. current_attachment = current_attachment + 1;
  407. if (allowed_attachments <= 0)
  408. return alert("', $txt['more_attachments_error'], '");
  409. setOuterHTML(document.getElementById("moreAttachments"), \'<dd class="smalltext"><input type="file" size="60" name="attachment[]" id="attachment\' + current_attachment + \'" class="input_file"> (<a href="javascript:void(0);" onclick="cleanFileInput(\\\'attachment\' + current_attachment + \'\\\');">', $txt['clean_attach'], '<\/a>)\' + \'<\/dd><dd class="smalltext" id="moreAttachments"><a href="#" onclick="addAttachment(); return false;">(', $txt['more_attachments'], ')<\' + \'/a><\' + \'/dd>\');
  410. return true;
  411. }
  412. // ]]></script>
  413. </dd>
  414. <dd class="smalltext" id="moreAttachments"><a href="#" onclick="addAttachment(); return false;">(', $txt['more_attachments'], ')</a></dd>';
  415. else
  416. echo '
  417. </dd>';
  418. }
  419. // Add any template changes for an alternative upload system here.
  420. call_integration_hook('integrate_upload_template');
  421. echo '
  422. <dd class="smalltext">';
  423. // Show some useful information such as allowed extensions, maximum size and amount of attachments allowed.
  424. if (!empty($modSettings['attachmentCheckExtensions']))
  425. echo '
  426. ', $txt['allowed_types'], ': ', $context['allowed_extensions'], '<br>';
  427. if (!empty($context['attachment_restrictions']))
  428. echo '
  429. ', $txt['attach_restrictions'], ' ', implode(', ', $context['attachment_restrictions']), '<br>';
  430. if ($context['num_allowed_attachments'] == 0)
  431. echo '
  432. ', $txt['attach_limit_nag'], '<br>';
  433. if (!$context['can_post_attachment_unapproved'])
  434. echo '
  435. <span class="alert">', $txt['attachment_requires_approval'], '</span>', '<br>';
  436. echo '
  437. </dd>
  438. </dl>';
  439. }
  440. echo '
  441. </div>';
  442. // If the admin enabled the drafts feature, show a draft selection box
  443. if (!empty($modSettings['drafts_post_enabled']) && !empty($context['drafts']) && !empty($options['drafts_show_saved_enabled']))
  444. {
  445. echo '
  446. <div id="postDraftOptionsHeader" class="title_bar">
  447. <h4 class="titlebg">
  448. <span id="postDraftExpand" class="toggle_up floatright" style="display: none;"></span> <strong><a href="#" id="postDraftExpandLink">', $txt['draft_load'], '</a></strong>
  449. </h4>
  450. </div>
  451. <div id="postDraftOptions">
  452. <dl class="settings">
  453. <dt><strong>', $txt['subject'], '</strong></dt>
  454. <dd><strong>', $txt['draft_saved_on'], '</strong></dd>';
  455. foreach ($context['drafts'] as $draft)
  456. echo '
  457. <dt>', $draft['link'], '</dt>
  458. <dd>', $draft['poster_time'], '</dd>';
  459. echo '
  460. </dl>
  461. </div>';
  462. }
  463. // Is visual verification enabled?
  464. if ($context['require_verification'])
  465. {
  466. echo '
  467. <div class="post_verification">
  468. <span', !empty($context['post_error']['need_qr_verification']) ? ' class="error"' : '', '>
  469. <strong>', $txt['verification'], ':</strong>
  470. </span>
  471. ', template_control_verification($context['visual_verification_id'], 'all'), '
  472. </div>';
  473. }
  474. // Finally, the submit buttons.
  475. echo '
  476. <br class="clear_right">
  477. <span id="post_confirm_buttons">
  478. ', template_control_richedit_buttons($context['post_box_name']);
  479. // Option to delete an event if user is editing one.
  480. if ($context['make_event'] && !$context['event']['new'])
  481. echo '
  482. <input type="submit" name="deleteevent" value="', $txt['event_delete'], '" onclick="return confirm(\'', $txt['event_delete_confirm'], '\');" class="button_submit">';
  483. echo '
  484. </span>
  485. </div>
  486. </div>
  487. <br class="clear">';
  488. // Assuming this isn't a new topic pass across the last message id.
  489. if (isset($context['topic_last_message']))
  490. echo '
  491. <input type="hidden" name="last_msg" value="', $context['topic_last_message'], '">';
  492. echo '
  493. <input type="hidden" name="additional_options" id="additional_options" value="', $context['show_additional_options'] ? '1' : '0', '">
  494. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  495. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '">
  496. </form>';
  497. echo '
  498. <script><!-- // --><![CDATA[';
  499. // The functions used to preview a posts without loading a new page.
  500. echo '
  501. var current_board = ', empty($context['current_board']) ? 'null' : $context['current_board'], ';
  502. var make_poll = ', $context['make_poll'] ? 'true' : 'false', ';
  503. var txt_preview_title = "', $txt['preview_title'], '";
  504. var txt_preview_fetch = "', $txt['preview_fetch'], '";
  505. var new_replies = new Array();
  506. var reply_counter = ', empty($counter) ? 0 : $counter, ';
  507. function previewPost()
  508. {';
  509. if (isBrowser('is_firefox'))
  510. echo '
  511. // Firefox doesn\'t render <marquee> that have been put it using javascript
  512. if (document.forms.postmodify.elements[', JavaScriptEscape($context['post_box_name']), '].value.indexOf(\'[move]\') != -1)
  513. {
  514. return submitThisOnce(document.forms.postmodify);
  515. }';
  516. echo '
  517. if (window.XMLHttpRequest)
  518. {
  519. // Opera didn\'t support setRequestHeader() before 8.01.
  520. if (\'opera\' in window)
  521. {
  522. var test = new XMLHttpRequest();
  523. if (!(\'setRequestHeader\' in test))
  524. return submitThisOnce(document.forms.postmodify);
  525. }
  526. // @todo Currently not sending poll options and option checkboxes.
  527. var x = new Array();
  528. var textFields = [\'subject\', ', JavaScriptEscape($context['post_box_name']), ', ', JavaScriptEscape($context['session_var']), ', \'icon\', \'guestname\', \'email\', \'evtitle\', \'question\', \'topic\'];
  529. var numericFields = [
  530. \'board\', \'topic\', \'last_msg\',
  531. \'eventid\', \'calendar\', \'year\', \'month\', \'day\',
  532. \'poll_max_votes\', \'poll_expire\', \'poll_change_vote\', \'poll_hide\'
  533. ];
  534. var checkboxFields = [
  535. \'ns\'
  536. ];
  537. for (var i = 0, n = textFields.length; i < n; i++)
  538. if (textFields[i] in document.forms.postmodify)
  539. {
  540. // Handle the WYSIWYG editor.
  541. if (textFields[i] == ', JavaScriptEscape($context['post_box_name']), ' && $("#', $context['post_box_name'], '").data("sceditor") != undefined)
  542. x[x.length] = textFields[i] + \'=\' + $("#', $context['post_box_name'], '").data("sceditor").getText().replace(/&#/g, \'&#38;#\').php_to8bit().php_urlencode();
  543. else
  544. x[x.length] = textFields[i] + \'=\' + document.forms.postmodify[textFields[i]].value.replace(/&#/g, \'&#38;#\').php_to8bit().php_urlencode();
  545. }
  546. for (var i = 0, n = numericFields.length; i < n; i++)
  547. if (numericFields[i] in document.forms.postmodify && \'value\' in document.forms.postmodify[numericFields[i]])
  548. x[x.length] = numericFields[i] + \'=\' + parseInt(document.forms.postmodify.elements[numericFields[i]].value);
  549. for (var i = 0, n = checkboxFields.length; i < n; i++)
  550. if (checkboxFields[i] in document.forms.postmodify && document.forms.postmodify.elements[checkboxFields[i]].checked)
  551. x[x.length] = checkboxFields[i] + \'=\' + document.forms.postmodify.elements[checkboxFields[i]].value;
  552. sendXMLDocument(smf_prepareScriptUrl(smf_scripturl) + \'action=post2\' + (current_board ? \';board=\' + current_board : \'\') + (make_poll ? \';poll\' : \'\') + \';preview;xml\', x.join(\'&\'), onDocSent);
  553. document.getElementById(\'preview_section\').style.display = \'\';
  554. setInnerHTML(document.getElementById(\'preview_subject\'), txt_preview_title);
  555. setInnerHTML(document.getElementById(\'preview_body\'), txt_preview_fetch);
  556. return false;
  557. }
  558. else
  559. return submitThisOnce(document.forms.postmodify);
  560. }
  561. function onDocSent(XMLDoc)
  562. {
  563. if (!XMLDoc)
  564. {
  565. document.forms.postmodify.preview.onclick = new function ()
  566. {
  567. return true;
  568. }
  569. document.forms.postmodify.preview.click();
  570. }
  571. // Show the preview section.
  572. var preview = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'preview\')[0];
  573. setInnerHTML(document.getElementById(\'preview_subject\'), preview.getElementsByTagName(\'subject\')[0].firstChild.nodeValue);
  574. var bodyText = \'\';
  575. for (var i = 0, n = preview.getElementsByTagName(\'body\')[0].childNodes.length; i < n; i++)
  576. bodyText += preview.getElementsByTagName(\'body\')[0].childNodes[i].nodeValue;
  577. setInnerHTML(document.getElementById(\'preview_body\'), bodyText);
  578. document.getElementById(\'preview_body\').className = \'post\';
  579. // Show a list of errors (if any).
  580. var errors = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'errors\')[0];
  581. var errorList = new Array();
  582. for (var i = 0, numErrors = errors.getElementsByTagName(\'error\').length; i < numErrors; i++)
  583. errorList[errorList.length] = errors.getElementsByTagName(\'error\')[i].firstChild.nodeValue;
  584. document.getElementById(\'errors\').style.display = numErrors == 0 ? \'none\' : \'\';
  585. document.getElementById(\'errors\').className = errors.getAttribute(\'serious\') == 1 ? \'errorbox\' : \'noticebox\';
  586. document.getElementById(\'error_serious\').style.display = numErrors == 0 ? \'none\' : \'\';
  587. setInnerHTML(document.getElementById(\'error_list\'), numErrors == 0 ? \'\' : errorList.join(\'<br>\'));
  588. // Show a warning if the topic has been locked.
  589. document.getElementById(\'lock_warning\').style.display = errors.getAttribute(\'topic_locked\') == 1 ? \'\' : \'none\';
  590. // Adjust the color of captions if the given data is erroneous.
  591. var captions = errors.getElementsByTagName(\'caption\');
  592. for (var i = 0, numCaptions = errors.getElementsByTagName(\'caption\').length; i < numCaptions; i++)
  593. if (document.getElementById(\'caption_\' + captions[i].getAttribute(\'name\')))
  594. document.getElementById(\'caption_\' + captions[i].getAttribute(\'name\')).className = captions[i].getAttribute(\'class\');
  595. if (errors.getElementsByTagName(\'post_error\').length == 1)
  596. document.forms.postmodify.', $context['post_box_name'], '.style.border = \'1px solid red\';
  597. else if (document.forms.postmodify.', $context['post_box_name'], '.style.borderColor == \'red\' || document.forms.postmodify.', $context['post_box_name'], '.style.borderColor == \'red red red red\')
  598. {
  599. if (\'runtimeStyle\' in document.forms.postmodify.', $context['post_box_name'], ')
  600. document.forms.postmodify.', $context['post_box_name'], '.style.borderColor = \'\';
  601. else
  602. document.forms.postmodify.', $context['post_box_name'], '.style.border = null;
  603. }
  604. // Set the new last message id.
  605. if (\'last_msg\' in document.forms.postmodify)
  606. document.forms.postmodify.last_msg.value = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'last_msg\')[0].firstChild.nodeValue;
  607. // Remove the new image from old-new replies!
  608. for (i = 0; i < new_replies.length; i++)
  609. document.getElementById(\'image_new_\' + new_replies[i]).style.display = \'none\';
  610. new_replies = new Array();
  611. var ignored_replies = new Array(), ignoring;
  612. var newPosts = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'new_posts\')[0] ? XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'new_posts\')[0].getElementsByTagName(\'post\') : {length: 0};
  613. var numNewPosts = newPosts.length;
  614. if (numNewPosts != 0)
  615. {
  616. var newPostsHTML = \'<span id="new_replies"><\' + \'/span>\';
  617. for (var i = 0; i < numNewPosts; i++)
  618. {
  619. new_replies[new_replies.length] = newPosts[i].getAttribute("id");
  620. ignoring = false;
  621. if (newPosts[i].getElementsByTagName("is_ignored")[0].firstChild.nodeValue != 0)
  622. ignored_replies[ignored_replies.length] = ignoring = newPosts[i].getAttribute("id");
  623. newPostsHTML += \'<div class="windowbg\' + (++reply_counter % 2 == 0 ? \'2\' : \'\') + \' core_posts"><div class="content" id="msg\' + newPosts[i].getAttribute("id") + \'"><div class="floatleft"><h5>', $txt['posted_by'], ': \' + newPosts[i].getElementsByTagName("poster")[0].firstChild.nodeValue + \'</h5><span class="smalltext">&#171;&nbsp;<strong>', $txt['on'], ':</strong> \' + newPosts[i].getElementsByTagName("time")[0].firstChild.nodeValue + \'&nbsp;&#187;</span> <span class="new_posts" id="image_new_\' + newPosts[i].getAttribute("id") + \'">', $txt['new'], '</span></div>\';';
  624. if ($context['can_quote'])
  625. echo '
  626. newPostsHTML += \'<ul class="reset smalltext quickbuttons" id="msg_\' + newPosts[i].getAttribute("id") + \'_quote"><li><a href="#postmodify" onclick="return insertQuoteFast(\\\'\' + newPosts[i].getAttribute("id") + \'\\\');" class="quote_button"><span>', $txt['quote'], '</span><\' + \'/a></li></ul>\';';
  627. echo '
  628. newPostsHTML += \'<br class="clear">\';
  629. if (ignoring)
  630. newPostsHTML += \'<div id="msg_\' + newPosts[i].getAttribute("id") + \'_ignored_prompt" class="smalltext">', $txt['ignoring_user'], '<a href="#" id="msg_\' + newPosts[i].getAttribute("id") + \'_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a></div>\';
  631. newPostsHTML += \'<div class="list_posts smalltext" id="msg_\' + newPosts[i].getAttribute("id") + \'_body">\' + newPosts[i].getElementsByTagName("message")[0].firstChild.nodeValue + \'<\' + \'/div></div></div>\';
  632. }
  633. setOuterHTML(document.getElementById(\'new_replies\'), newPostsHTML);
  634. }
  635. var numIgnoredReplies = ignored_replies.length;
  636. if (numIgnoredReplies != 0)
  637. {
  638. for (var i = 0; i < numIgnoredReplies; i++)
  639. {
  640. aIgnoreToggles[ignored_replies[i]] = new smc_Toggle({
  641. bToggleEnabled: true,
  642. bCurrentlyCollapsed: true,
  643. aSwappableContainers: [
  644. \'msg_\' + ignored_replies[i] + \'_body\',
  645. \'msg_\' + ignored_replies[i] + \'_quote\',
  646. ],
  647. aSwapLinks: [
  648. {
  649. sId: \'msg_\' + ignored_replies[i] + \'_ignored_link\',
  650. msgExpanded: \'\',
  651. msgCollapsed: ', JavaScriptEscape($txt['show_ignore_user_post']), '
  652. }
  653. ]
  654. });
  655. }
  656. }
  657. location.hash = \'#\' + \'preview_section\';
  658. if (typeof(smf_codeFix) != \'undefined\')
  659. smf_codeFix();
  660. }';
  661. // Code for showing and hiding additional options.
  662. if (!empty($settings['additional_options_collapsable']))
  663. echo '
  664. var oSwapAdditionalOptions = new smc_Toggle({
  665. bToggleEnabled: true,
  666. bCurrentlyCollapsed: ', $context['show_additional_options'] ? 'false' : 'true', ',
  667. funcOnBeforeCollapse: function () {
  668. document.getElementById(\'additional_options\').value = \'0\';
  669. },
  670. funcOnBeforeExpand: function () {
  671. document.getElementById(\'additional_options\').value = \'1\';
  672. },
  673. aSwappableContainers: [
  674. \'postAdditionalOptions\',
  675. ],
  676. aSwapImages: [
  677. {
  678. sId: \'postMoreExpand\',
  679. altExpanded: \'-\',
  680. altCollapsed: \'+\'
  681. }
  682. ],
  683. aSwapLinks: [
  684. {
  685. sId: \'postMoreExpandLink\',
  686. msgExpanded: ', JavaScriptEscape($context['can_post_attachment'] ? $txt['post_additionalopt_attach'] : $txt['post_additionalopt']), ',
  687. msgCollapsed: ', JavaScriptEscape($context['can_post_attachment'] ? $txt['post_additionalopt_attach'] : $txt['post_additionalopt']), '
  688. }
  689. ]
  690. });';
  691. // Code for showing and hiding drafts
  692. if (!empty($context['drafts']))
  693. echo '
  694. var oSwapDraftOptions = new smc_Toggle({
  695. bToggleEnabled: true,
  696. bCurrentlyCollapsed: true,
  697. aSwappableContainers: [
  698. \'postDraftOptions\',
  699. ],
  700. aSwapImages: [
  701. {
  702. sId: \'postDraftExpand\',
  703. altExpanded: \'-\',
  704. altCollapsed: \'+\'
  705. }
  706. ],
  707. aSwapLinks: [
  708. {
  709. sId: \'postDraftExpandLink\',
  710. msgExpanded: ', JavaScriptEscape($txt['draft_hide']), ',
  711. msgCollapsed: ', JavaScriptEscape($txt['draft_load']), '
  712. }
  713. ]
  714. });';
  715. echo '
  716. // ]]></script>';
  717. // If the user is replying to a topic show the previous posts.
  718. if (isset($context['previous_posts']) && count($context['previous_posts']) > 0)
  719. {
  720. echo '
  721. <div id="recent" class="flow_hidden main_section">
  722. <div class="cat_bar">
  723. <h3 class="catbg">', $txt['topic_summary'], '</h3>
  724. </div>
  725. <span id="new_replies"></span>';
  726. $ignored_posts = array();
  727. foreach ($context['previous_posts'] as $post)
  728. {
  729. $ignoring = false;
  730. if (!empty($post['is_ignored']))
  731. $ignored_posts[] = $ignoring = $post['id'];
  732. echo '
  733. <div class="', $post['alternate'] == 0 ? 'windowbg' : 'windowbg2', ' core_posts">
  734. <div class="content" id="msg', $post['id'], '">
  735. <h5 class="floatleft">
  736. <span>', $txt['posted_by'], '</span>&nbsp;', $post['poster'], '
  737. </h5>&nbsp;-&nbsp;', $post['time'];
  738. if ($context['can_quote'])
  739. {
  740. echo '
  741. <ul class="quickbuttons" id="msg_', $post['id'], '_quote">
  742. <li><a href="#postmodify" onclick="return insertQuoteFast(', $post['id'], ');" class="quote_button">', $txt['quote'], '</a></li>
  743. </ul>';
  744. }
  745. echo '
  746. <br class="clear">';
  747. if ($ignoring)
  748. {
  749. echo '
  750. <div id="msg_', $post['id'], '_ignored_prompt" class="smalltext">
  751. ', $txt['ignoring_user'], '
  752. <a href="#" id="msg_', $post['id'], '_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a>
  753. </div>';
  754. }
  755. echo '
  756. <div class="list_posts smalltext" id="msg_', $post['id'], '_body">', $post['message'], '</div>
  757. </div>
  758. </div>';
  759. }
  760. echo '
  761. </div>
  762. <script><!-- // --><![CDATA[
  763. var aIgnoreToggles = new Array();';
  764. foreach ($ignored_posts as $post_id)
  765. {
  766. echo '
  767. aIgnoreToggles[', $post_id, '] = new smc_Toggle({
  768. bToggleEnabled: true,
  769. bCurrentlyCollapsed: true,
  770. aSwappableContainers: [
  771. \'msg_', $post_id, '_body\',
  772. \'msg_', $post_id, '_quote\',
  773. ],
  774. aSwapLinks: [
  775. {
  776. sId: \'msg_', $post_id, '_ignored_link\',
  777. msgExpanded: \'\',
  778. msgCollapsed: ', JavaScriptEscape($txt['show_ignore_user_post']), '
  779. }
  780. ]
  781. });';
  782. }
  783. echo '
  784. function insertQuoteFast(messageid)
  785. {
  786. if (window.XMLHttpRequest)
  787. getXMLDocument(smf_prepareScriptUrl(smf_scripturl) + \'action=quotefast;quote=\' + messageid + \';xml;pb=', $context['post_box_name'], ';mode=0\', onDocReceived);
  788. else
  789. reqWin(smf_prepareScriptUrl(smf_scripturl) + \'action=quotefast;quote=\' + messageid + \';pb=', $context['post_box_name'], ';mode=0\', 240, 90);
  790. return true;
  791. }
  792. function onDocReceived(XMLDoc)
  793. {
  794. var text = \'\';
  795. for (var i = 0, n = XMLDoc.getElementsByTagName(\'quote\')[0].childNodes.length; i < n; i++)
  796. text += XMLDoc.getElementsByTagName(\'quote\')[0].childNodes[i].nodeValue;
  797. $("#', $context['post_box_name'], '").data("sceditor").InsertText(text);
  798. }
  799. function onReceiveOpener(text)
  800. {
  801. $("#', $context['post_box_name'], '").data("sceditor").InsertText(text);
  802. }
  803. // ]]></script>';
  804. }
  805. }
  806. // The template for the spellchecker.
  807. function template_spellcheck()
  808. {
  809. global $context, $settings, $txt;
  810. // The style information that makes the spellchecker look... like the forum hopefully!
  811. echo '<!DOCTYPE html>
  812. <html', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  813. <head>
  814. <title>', $txt['spell_check'], '</title>
  815. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '">
  816. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?alp21">
  817. <style type="text/css">
  818. body, td
  819. {
  820. font-size: small;
  821. margin: 0;
  822. background: #f0f0f0;
  823. color: #000;
  824. padding: 10px;
  825. }
  826. .highlight
  827. {
  828. color: red;
  829. font-weight: bold;
  830. }
  831. #spellview
  832. {
  833. border-style: outset;
  834. border: 1px solid black;
  835. padding: 5px;
  836. width: 95%;
  837. height: 314px;
  838. overflow: auto;
  839. background: #ffffff;
  840. }';
  841. // As you may expect - we need a lot of javascript for this... load it form the separate files.
  842. echo '
  843. </style>
  844. <script><!-- // --><![CDATA[
  845. var spell_formname = window.opener.spell_formname;
  846. var spell_fieldname = window.opener.spell_fieldname;
  847. // ]]></script>
  848. <script src="', $settings['default_theme_url'], '/scripts/spellcheck.js"></script>
  849. <script src="', $settings['default_theme_url'], '/scripts/script.js"></script>
  850. <script><!-- // --><![CDATA[
  851. ', $context['spell_js'], '
  852. // ]]></script>
  853. </head>
  854. <body onload="nextWord(false);">
  855. <form action="#" method="post" accept-charset="', $context['character_set'], '" name="spellingForm" id="spellingForm" onsubmit="return false;" style="margin: 0;">
  856. <div id="spellview">&nbsp;</div>
  857. <table border="0" cellpadding="4" cellspacing="0" width="100%"><tr class="windowbg">
  858. <td style="width: 50%; vertical-align: top">
  859. ', $txt['spellcheck_change_to'], '<br>
  860. <input type="text" name="changeto" style="width: 98%;" class="input_text">
  861. </td>
  862. <td style="width: 50%">
  863. ', $txt['spellcheck_suggest'], '<br>
  864. <select name="suggestions" style="width: 98%;" size="5" onclick="if (this.selectedIndex != -1) this.form.changeto.value = this.options[this.selectedIndex].text;" ondblclick="replaceWord();">
  865. </select>
  866. </td>
  867. </tr></table>
  868. <div class="righttext" style="padding: 4px;">
  869. <input type="button" name="change" value="', $txt['spellcheck_change'], '" onclick="replaceWord();" class="button_submit">
  870. <input type="button" name="changeall" value="', $txt['spellcheck_change_all'], '" onclick="replaceAll();" class="button_submit">
  871. <input type="button" name="ignore" value="', $txt['spellcheck_ignore'], '" onclick="nextWord(false);" class="button_submit">
  872. <input type="button" name="ignoreall" value="', $txt['spellcheck_ignore_all'], '" onclick="nextWord(true);" class="button_submit">
  873. </div>
  874. </form>
  875. </body>
  876. </html>';
  877. }
  878. function template_quotefast()
  879. {
  880. global $context, $settings, $txt;
  881. echo '<!DOCTYPE html>
  882. <html', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  883. <head>
  884. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '">
  885. <title>', $txt['retrieving_quote'], '</title>
  886. <script src="', $settings['default_theme_url'], '/scripts/script.js"></script>
  887. </head>
  888. <body>
  889. ', $txt['retrieving_quote'], '
  890. <div id="temporary_posting_area" style="display: none;"></div>
  891. <script><!-- // --><![CDATA[';
  892. if ($context['close_window'])
  893. echo '
  894. window.close();';
  895. else
  896. {
  897. // Lucky for us, Internet Explorer has an "innerText" feature which basically converts entities <--> text. Use it if possible ;).
  898. echo '
  899. var quote = \'', $context['quote']['text'], '\';
  900. var stage = \'createElement\' in document ? document.createElement("DIV") : document.getElementById("temporary_posting_area");
  901. if (\'DOMParser\' in window && !(\'opera\' in window))
  902. {
  903. var xmldoc = new DOMParser().parseFromString("<temp>" + \'', $context['quote']['mozilla'], '\'.replace(/\n/g, "_SMF-BREAK_").replace(/\t/g, "_SMF-TAB_") + "</temp>", "text/xml");
  904. quote = xmldoc.childNodes[0].textContent.replace(/_SMF-BREAK_/g, "\n").replace(/_SMF-TAB_/g, "\t");
  905. }
  906. else if (\'innerText\' in stage)
  907. {
  908. setInnerHTML(stage, quote.replace(/\n/g, "_SMF-BREAK_").replace(/\t/g, "_SMF-TAB_").replace(/</g, "&lt;").replace(/>/g, "&gt;"));
  909. quote = stage.innerText.replace(/_SMF-BREAK_/g, "\n").replace(/_SMF-TAB_/g, "\t");
  910. }
  911. if (\'opera\' in window)
  912. quote = quote.replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&quot;/g, \'"\').replace(/&amp;/g, "&");
  913. window.opener.onReceiveOpener(quote);
  914. window.focus();
  915. setTimeout("window.close();", 400);';
  916. }
  917. echo '
  918. // ]]></script>
  919. </body>
  920. </html>';
  921. }
  922. function template_announce()
  923. {
  924. global $context, $txt, $scripturl;
  925. echo '
  926. <div id="announcement">
  927. <form action="', $scripturl, '?action=announce;sa=send" method="post" accept-charset="', $context['character_set'], '">
  928. <div class="cat_bar">
  929. <h3 class="catbg">', $txt['announce_title'], '</h3>
  930. </div>
  931. <div class="information">
  932. ', $txt['announce_desc'], '
  933. </div>
  934. <div class="windowbg2">
  935. <div class="content">
  936. <p>
  937. ', $txt['announce_this_topic'], ' <a href="', $scripturl, '?topic=', $context['current_topic'], '.0">', $context['topic_subject'], '</a>
  938. </p>
  939. <ul class="reset">';
  940. foreach ($context['groups'] as $group)
  941. echo '
  942. <li>
  943. <label for="who_', $group['id'], '"><input type="checkbox" name="who[', $group['id'], ']" id="who_', $group['id'], '" value="', $group['id'], '" checked class="input_check"> ', $group['name'], '</label> <em>(', $group['member_count'], ')</em>
  944. </li>';
  945. echo '
  946. <li>
  947. <label for="checkall"><input type="checkbox" id="checkall" class="input_check" onclick="invertAll(this, this.form);" checked> <em>', $txt['check_all'], '</em></label>
  948. </li>
  949. </ul>
  950. <hr class="hrcolor">
  951. <div id="confirm_buttons">
  952. <input type="submit" value="', $txt['post'], '" class="button_submit">
  953. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  954. <input type="hidden" name="topic" value="', $context['current_topic'], '">
  955. <input type="hidden" name="move" value="', $context['move'], '">
  956. <input type="hidden" name="goback" value="', $context['go_back'], '">
  957. </div>
  958. </div>
  959. <br class="clear_right">
  960. </div>
  961. </form>
  962. </div>
  963. <br>';
  964. }
  965. function template_announcement_send()
  966. {
  967. global $context, $txt, $scripturl;
  968. echo '
  969. <div id="announcement">
  970. <form action="' . $scripturl . '?action=announce;sa=send" method="post" accept-charset="', $context['character_set'], '" name="autoSubmit" id="autoSubmit">
  971. <div class="windowbg2">
  972. <div class="content">
  973. <p>', $txt['announce_sending'], ' <a href="', $scripturl, '?topic=', $context['current_topic'], '.0" target="_blank" class="new_win">', $context['topic_subject'], '</a></p>
  974. <div class="progress_bar">
  975. <div class="full_bar">', $context['percentage_done'], '% ', $txt['announce_done'], '</div>
  976. <div class="green_percent" style="width: ', $context['percentage_done'], '%;">&nbsp;</div>
  977. </div>
  978. <hr class="hrcolor">
  979. <div id="confirm_buttons">
  980. <input type="submit" name="b" value="', $txt['announce_continue'], '" class="button_submit">
  981. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  982. <input type="hidden" name="topic" value="', $context['current_topic'], '">
  983. <input type="hidden" name="move" value="', $context['move'], '">
  984. <input type="hidden" name="goback" value="', $context['go_back'], '">
  985. <input type="hidden" name="start" value="', $context['start'], '">
  986. <input type="hidden" name="membergroups" value="', $context['membergroups'], '">
  987. </div>
  988. </div>
  989. <br class="clear_right">
  990. </div>
  991. </form>
  992. </div>
  993. <br>
  994. <script><!-- // --><![CDATA[
  995. var countdown = 2;
  996. doAutoSubmit();
  997. function doAutoSubmit()
  998. {
  999. if (countdown == 0)
  1000. document.forms.autoSubmit.submit();
  1001. else if (countdown == -1)
  1002. return;
  1003. document.forms.autoSubmit.b.value = "', $txt['announce_continue'], ' (" + countdown + ")";
  1004. countdown--;
  1005. setTimeout("doAutoSubmit();", 1000);
  1006. }
  1007. // ]]></script>';
  1008. }
  1009. ?>