Post.template.php 48 KB

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