Display.template.php 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2013 Simple Machines and individual contributors
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. function template_main()
  13. {
  14. global $context, $settings, $options, $txt, $scripturl, $modSettings;
  15. // Let them know, if their report was a success!
  16. if ($context['report_sent'])
  17. {
  18. echo '
  19. <div class="infobox">
  20. ', $txt['report_sent'], '
  21. </div>';
  22. }
  23. // Topic was sent successfully
  24. elseif ($context['topic_sent'])
  25. {
  26. echo '
  27. <div class="infobox">
  28. ', $txt['topic_sent'], '
  29. </div>';
  30. }
  31. // Show the anchor for the top and for the first message. If the first message is new, say so.
  32. echo '
  33. <a id="msg', $context['first_message'], '"></a>', $context['first_new_message'] ? '<a id="new"></a>' : '';
  34. // Is this topic also a poll?
  35. if ($context['is_poll'])
  36. {
  37. echo '
  38. <div id="poll">
  39. <div class="cat_bar">
  40. <h3 class="catbg">
  41. <img src="', $settings['images_url'], '/topic/', $context['poll']['is_locked'] ? 'normal_poll_locked' : 'normal_poll', '.png" alt="" class="icon" /> ', $txt['poll'], '
  42. </h3>
  43. </div>
  44. <div class="windowbg">
  45. <div class="content" id="poll_options">
  46. <h4 id="pollquestion">
  47. ', $context['poll']['question'], '
  48. </h4>';
  49. // Are they not allowed to vote but allowed to view the options?
  50. if ($context['poll']['show_results'] || !$context['allow_vote'])
  51. {
  52. echo '
  53. <dl class="options">';
  54. // Show each option with its corresponding percentage bar.
  55. foreach ($context['poll']['options'] as $option)
  56. {
  57. echo '
  58. <dt class="', $option['voted_this'] ? ' voted' : '', '">', $option['option'], '</dt>
  59. <dd class="statsbar', $option['voted_this'] ? ' voted' : '', '">';
  60. if ($context['allow_poll_view'])
  61. echo '
  62. ', $option['bar_ndt'], '
  63. <span class="percentage">', $option['votes'], ' (', $option['percent'], '%)</span>';
  64. echo '
  65. </dd>';
  66. }
  67. echo '
  68. </dl>';
  69. if ($context['allow_poll_view'])
  70. echo '
  71. <p><strong>', $txt['poll_total_voters'], ':</strong> ', $context['poll']['total_votes'], '</p>';
  72. }
  73. // They are allowed to vote! Go to it!
  74. else
  75. {
  76. echo '
  77. <form action="', $scripturl, '?action=vote;topic=', $context['current_topic'], '.', $context['start'], ';poll=', $context['poll']['id'], '" method="post" accept-charset="', $context['character_set'], '">';
  78. // Show a warning if they are allowed more than one option.
  79. if ($context['poll']['allowed_warning'])
  80. echo '
  81. <p class="smallpadding">', $context['poll']['allowed_warning'], '</p>';
  82. echo '
  83. <ul class="reset options">';
  84. // Show each option with its button - a radio likely.
  85. foreach ($context['poll']['options'] as $option)
  86. echo '
  87. <li>', $option['vote_button'], ' <label for="', $option['id'], '">', $option['option'], '</label></li>';
  88. echo '
  89. </ul>
  90. <div class="submitbutton">
  91. <input type="submit" value="', $txt['poll_vote'], '" class="button_submit" />
  92. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  93. </div>
  94. </form>';
  95. }
  96. // Is the clock ticking?
  97. if (!empty($context['poll']['expire_time']))
  98. echo '
  99. <p><strong>', ($context['poll']['is_expired'] ? $txt['poll_expired_on'] : $txt['poll_expires_on']), ':</strong> ', $context['poll']['expire_time'], '</p>';
  100. echo '
  101. </div>
  102. </div>
  103. </div>
  104. <div id="pollmoderation">';
  105. template_button_strip($context['poll_buttons']);
  106. echo '
  107. </div>';
  108. }
  109. // Does this topic have some events linked to it?
  110. if (!empty($context['linked_calendar_events']))
  111. {
  112. echo '
  113. <div class="linked_events">
  114. <div class="title_bar">
  115. <h3 class="titlebg headerpadding">', $txt['calendar_linked_events'], '</h3>
  116. </div>
  117. <div class="windowbg">
  118. <div class="content">
  119. <ul class="reset">';
  120. foreach ($context['linked_calendar_events'] as $event)
  121. echo '
  122. <li>
  123. ', ($event['can_edit'] ? '<a href="' . $event['modify_href'] . '"> <img src="' . $settings['images_url'] . '/icons/calendar_modify.png" alt="" title="' . $txt['modify'] . '" class="edit_event" /></a> ' : ''), '<strong>', $event['title'], '</strong>: ', $event['start_date'], ($event['start_date'] != $event['end_date'] ? ' - ' . $event['end_date'] : ''), '
  124. </li>';
  125. echo '
  126. </ul>
  127. </div>
  128. </div>
  129. </div>';
  130. }
  131. // Show the page index... "Pages: [1]".
  132. echo '
  133. <div class="pagesection">
  134. ', template_button_strip($context['normal_buttons'], 'right'), '
  135. ', !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . '<a href="#bot" class="topbottom floatleft">' . $txt['go_down'] . '</a>' : '', '
  136. <div class="pagelinks floatleft">
  137. ', $context['page_index'], '
  138. </div>
  139. </div>';
  140. // Show the topic information - icon, subject, etc.
  141. echo '
  142. <div id="forumposts">
  143. <div class="cat_bar">
  144. <h3 class="catbg">
  145. <img src="', $settings['images_url'], '/topic/', $context['class'], '.png" alt="" />
  146. <span id="top_subject">', $txt['topic'], ': ', $context['subject'], '&nbsp;<span>(', $context['num_views_text'], ')</span></span>
  147. <span class="nextlinks floatright">', $context['previous_next'], '</span>
  148. </h3>
  149. </div>';
  150. if (!empty($settings['display_who_viewing']))
  151. {
  152. echo '
  153. <p id="whoisviewing">';
  154. // Show just numbers...?
  155. if ($settings['display_who_viewing'] == 1)
  156. echo count($context['view_members']), ' ', count($context['view_members']) == 1 ? $txt['who_member'] : $txt['members'];
  157. // Or show the actual people viewing the topic?
  158. else
  159. echo empty($context['view_members_list']) ? '0 ' . $txt['members'] : implode(', ', $context['view_members_list']) . ((empty($context['view_num_hidden']) || $context['can_moderate_forum']) ? '' : ' (+ ' . $context['view_num_hidden'] . ' ' . $txt['hidden'] . ')');
  160. // Now show how many guests are here too.
  161. echo $txt['who_and'], $context['view_num_guests'], ' ', $context['view_num_guests'] == 1 ? $txt['guest'] : $txt['guests'], $txt['who_viewing_topic'], '
  162. </p>';
  163. }
  164. echo '
  165. <form action="', $scripturl, '?action=quickmod2;topic=', $context['current_topic'], '.', $context['start'], '" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\') : false">';
  166. $ignoredMsgs = array();
  167. $removableMessageIDs = array();
  168. $alternate = false;
  169. // Get all the messages...
  170. while ($message = $context['get_message']())
  171. {
  172. $ignoring = false;
  173. $alternate = !$alternate;
  174. if ($message['can_remove'])
  175. $removableMessageIDs[] = $message['id'];
  176. // Are we ignoring this message?
  177. if (!empty($message['is_ignored']))
  178. {
  179. $ignoring = true;
  180. $ignoredMsgs[] = $message['id'];
  181. }
  182. // Show the message anchor and a "new" anchor if this message is new.
  183. echo '
  184. <div class="', $message['approved'] ? ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') : 'approvebg', '">', $message['id'] != $context['first_message'] ? '
  185. <a id="msg' . $message['id'] . '"></a>' . ($message['first_new'] ? '<a id="new"></a>' : '') : '', '
  186. <div class="post_wrapper">';
  187. // Show information about the poster of this message.
  188. echo '
  189. <div class="poster">
  190. <ul class="dropmenu">
  191. <li>
  192. <h4>';
  193. // Show a link to the member's profile.
  194. echo '
  195. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
  196. <span style="padding: 6px; display: block;">', $message['member']['name'], '</span>
  197. </a>
  198. </h4>';
  199. // [WIP] The new member info dropdown starts here. Note that conditionals have not been fully checked yet.
  200. echo '
  201. <ul class="smalltext" id="msg_', $message['id'], '_extra_info"', $ignoring ? ' style="display:none;"' : '', '>';
  202. // Don't show these things for guests.
  203. if (!$message['member']['is_guest'])
  204. {
  205. // Show the post group if and only if they have no other group or the option is on, and they are in a post group.
  206. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  207. echo '
  208. <li class="postgroup">', $message['member']['post_group'], '</li>';
  209. // Show how many posts they have made.
  210. if (!isset($context['disabled_fields']['posts']))
  211. echo '
  212. <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
  213. // Is karma display enabled? Total or +/-?
  214. if ($modSettings['karmaMode'] == '1')
  215. echo '
  216. <li class="karma">', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
  217. elseif ($modSettings['karmaMode'] == '2')
  218. echo '
  219. <li class="karma">', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';
  220. // Is this user allowed to modify this member's karma?
  221. if ($message['member']['karma']['allow'])
  222. echo '
  223. <li class="karma_allow">
  224. <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.' . $context['start'], ';m=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a>
  225. <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';m=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a>
  226. </li>';
  227. // Show the member's gender icon?
  228. if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
  229. echo '
  230. <li class="gender">', $txt['gender'], ': ', $message['member']['gender']['image'], '</li>';
  231. // Show their personal text?
  232. if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
  233. echo '
  234. <li class="blurb">', $message['member']['blurb'], '</li>';
  235. // Any custom fields to show as icons?
  236. if (!empty($message['member']['custom_fields']))
  237. {
  238. $shown = false;
  239. foreach ($message['member']['custom_fields'] as $custom)
  240. {
  241. if ($custom['placement'] != 1 || empty($custom['value']))
  242. continue;
  243. if (empty($shown))
  244. {
  245. $shown = true;
  246. echo '
  247. <li class="im_icons">
  248. <ol>';
  249. }
  250. echo '
  251. <li>', $custom['value'], '</li>';
  252. }
  253. if ($shown)
  254. echo '
  255. </ol>
  256. </li>';
  257. }
  258. // This shows the popular messaging icons.
  259. if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
  260. echo '
  261. <li class="im_icons">
  262. <hr />
  263. <ol>
  264. ', !empty($message['member']['icq']['link']) ? '<li>' . $message['member']['icq']['link'] . '</li>' : '', '
  265. ', !empty($message['member']['skype']['link']) ? '<li>' . $message['member']['skype']['link'] . '</li>' : '', '
  266. ', !empty($message['member']['aim']['link']) ? '<li>' . $message['member']['aim']['link'] . '</li>' : '', '
  267. ', !empty($message['member']['yim']['link']) ? '<li>' . $message['member']['yim']['link'] . '</li>' : '', '
  268. </ol>
  269. </li>';
  270. // Show the website and email address buttons.
  271. if ($message['member']['show_profile_buttons'])
  272. {
  273. echo '
  274. <li class="profile">
  275. <ol>';
  276. // Don't show an icon if they haven't specified a website.
  277. if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
  278. echo '
  279. <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/www_sm.png" alt="' . $message['member']['website']['title'] . '" />' : $txt['www']), '</a></li>';
  280. // Don't show the email address if they want it hidden.
  281. if (in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')) && $context['can_send_email'])
  282. echo '
  283. <li><a href="', $scripturl, '?action=emailuser;sa=email;msg=', $message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.png" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
  284. echo '
  285. </ol>
  286. </li>';
  287. }
  288. // Any custom fields for standard placement?
  289. if (!empty($message['member']['custom_fields']))
  290. {
  291. foreach ($message['member']['custom_fields'] as $custom)
  292. if (empty($custom['placement']) || empty($custom['value']))
  293. echo '
  294. <li class="custom">', $custom['title'], ': ', $custom['value'], '</li>';
  295. }
  296. }
  297. // Otherwise, show the guest's email.
  298. elseif (!empty($message['member']['email']) && in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')) && $context['can_send_email'])
  299. echo '
  300. <li class="email"><a href="', $scripturl, '?action=emailuser;sa=email;msg=', $message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.png" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
  301. // Stuff for the staff to wallop them with.
  302. echo '
  303. <li style="height: 2px; background: #ccc; box-shadow: 0 -1px 0 #fff inset;"></li>';
  304. //echo '
  305. // <img class="centericon" src="', $settings['images_url'], '/ip.png" alt="" />';
  306. // Show the IP to this user for this post - because you can moderate?
  307. if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
  308. echo '
  309. <li class="poster_ip"><a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a></li>';
  310. // Or, should we show it because this is you?
  311. elseif ($message['can_see_ip'])
  312. echo '
  313. <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a></li>';
  314. // Okay, are you at least logged in? Then we can show something about why IPs are logged...
  315. elseif (!$context['user']['is_guest'])
  316. echo '
  317. <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a></li>';
  318. // Otherwise, you see NOTHING!
  319. else
  320. echo '
  321. <li class="poster_ip">', $txt['logged'], '</li>';
  322. // Done with the popup of information about the poster... on to the post itself.
  323. echo '
  324. </ul>
  325. </li>';
  326. // Show the user's avatar.
  327. if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
  328. echo '
  329. <li class="avatar">
  330. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a>
  331. </li>';
  332. // Show the post group icons, but not for guests.
  333. if (!$message['member']['is_guest'])
  334. echo '
  335. <li class="icons">', $message['member']['group_icons'], '</li>';
  336. // Show the member's primary group (like 'Administrator') if they have one.
  337. if (!empty($message['member']['group']))
  338. echo '
  339. <li class="membergroup">', $message['member']['group'], '</li>';
  340. // Show the member's custom title, if they have one.
  341. if (!empty($message['member']['title']))
  342. echo '
  343. <li class="title">', $message['member']['title'], '</li>';
  344. // Show online and offline buttons? PHP could do with a little bit of cleaning up here for brevity, but it works.
  345. // The plan is to make these buttons act sensibly, and link to your own inbox in your own posts (with new PM notification).
  346. // Still has a little bit of hard-coded text. This may be a place where translators should be able to write inclusive strings,
  347. // instead of dealing with $txt['by'] etc in the markup. Must be brief to work, anyway. Cannot ramble on at all.
  348. if ($context['can_send_pm'] && $message['is_message_author'])
  349. {
  350. echo '
  351. <li class="poster_online"><a href="', $scripturl,'?action=pm">', $txt['pm_short'], ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a></li>';
  352. }
  353. elseif ($context['can_send_pm'] && !$message['is_message_author'] && !$message['member']['is_guest'])
  354. {
  355. if (!empty($modSettings['onlineEnable']))
  356. echo '
  357. <li class="poster_online"><a href="', $scripturl,'?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['member_online_text'], '">', $txt['send_message'], ' <img src="'. $message['member']['online']['image_href']. '" alt="" /></a></li>';
  358. else
  359. echo '
  360. <li class="poster_online"><a href="', $scripturl,'?action=pm;sa=send;u=', $message['member']['id'], '">', $txt['send_message'], ' </a></li>';
  361. }
  362. elseif (!$context['can_send_pm'] && !empty($modSettings['onlineEnable']))
  363. echo '
  364. <li class="poster_online">', ($message['member']['online']['is_online']) ? $txt['online'] : $txt['offline'], ' <img src="'. $message['member']['online']['image_href']. '" alt="" /></li>';
  365. // Are we showing the warning status?
  366. // Don't show these things for guests.
  367. if (!$message['member']['is_guest'] && $message['member']['can_see_warning'])
  368. echo '
  369. <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<img src="', $settings['images_url'], '/warning_', $message['member']['warning_status'], '.png" alt="', $txt['user_warn_' . $message['member']['warning_status']], '" />', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>';
  370. echo '
  371. </ul>';
  372. echo '
  373. </div>
  374. <div class="postarea">
  375. <div class="keyinfo">
  376. <div class="messageicon" ', ($message['icon_url'] !== $settings['images_url'] . '/post/xx.png') ? '' : 'style="position: absolute; z-index: -1;"', '>
  377. <img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
  378. </div>';
  379. //Some people dont want subject ... The div is still required or quick edit breaks...
  380. echo'
  381. <div id="subject_', $message['id'], '" class="subject_title">', (empty($settiongs['subject_toggle']) ? '' : '<a href="' . $message['href'] . '" rel="nofollow">' . $message['subject'] . '</a>'), '</div>';
  382. echo'
  383. <div class="page_number floatright">
  384. ', !empty($message['counter']) ? ' #' . $message['counter'] : '', ' ', '
  385. </div>
  386. <h5>
  387. <a href="', $message['href'], '" rel="nofollow" title="', !empty($message['counter']) ? sprintf($txt['reply_number'], $message['counter']) : '', ' - ', $message['subject'], '" class="smalltext">', $message['time'], '</a>';
  388. // Show "<< Last Edit: Time by Person >>" if this post was edited.
  389. if ($settings['show_modify'] && !empty($message['modified']['name']))
  390. echo '
  391. <span class="smalltext modified" id="modified_', $message['id'], '">
  392. ', $message['modified']['last_edit_text'], '
  393. </span>';
  394. echo '
  395. </h5>
  396. <div id="msg_', $message['id'], '_quick_mod"', $ignoring ? ' style="display:none;"' : '', '></div>
  397. </div>';
  398. // Ignoring this user? Hide the post.
  399. if ($ignoring)
  400. echo '
  401. <div id="msg_', $message['id'], '_ignored_prompt">
  402. ', $txt['ignoring_user'], '
  403. <a href="#" id="msg_', $message['id'], '_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a>
  404. </div>';
  405. // Show the post itself, finally!
  406. echo '
  407. <div class="post">';
  408. if (!$message['approved'] && $message['member']['id'] != 0 && $message['member']['id'] == $context['user']['id'])
  409. echo '
  410. <div class="approve_post">
  411. ', $txt['post_awaiting_approval'], '
  412. </div>';
  413. echo '
  414. <div class="inner" id="msg_', $message['id'], '"', $ignoring ? ' style="display:none;"' : '', '>', $message['body'], '</div>
  415. </div>';
  416. // Assuming there are attachments...
  417. if (!empty($message['attachment']))
  418. {
  419. echo '
  420. <div id="msg_', $message['id'], '_footer" class="attachments"', $ignoring ? ' style="display:none;"' : '', '>';
  421. $last_approved_state = 1;
  422. $attachments_per_line = 4;
  423. $i = 0;
  424. foreach ($message['attachment'] as $attachment)
  425. {
  426. // Show a special box for unapproved attachments...
  427. if ($attachment['is_approved'] != $last_approved_state)
  428. {
  429. $last_approved_state = 0;
  430. echo '
  431. <fieldset>
  432. <legend>', $txt['attach_awaiting_approve'];
  433. if ($context['can_approve'])
  434. echo '
  435. &nbsp;[<a href="', $scripturl, '?action=attachapprove;sa=all;mid=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve_all'], '</a>]';
  436. echo '
  437. </legend>';
  438. }
  439. echo '
  440. <div class="floatleft">';
  441. if ($attachment['is_image'])
  442. {
  443. echo '
  444. <div class="attachments_top">';
  445. if ($attachment['thumbnail']['has_thumb'])
  446. echo '
  447. <a href="', $attachment['href'], ';image" id="link_', $attachment['id'], '" onclick="', $attachment['thumbnail']['javascript'], '"><img src="', $attachment['thumbnail']['href'], '" alt="" id="thumb_', $attachment['id'], '" /></a>';
  448. else
  449. echo '
  450. <img src="' . $attachment['href'] . ';image" alt="" width="' . $attachment['width'] . '" height="' . $attachment['height'] . '"/>';
  451. echo '
  452. </div>';
  453. }
  454. echo '
  455. <div class="attachments_bot">
  456. <a href="' . $attachment['href'] . '"><img src="' . $settings['images_url'] . '/icons/clip.png" class="centericon" alt="*" />&nbsp;' . $attachment['name'] . '</a> ';
  457. if (!$attachment['is_approved'] && $context['can_approve'])
  458. echo '
  459. [<a href="', $scripturl, '?action=attachapprove;sa=approve;aid=', $attachment['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a>]&nbsp;|&nbsp;[<a href="', $scripturl, '?action=attachapprove;sa=reject;aid=', $attachment['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['delete'], '</a>] ';
  460. echo '
  461. <br />', $attachment['size'], ($attachment['is_image'] ? ', ' . $attachment['real_width'] . 'x' . $attachment['real_height'] . '<br />' . sprintf($txt['attach_viewed'], $attachment['downloads']) : '<br />' . sprintf($txt['attach_downloaded'], $attachment['downloads'])), '
  462. </div>';
  463. echo '
  464. </div>';
  465. // Next attachment line ?
  466. if (++$i % $attachments_per_line === 0)
  467. echo '
  468. <hr />';
  469. }
  470. // If we had unapproved attachments clean up.
  471. if ($last_approved_state == 0)
  472. echo '
  473. </fieldset>';
  474. echo '
  475. </div>';
  476. }
  477. echo '
  478. </div>';
  479. // Maybe they want to report this post to the moderator(s)?
  480. if ($context['can_report_moderator'])
  481. echo '
  482. <ul class="floatright smalltext">
  483. <li class="report_link"><a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '">', $txt['report_to_mod'], '</a></li>
  484. </ul>';
  485. // Show the quickbuttons, for various operations on posts.
  486. if ($message['can_approve'] || $message['can_unapprove'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'] || $context['can_quote'])
  487. {
  488. echo '
  489. <ul class="quickbuttons">';
  490. // Can they reply? Have they turned on quick reply?
  491. if ($context['can_quote'] && !empty($options['display_quick_reply']))
  492. echo '
  493. <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" onclick="return oQuickReply.quote(', $message['id'], ');" class="quote_button">', $txt['quote_action'], '</a></li>';
  494. // So... quick reply is off, but they *can* reply?
  495. elseif ($context['can_quote'])
  496. echo '
  497. <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" class="quote_button">', $txt['quote_action'], '</a></li>';
  498. // Can the user modify the contents of this post? Show the modify inline image.
  499. if ($message['can_modify'])
  500. echo '
  501. <li class="quick_edit"><img src="', $settings['images_url'], '/icons/modify_inline.png" alt="', $txt['modify_msg'], '" title="', $txt['modify_msg'], '" class="modifybutton" id="modify_button_', $message['id'], '" style="cursor: pointer; margin: 0;" onclick="oQuickModify.modifyMsg(\'', $message['id'], '\')" />', $txt['quick_edit'], '</li>';
  502. if ($message['can_approve'] || $message['can_unapprove'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
  503. echo '
  504. <li class="post_options">', $txt['post_options'];
  505. echo '
  506. <ul>';
  507. // Can the user modify the contents of this post?
  508. if ($message['can_modify'])
  509. echo '
  510. <li><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '" class="modify_button">', $txt['modify'], '</a></li>';
  511. // How about... even... remove it entirely?!
  512. if ($message['can_remove'])
  513. echo '
  514. <li><a href="', $scripturl, '?action=deletemsg;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');" class="remove_button">', $txt['remove'], '</a></li>';
  515. // What about splitting it off the rest of the topic?
  516. if ($context['can_split'] && !empty($context['real_num_replies']))
  517. echo '
  518. <li><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '" class="split_button">', $txt['split'], '</a></li>';
  519. // Can we issue a warning because of this post? Remember, we can't give guests warnings.
  520. if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
  521. echo '
  522. <li><a href="', $scripturl, '?action=profile;area=issuewarning;u=', $message['member']['id'], ';msg=', $message['id'], '" class="warn_button">', $txt['issue_warning'], '</a></li>';
  523. // Can we restore topics?
  524. if ($context['can_restore_msg'])
  525. echo '
  526. <li><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" class="restore_button">', $txt['restore_message'], '</a></li>';
  527. // Maybe we can approve it, maybe we should?
  528. if ($message['can_approve'])
  529. echo '
  530. <li><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" class="approve_button">', $txt['approve'], '</a></li>';
  531. // Maybe we can unapprove it?
  532. if ($message['can_unapprove'])
  533. echo '
  534. <li><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" class="unapprove_button">', $txt['unapprove'], '</a></li>';
  535. echo '
  536. </ul>
  537. </li>';
  538. // Show a checkbox for quick moderation?
  539. if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
  540. echo '
  541. <li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';
  542. if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
  543. echo '
  544. </ul>';
  545. }
  546. echo '
  547. <div class="moderatorbar">';
  548. // Are there any custom profile fields for above the signature?
  549. if (!empty($message['member']['custom_fields']))
  550. {
  551. $shown = false;
  552. foreach ($message['member']['custom_fields'] as $custom)
  553. {
  554. if ($custom['placement'] != 2 || empty($custom['value']))
  555. continue;
  556. if (empty($shown))
  557. {
  558. $shown = true;
  559. echo '
  560. <div class="custom_fields_above_signature">
  561. <ul class="reset nolist">';
  562. }
  563. echo '
  564. <li>', $custom['value'], '</li>';
  565. }
  566. if ($shown)
  567. echo '
  568. </ul>
  569. </div>';
  570. }
  571. // Show the member's signature?
  572. if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  573. echo '
  574. <div class="signature" id="msg_', $message['id'], '_signature"', $ignoring ? ' style="display:none;"' : '', '>', $message['member']['signature'], '</div>';
  575. echo '
  576. </div>
  577. </div>
  578. </div>
  579. <hr class="post_separator" />';
  580. }
  581. echo '
  582. </form>
  583. </div>';
  584. // Show the page index... "Pages: [1]".
  585. echo '
  586. <div class="pagesection">
  587. ', template_button_strip($context['normal_buttons'], 'right'), '
  588. ', !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . '<a href="#top" class="topbottom floatleft">' . $txt['go_up'] . '</a>' : '', '
  589. <div class="pagelinks floatleft">
  590. ', $context['page_index'], '
  591. </div>
  592. </div>';
  593. // Show the lower breadcrumbs.
  594. theme_linktree();
  595. echo '
  596. <div id="moderationbuttons">', template_button_strip($context['mod_buttons'], 'bottom', array('id' => 'moderationbuttons_strip')), '</div>';
  597. // Show the jumpto box, or actually...let Javascript do it.
  598. echo '
  599. <div class="plainbox" id="display_jump_to">&nbsp;</div>';
  600. if ($context['can_reply'] && !empty($options['display_quick_reply']))
  601. {
  602. echo '
  603. <a id="quickreply"></a>
  604. <div class="tborder" id="quickreplybox">
  605. <div class="cat_bar">
  606. <h3 class="catbg">
  607. <a href="javascript:oQuickReply.swap();"><img src="', $settings['images_url'], '/', $options['display_quick_reply'] > 1 ? 'collapse' : 'expand', '.png" alt="+" id="quickReplyExpand" class="icon" /></a>
  608. <a href="javascript:oQuickReply.swap();">', $txt['quick_reply'], '</a>
  609. </h3>
  610. </div>
  611. <div id="quickReplyOptions"', $options['display_quick_reply'] > 1 ? '' : ' style="display: none"', '>
  612. <div class="roundframe">
  613. <p class="smalltext lefttext">', $txt['quick_reply_desc'], '</p>
  614. ', $context['is_locked'] ? '<p class="alert smalltext">' . $txt['quick_reply_warning'] . '</p>' : '',
  615. $context['oldTopicError'] ? '<p class="alert smalltext">' . sprintf($txt['error_old_topic'], $modSettings['oldTopicDays']) . '</p>' : '', '
  616. ', $context['can_reply_approved'] ? '' : '<em>' . $txt['wait_for_approval'] . '</em>', '
  617. ', !$context['can_reply_approved'] && $context['require_verification'] ? '<br />' : '', '
  618. <form action="', $scripturl, '?board=', $context['current_board'], ';action=post2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" onsubmit="submitonce(this);" style="margin: 0;">
  619. <input type="hidden" name="topic" value="', $context['current_topic'], '" />
  620. <input type="hidden" name="subject" value="', $context['response_prefix'], $context['subject'], '" />
  621. <input type="hidden" name="icon" value="xx" />
  622. <input type="hidden" name="from_qr" value="1" />
  623. <input type="hidden" name="notify" value="', $context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
  624. <input type="hidden" name="not_approved" value="', !$context['can_reply_approved'], '" />
  625. <input type="hidden" name="goback" value="', empty($options['return_to_post']) ? '0' : '1', '" />
  626. <input type="hidden" name="last_msg" value="', $context['topic_last_message'], '" />
  627. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  628. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />';
  629. // Guests just need more.
  630. if ($context['user']['is_guest'])
  631. echo '
  632. <strong>', $txt['name'], ':</strong> <input type="text" name="guestname" value="', $context['name'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" />
  633. <strong>', $txt['email'], ':</strong> <input type="text" name="email" value="', $context['email'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" /><br />';
  634. // Is visual verification enabled?
  635. if ($context['require_verification'])
  636. echo '
  637. <strong>', $txt['verification'], ':</strong>', template_control_verification($context['visual_verification_id'], 'quick_reply'), '<br />';
  638. // Using the full editor
  639. if (empty($options['use_editor_quick_reply']))
  640. {
  641. echo '
  642. <div class="quickReplyContent">
  643. <textarea cols="600" rows="7" name="message" tabindex="', $context['tabindex']++, '"></textarea>
  644. </div>';
  645. }
  646. else
  647. {
  648. // Show the actual posting area...
  649. if ($context['show_bbc'])
  650. {
  651. echo '
  652. <div id="bbcBox_message"></div>';
  653. }
  654. // What about smileys?
  655. if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup']))
  656. echo '
  657. <div id="smileyBox_message"></div>';
  658. echo '
  659. ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message'), '
  660. <script type="text/javascript"><!-- // --><![CDATA[
  661. function insertQuoteFast(messageid)
  662. {
  663. if (window.XMLHttpRequest)
  664. getXMLDocument(smf_prepareScriptUrl(smf_scripturl) + \'action=quotefast;quote=\' + messageid + \';xml;pb=', $context['post_box_name'], ';mode=\' + (oEditorHandle_', $context['post_box_name'], '.bRichTextEnabled ? 1 : 0), onDocReceived);
  665. else
  666. reqWin(smf_prepareScriptUrl(smf_scripturl) + \'action=quotefast;quote=\' + messageid + \';pb=', $context['post_box_name'], ';mode=\' + (oEditorHandle_', $context['post_box_name'], '.bRichTextEnabled ? 1 : 0), 240, 90);
  667. return false;
  668. }
  669. function onDocReceived(XMLDoc)
  670. {
  671. var text = \'\';
  672. for (var i = 0, n = XMLDoc.getElementsByTagName(\'quote\')[0].childNodes.length; i < n; i++)
  673. text += XMLDoc.getElementsByTagName(\'quote\')[0].childNodes[i].nodeValue;
  674. oEditorHandle_', $context['post_box_name'], '.insertText(text, false, true);
  675. ajax_indicator(false);
  676. }
  677. // ]]></script>';
  678. }
  679. echo '
  680. <div class="padding">
  681. <input type="submit" name="post" value="', $txt['post'], '" onclick="return submitThisOnce(this);" accesskey="s" tabindex="', $context['tabindex']++, '" class="button_submit" />
  682. <input type="submit" name="preview" value="', $txt['preview'], '" onclick="return submitThisOnce(this);" accesskey="p" tabindex="', $context['tabindex']++, '" class="button_submit" />';
  683. if ($context['show_spellchecking'])
  684. echo '
  685. <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'postmodify\', \'message\');" tabindex="', $context['tabindex']++, '" class="button_submit" />';
  686. if ($context['drafts_save'] && !empty($options['drafts_show_saved_enabled']))
  687. echo '
  688. <input type="submit" name="save_draft" value="', $txt['draft_save'], '" onclick="return confirm(' . JavaScriptEscape($txt['draft_save_note']) . ') && submitThisOnce(this);" accesskey="d" tabindex="', $context['tabindex']++, '" class="button_submit" />
  689. <input type="hidden" id="id_draft" name="id_draft" value="', empty($context['id_draft']) ? 0 : $context['id_draft'], '" />';
  690. if (!empty($context['drafts_autosave']) && !empty($options['drafts_autosave_enabled']))
  691. echo '
  692. <div class="clear righttext padding"><span id="throbber" style="display:none"><img src="' . $settings['images_url'] . '/loading_sm.gif" alt="" class="centericon" />&nbsp;</span><span id="draft_lastautosave" ></span></div>';
  693. echo '
  694. </div>
  695. </form>
  696. </div>
  697. </div>
  698. </div>';
  699. }
  700. else
  701. echo '
  702. <br class="clear" />';
  703. // draft autosave available and the user has it enabled?
  704. if (!empty($context['drafts_autosave']) && !empty($options['drafts_autosave_enabled']))
  705. echo '
  706. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/drafts.js?alp21"></script>
  707. <script type="text/javascript"><!-- // --><![CDATA[
  708. var oDraftAutoSave = new smf_DraftAutoSave({
  709. sSelf: \'oDraftAutoSave\',
  710. sLastNote: \'draft_lastautosave\',
  711. sLastID: \'id_draft\',', !empty($context['post_box_name']) ? '
  712. sSceditorID: \'' . $context['post_box_name'] . '\',' : '', '
  713. sType: \'', !empty($options['display_quick_reply']) && $options['display_quick_reply'] > 2 ? 'quick' : 'quick', '\',
  714. iBoard: ', (empty($context['current_board']) ? 0 : $context['current_board']), ',
  715. iFreq: ', (empty($modSettings['masterAutoSaveDraftsDelay']) ? 60000 : $modSettings['masterAutoSaveDraftsDelay'] * 1000), '
  716. });
  717. // ]]></script>';
  718. if ($context['show_spellchecking'])
  719. echo '
  720. <form action="', $scripturl, '?action=spellcheck" method="post" accept-charset="', $context['character_set'], '" name="spell_form" id="spell_form" target="spellWindow"><input type="hidden" name="spellstring" value="" /></form>
  721. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/spellcheck.js"></script>';
  722. echo '
  723. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/topic.js"></script>
  724. <script type="text/javascript"><!-- // --><![CDATA[';
  725. if (!empty($options['display_quick_reply']))
  726. echo '
  727. var oQuickReply = new QuickReply({
  728. bDefaultCollapsed: ', !empty($options['display_quick_reply']) && $options['display_quick_reply'] > 1 ? 'false' : 'true', ',
  729. iTopicId: ', $context['current_topic'], ',
  730. iStart: ', $context['start'], ',
  731. sScriptUrl: smf_scripturl,
  732. sImagesUrl: smf_images_url,
  733. sContainerId: "quickReplyOptions",
  734. sImageId: "quickReplyExpand",
  735. sImageCollapsed: "collapse.png",
  736. sImageExpanded: "expand.png",
  737. sJumpAnchor: "quickreply",
  738. bIsFull: ', !empty($options['use_editor_quick_reply']) ? 'true' : 'false', '
  739. });';
  740. if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $context['can_remove_post'])
  741. echo '
  742. var oInTopicModeration = new InTopicModeration({
  743. sSelf: \'oInTopicModeration\',
  744. sCheckboxContainerMask: \'in_topic_mod_check_\',
  745. aMessageIds: [\'', implode('\', \'', $removableMessageIDs), '\'],
  746. sSessionId: smf_session_id,
  747. sSessionVar: smf_session_var,
  748. sButtonStrip: \'moderationbuttons\',
  749. sButtonStripDisplay: \'moderationbuttons_strip\',
  750. bUseImageButton: false,
  751. bCanRemove: ', $context['can_remove_post'] ? 'true' : 'false', ',
  752. sRemoveButtonLabel: \'', $txt['quickmod_delete_selected'], '\',
  753. sRemoveButtonImage: \'delete_selected.png\',
  754. sRemoveButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  755. bCanRestore: ', $context['can_restore_msg'] ? 'true' : 'false', ',
  756. sRestoreButtonLabel: \'', $txt['quick_mod_restore'], '\',
  757. sRestoreButtonImage: \'restore_selected.png\',
  758. sRestoreButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  759. bCanSplit: ', $context['can_split'] ? 'true' : 'false', ',
  760. sSplitButtonLabel: \'', $txt['quickmod_split_selected'], '\',
  761. sSplitButtonImage: \'split_selected.png\',
  762. sSplitButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  763. sFormId: \'quickModForm\'
  764. });';
  765. echo '
  766. if (\'XMLHttpRequest\' in window)
  767. {
  768. var oQuickModify = new QuickModify({
  769. sScriptUrl: smf_scripturl,
  770. sClassName: \'quick_edit\',
  771. bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
  772. iTopicId: ', $context['current_topic'], ',
  773. sTemplateBodyEdit: ', JavaScriptEscape('
  774. <div id="quick_edit_body_container" style="width: 90%">
  775. <div id="error_box" style="padding: 4px;" class="error"></div>
  776. <textarea class="editor" name="message" rows="12" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 100%; min-width: 100%' : 'width: 100%') . '; margin-bottom: 10px;" tabindex="' . $context['tabindex']++ . '">%body%</textarea><br />
  777. <input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '" />
  778. <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />
  779. <input type="hidden" name="msg" value="%msg_id%" />
  780. <div class="righttext">
  781. <input type="submit" name="post" value="' . $txt['save'] . '" tabindex="' . $context['tabindex']++ . '" onclick="return oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\');" accesskey="s" class="button_submit" />&nbsp;&nbsp;' . ($context['show_spellchecking'] ? '<input type="button" value="' . $txt['spell_check'] . '" tabindex="' . $context['tabindex']++ . '" onclick="spellCheck(\'quickModForm\', \'message\');" class="button_submit" />&nbsp;&nbsp;' : '') . '<input type="submit" name="cancel" value="' . $txt['modify_cancel'] . '" tabindex="' . $context['tabindex']++ . '" onclick="return oQuickModify.modifyCancel();" class="button_submit" />
  782. </div>
  783. </div>'), ',
  784. sTemplateSubjectEdit: ', JavaScriptEscape('<input type="text" style="width: 90%;" name="subject" value="%subject%" size="80" maxlength="80" tabindex="' . $context['tabindex']++ . '" class="input_text" />'), ',
  785. sTemplateBodyNormal: ', JavaScriptEscape('%body%'), ',
  786. sTemplateSubjectNormal: ', JavaScriptEscape('<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.msg%msg_id%#msg%msg_id%" rel="nofollow">%subject%</a>'), ',
  787. sTemplateTopSubject: ', JavaScriptEscape($txt['topic'] . ': %subject% &nbsp;(' . $context['num_views_text'] . ')'), ',
  788. sErrorBorderStyle: ', JavaScriptEscape('1px solid red'), ($context['can_reply'] && !empty($options['display_quick_reply'])) ? ',
  789. sFormRemoveAccessKeys: \'postmodify\'' : '', '
  790. });
  791. aJumpTo[aJumpTo.length] = new JumpTo({
  792. sContainerId: "display_jump_to",
  793. sJumpToTemplate: "<label class=\"smalltext\" for=\"%select_id%\">', $context['jump_to']['label'], ':<" + "/label> %dropdown_list%",
  794. iCurBoardId: ', $context['current_board'], ',
  795. iCurBoardChildLevel: ', $context['jump_to']['child_level'], ',
  796. sCurBoardName: "', $context['jump_to']['board_name'], '",
  797. sBoardChildLevelIndicator: "==",
  798. sBoardPrefix: "=> ",
  799. sCatSeparator: "-----------------------------",
  800. sCatPrefix: "",
  801. sGoButtonLabel: "', $txt['go'], '"
  802. });
  803. aIconLists[aIconLists.length] = new IconList({
  804. sBackReference: "aIconLists[" + aIconLists.length + "]",
  805. sIconIdPrefix: "msg_icon_",
  806. sScriptUrl: smf_scripturl,
  807. bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
  808. iBoardId: ', $context['current_board'], ',
  809. iTopicId: ', $context['current_topic'], ',
  810. sSessionId: smf_session_id,
  811. sSessionVar: smf_session_var,
  812. sLabelIconList: "', $txt['message_icon'], '",
  813. sBoxBackground: "transparent",
  814. sBoxBackgroundHover: "#ffffff",
  815. iBoxBorderWidthHover: 1,
  816. sBoxBorderColorHover: "#adadad" ,
  817. sContainerBackground: "#ffffff",
  818. sContainerBorder: "1px solid #adadad",
  819. sItemBorder: "1px solid #ffffff",
  820. sItemBorderHover: "1px dotted gray",
  821. sItemBackground: "transparent",
  822. sItemBackgroundHover: "#e0e0f0"
  823. });
  824. }';
  825. if (!empty($ignoredMsgs))
  826. echo '
  827. ignore_toggles([', implode(', ', $ignoredMsgs), '], ', JavaScriptEscape($txt['show_ignore_user_post']), ');';
  828. echo '
  829. // ]]></script>';
  830. }
  831. ?>