Display.template.php 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2011 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. 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="windowbg" id="profile_success">
  20. ', $txt['report_sent'], '
  21. </div>';
  22. }
  23. // Show the anchor for the top and for the first message. If the first message is new, say so.
  24. echo '
  25. <a id="top"></a>
  26. <a id="msg', $context['first_message'], '"></a>', $context['first_new_message'] ? '<a id="new"></a>' : '';
  27. // Is this topic also a poll?
  28. if ($context['is_poll'])
  29. {
  30. echo '
  31. <div id="poll">
  32. <div class="cat_bar">
  33. <h3 class="catbg">
  34. <span class="ie6_header floatleft"><img src="', $settings['images_url'], '/topic/', $context['poll']['is_locked'] ? 'normal_poll_locked' : 'normal_poll', '.gif" alt="" class="icon" /> ', $txt['poll'], '</span>
  35. </h3>
  36. </div>
  37. <div class="windowbg">
  38. <span class="topslice"><span></span></span>
  39. <div class="content" id="poll_options">
  40. <h4 id="pollquestion">
  41. ', $context['poll']['question'], '
  42. </h4>';
  43. // Are they not allowed to vote but allowed to view the options?
  44. if ($context['poll']['show_results'] || !$context['allow_vote'])
  45. {
  46. echo '
  47. <dl class="options">';
  48. // Show each option with its corresponding percentage bar.
  49. foreach ($context['poll']['options'] as $option)
  50. {
  51. echo '
  52. <dt class="middletext', $option['voted_this'] ? ' voted' : '', '">', $option['option'], '</dt>
  53. <dd class="middletext statsbar', $option['voted_this'] ? ' voted' : '', '">';
  54. if ($context['allow_poll_view'])
  55. echo '
  56. ', $option['bar_ndt'], '
  57. <span class="percentage">', $option['votes'], ' (', $option['percent'], '%)</span>';
  58. echo '
  59. </dd>';
  60. }
  61. echo '
  62. </dl>';
  63. if ($context['allow_poll_view'])
  64. echo '
  65. <p><strong>', $txt['poll_total_voters'], ':</strong> ', $context['poll']['total_votes'], '</p>';
  66. }
  67. // They are allowed to vote! Go to it!
  68. else
  69. {
  70. echo '
  71. <form action="', $scripturl, '?action=vote;topic=', $context['current_topic'], '.', $context['start'], ';poll=', $context['poll']['id'], '" method="post" accept-charset="', $context['character_set'], '">';
  72. // Show a warning if they are allowed more than one option.
  73. if ($context['poll']['allowed_warning'])
  74. echo '
  75. <p class="smallpadding">', $context['poll']['allowed_warning'], '</p>';
  76. echo '
  77. <ul class="reset options">';
  78. // Show each option with its button - a radio likely.
  79. foreach ($context['poll']['options'] as $option)
  80. echo '
  81. <li class="middletext">', $option['vote_button'], ' <label for="', $option['id'], '">', $option['option'], '</label></li>';
  82. echo '
  83. </ul>
  84. <div class="submitbutton">
  85. <input type="submit" value="', $txt['poll_vote'], '" class="button_submit" />
  86. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  87. </div>
  88. </form>';
  89. }
  90. // Is the clock ticking?
  91. if (!empty($context['poll']['expire_time']))
  92. echo '
  93. <p><strong>', ($context['poll']['is_expired'] ? $txt['poll_expired_on'] : $txt['poll_expires_on']), ':</strong> ', $context['poll']['expire_time'], '</p>';
  94. echo '
  95. </div>
  96. <span class="botslice"><span></span></span>
  97. </div>
  98. </div>
  99. <div id="pollmoderation">';
  100. // Build the poll moderation button array.
  101. $poll_buttons = array(
  102. 'vote' => array('test' => 'allow_return_vote', 'text' => 'poll_return_vote', 'image' => 'poll_options.gif', 'lang' => true, 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']),
  103. 'results' => array('test' => 'show_view_results_button', 'text' => 'poll_results', 'image' => 'poll_results.gif', 'lang' => true, 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'),
  104. 'change_vote' => array('test' => 'allow_change_vote', 'text' => 'poll_change_vote', 'image' => 'poll_change_vote.gif', 'lang' => true, 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  105. 'lock' => array('test' => 'allow_lock_poll', 'text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.gif', 'lang' => true, 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  106. 'edit' => array('test' => 'allow_edit_poll', 'text' => 'poll_edit', 'image' => 'poll_edit.gif', 'lang' => true, 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']),
  107. 'remove_poll' => array('test' => 'can_remove_poll', 'text' => 'poll_remove', 'image' => 'admin_remove_poll.gif', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . $txt['poll_remove_warn'] . '\');"', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  108. );
  109. template_button_strip($poll_buttons);
  110. echo '
  111. </div>';
  112. }
  113. // Does this topic have some events linked to it?
  114. if (!empty($context['linked_calendar_events']))
  115. {
  116. echo '
  117. <div class="linked_events">
  118. <div class="title_bar">
  119. <h3 class="titlebg headerpadding">', $txt['calendar_linked_events'], '</h3>
  120. </div>
  121. <div class="windowbg">
  122. <span class="topslice"><span></span></span>
  123. <div class="content">
  124. <ul class="reset">';
  125. foreach ($context['linked_calendar_events'] as $event)
  126. echo '
  127. <li>
  128. ', ($event['can_edit'] ? '<a href="' . $event['modify_href'] . '"> <img src="' . $settings['images_url'] . '/icons/modify_small.gif" alt="" title="' . $txt['modify'] . '" class="edit_event" /></a> ' : ''), '<strong>', $event['title'], '</strong>: ', $event['start_date'], ($event['start_date'] != $event['end_date'] ? ' - ' . $event['end_date'] : ''), '
  129. </li>';
  130. echo '
  131. </ul>
  132. </div>
  133. <span class="botslice"><span></span></span>
  134. </div>
  135. </div>';
  136. }
  137. // Build the normal button array.
  138. $normal_buttons = array(
  139. 'reply' => array('test' => 'can_reply', 'text' => 'reply', 'image' => 'reply.gif', 'lang' => true, 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true),
  140. 'add_poll' => array('test' => 'can_add_poll', 'text' => 'add_poll', 'image' => 'add_poll.gif', 'lang' => true, 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']),
  141. 'notify' => array('test' => 'can_mark_notify', 'text' => $context['is_marked_notify'] ? 'unnotify' : 'notify', 'image' => ($context['is_marked_notify'] ? 'un' : '') . 'notify.gif', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . ($context['is_marked_notify'] ? $txt['notification_disable_topic'] : $txt['notification_enable_topic']) . '\');"', 'url' => $scripturl . '?action=notify;sa=' . ($context['is_marked_notify'] ? 'off' : 'on') . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  142. 'mark_unread' => array('test' => 'can_mark_unread', 'text' => 'mark_unread', 'image' => 'markunread.gif', 'lang' => true, 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  143. 'send' => array('test' => 'can_send_topic', 'text' => 'send_topic', 'image' => 'sendtopic.gif', 'lang' => true, 'url' => $scripturl . '?action=emailuser;sa=sendtopic;topic=' . $context['current_topic'] . '.0'),
  144. 'print' => array('text' => 'print', 'image' => 'print.gif', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),
  145. );
  146. // Allow adding new buttons easily.
  147. call_integration_hook('integrate_display_buttons', array(&$normal_buttons));
  148. // Show the page index... "Pages: [1]".
  149. echo '
  150. <div class="pagesection">
  151. <div class="nextlinks">', $context['previous_next'], '</div>', template_button_strip($normal_buttons, 'right'), '
  152. <div class="pagelinks floatleft">', $txt['pages'], ': ', $context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' &nbsp;&nbsp;<a href="#lastPost"><strong>' . $txt['go_down'] . '</strong></a>' : '', '</div>
  153. </div>';
  154. // Show the topic information - icon, subject, etc.
  155. echo '
  156. <div id="forumposts">
  157. <div class="cat_bar">
  158. <h3 class="catbg">
  159. <img src="', $settings['images_url'], '/topic/', $context['class'], '.gif" align="bottom" alt="" />
  160. <span id="author">', $txt['author'], '</span>
  161. ', $txt['topic'], ': ', $context['subject'], ' &nbsp;(', $txt['read'], ' ', $context['num_views'], ' ', $txt['times'], ')
  162. </h3>
  163. </div>';
  164. if (!empty($settings['display_who_viewing']))
  165. {
  166. echo '
  167. <p id="whoisviewing" class="smalltext">';
  168. // Show just numbers...?
  169. if ($settings['display_who_viewing'] == 1)
  170. echo count($context['view_members']), ' ', count($context['view_members']) == 1 ? $txt['who_member'] : $txt['members'];
  171. // Or show the actual people viewing the topic?
  172. else
  173. 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'] . ')');
  174. // Now show how many guests are here too.
  175. echo $txt['who_and'], $context['view_num_guests'], ' ', $context['view_num_guests'] == 1 ? $txt['guest'] : $txt['guests'], $txt['who_viewing_topic'], '
  176. </p>';
  177. }
  178. echo '
  179. <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">';
  180. $ignoredMsgs = array();
  181. $removableMessageIDs = array();
  182. $alternate = false;
  183. // Get all the messages...
  184. while ($message = $context['get_message']())
  185. {
  186. $ignoring = false;
  187. $alternate = !$alternate;
  188. if ($message['can_remove'])
  189. $removableMessageIDs[] = $message['id'];
  190. // Are we ignoring this message?
  191. if (!empty($message['is_ignored']))
  192. {
  193. $ignoring = true;
  194. $ignoredMsgs[] = $message['id'];
  195. }
  196. // Show the message anchor and a "new" anchor if this message is new.
  197. if ($message['id'] != $context['first_message'])
  198. echo '
  199. <a id="msg', $message['id'], '"></a>', $message['first_new'] ? '<a id="new"></a>' : '';
  200. echo '
  201. <div class="', $message['approved'] ? ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') : 'approvebg', '">
  202. <span class="topslice"><span></span></span>
  203. <div class="post_wrapper">';
  204. // Show information about the poster of this message.
  205. echo '
  206. <div class="poster">
  207. <h4>';
  208. // Show online and offline buttons?
  209. if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
  210. echo '
  211. ', $context['can_send_pm'] ? '<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">' : '', '<img src="', $message['member']['online']['image_href'], '" alt="', $message['member']['online']['text'], '" />', $context['can_send_pm'] ? '</a>' : '';
  212. // Show a link to the member's profile.
  213. echo '
  214. ', $message['member']['link'], '
  215. </h4>
  216. <ul class="reset smalltext" id="msg_', $message['id'], '_extra_info">';
  217. // Show the member's custom title, if they have one.
  218. if (!empty($message['member']['title']))
  219. echo '
  220. <li class="title">', $message['member']['title'], '</li>';
  221. // Show the member's primary group (like 'Administrator') if they have one.
  222. if (!empty($message['member']['group']))
  223. echo '
  224. <li class="membergroup">', $message['member']['group'], '</li>';
  225. // Don't show these things for guests.
  226. if (!$message['member']['is_guest'])
  227. {
  228. // 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.
  229. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  230. echo '
  231. <li class="postgroup">', $message['member']['post_group'], '</li>';
  232. echo '
  233. <li class="stars">', $message['member']['group_stars'], '</li>';
  234. // Show avatars, images, etc.?
  235. if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
  236. echo '
  237. <li class="avatar">
  238. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
  239. ', $message['member']['avatar']['image'], '
  240. </a>
  241. </li>';
  242. // Show how many posts they have made.
  243. if (!isset($context['disabled_fields']['posts']))
  244. echo '
  245. <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
  246. // Is karma display enabled? Total or +/-?
  247. if ($modSettings['karmaMode'] == '1')
  248. echo '
  249. <li class="karma">', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
  250. elseif ($modSettings['karmaMode'] == '2')
  251. echo '
  252. <li class="karma">', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';
  253. // Is this user allowed to modify this member's karma?
  254. if ($message['member']['karma']['allow'])
  255. echo '
  256. <li class="karma_allow">
  257. <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>
  258. <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>
  259. </li>';
  260. // Show the member's gender icon?
  261. if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
  262. echo '
  263. <li class="gender">', $txt['gender'], ': ', $message['member']['gender']['image'], '</li>';
  264. // Show their personal text?
  265. if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
  266. echo '
  267. <li class="blurb">', $message['member']['blurb'], '</li>';
  268. // Any custom fields to show as icons?
  269. if (!empty($message['member']['custom_fields']))
  270. {
  271. $shown = false;
  272. foreach ($message['member']['custom_fields'] as $custom)
  273. {
  274. if ($custom['placement'] != 1 || empty($custom['value']))
  275. continue;
  276. if (empty($shown))
  277. {
  278. $shown = true;
  279. echo '
  280. <li class="im_icons">
  281. <ul>';
  282. }
  283. echo '
  284. <li>', $custom['value'], '</li>';
  285. }
  286. if ($shown)
  287. echo '
  288. </ul>
  289. </li>';
  290. }
  291. // This shows the popular messaging icons.
  292. if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
  293. echo '
  294. <li class="im_icons">
  295. <ul>
  296. ', !empty($message['member']['icq']['link']) ? '<li>' . $message['member']['icq']['link'] . '</li>' : '', '
  297. ', !empty($message['member']['msn']['link']) ? '<li>' . $message['member']['msn']['link'] . '</li>' : '', '
  298. ', !empty($message['member']['aim']['link']) ? '<li>' . $message['member']['aim']['link'] . '</li>' : '', '
  299. ', !empty($message['member']['yim']['link']) ? '<li>' . $message['member']['yim']['link'] . '</li>' : '', '
  300. </ul>
  301. </li>';
  302. // Show the profile, website, email address, and personal message buttons.
  303. if ($settings['show_profile_buttons'])
  304. {
  305. echo '
  306. <li class="profile">
  307. <ul>';
  308. // Don't show the profile button if you're not allowed to view the profile.
  309. if ($message['member']['can_view_profile'])
  310. echo '
  311. <li><a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.gif" alt="' . $txt['view_profile'] . '" title="' . $txt['view_profile'] . '" />' : $txt['view_profile']), '</a></li>';
  312. // Don't show an icon if they haven't specified a website.
  313. if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
  314. echo '
  315. <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.gif" alt="' . $message['member']['website']['title'] . '" />' : $txt['www']), '</a></li>';
  316. // Don't show the email address if they want it hidden.
  317. if (in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')))
  318. echo '
  319. <li><a href="', $scripturl, '?action=emailuser;sa=email;msg=', $message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.gif" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
  320. // Since we know this person isn't a guest, you *can* message them.
  321. if ($context['can_send_pm'])
  322. echo '
  323. <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . '.gif" alt="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '" />' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';
  324. echo '
  325. </ul>
  326. </li>';
  327. }
  328. // Any custom fields for standard placement?
  329. if (!empty($message['member']['custom_fields']))
  330. {
  331. foreach ($message['member']['custom_fields'] as $custom)
  332. if (empty($custom['placement']) || empty($custom['value']))
  333. echo '
  334. <li class="custom">', $custom['title'], ': ', $custom['value'], '</li>';
  335. }
  336. // Are we showing the warning status?
  337. if ($message['member']['can_see_warning'])
  338. echo '
  339. <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'], '.gif" 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>';
  340. }
  341. // Otherwise, show the guest's email.
  342. elseif (!empty($message['member']['email']) && in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')))
  343. echo '
  344. <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.gif" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
  345. // Done with the information about the poster... on to the post itself.
  346. echo '
  347. </ul>
  348. </div>
  349. <div class="postarea">
  350. <div class="flow_hidden">
  351. <div class="keyinfo">
  352. <div class="messageicon">
  353. <img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
  354. </div>
  355. <h5 id="subject_', $message['id'], '">
  356. <a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
  357. </h5>
  358. <div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
  359. <div id="msg_', $message['id'], '_quick_mod"></div>
  360. </div>';
  361. // If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
  362. if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
  363. echo '
  364. <ul class="reset smalltext quickbuttons">';
  365. // Maybe we can approve it, maybe we should?
  366. if ($message['can_approve'])
  367. echo '
  368. <li class="approve_button"><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a></li>';
  369. // Can they reply? Have they turned on quick reply?
  370. if ($context['can_quote'] && !empty($options['display_quick_reply']))
  371. echo '
  372. <li class="quote_button"><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'], ');">', $txt['quote'], '</a></li>';
  373. // So... quick reply is off, but they *can* reply?
  374. elseif ($context['can_quote'])
  375. echo '
  376. <li class="quote_button"><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '">', $txt['quote'], '</a></li>';
  377. // Can the user modify the contents of this post?
  378. if ($message['can_modify'])
  379. echo '
  380. <li class="modify_button"><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '">', $txt['modify'], '</a></li>';
  381. // How about... even... remove it entirely?!
  382. if ($message['can_remove'])
  383. echo '
  384. <li class="remove_button"><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'], '?\');">', $txt['remove'], '</a></li>';
  385. // What about splitting it off the rest of the topic?
  386. if ($context['can_split'] && !empty($context['real_num_replies']))
  387. echo '
  388. <li class="split_button"><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '">', $txt['split'], '</a></li>';
  389. // Can we restore topics?
  390. if ($context['can_restore_msg'])
  391. echo '
  392. <li class="restore_button"><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['restore_message'], '</a></li>';
  393. // Show a checkbox for quick moderation?
  394. if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
  395. echo '
  396. <li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';
  397. if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
  398. echo '
  399. </ul>';
  400. echo '
  401. </div>';
  402. // Ignoring this user? Hide the post.
  403. if ($ignoring)
  404. echo '
  405. <div id="msg_', $message['id'], '_ignored_prompt">
  406. ', $txt['ignoring_user'], '
  407. <a href="#" id="msg_', $message['id'], '_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a>
  408. </div>';
  409. // Show the post itself, finally!
  410. echo '
  411. <div class="post">';
  412. if (!$message['approved'] && $message['member']['id'] != 0 && $message['member']['id'] == $context['user']['id'])
  413. echo '
  414. <div class="approve_post">
  415. ', $txt['post_awaiting_approval'], '
  416. </div>';
  417. echo '
  418. <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>
  419. </div>';
  420. // Can the user modify the contents of this post? Show the modify inline image.
  421. if ($message['can_modify'])
  422. echo '
  423. <img src="', $settings['images_url'], '/icons/modify_inline.gif" alt="', $txt['modify_msg'], '" title="', $txt['modify_msg'], '" class="modifybutton" id="modify_button_', $message['id'], '" style="cursor: ', (isBrowser('is_ie5') || isBrowser('is_ie5.5') ? 'hand' : 'pointer'), '; display: none;" onclick="oQuickModify.modifyMsg(\'', $message['id'], '\')" />';
  424. // Assuming there are attachments...
  425. if (!empty($message['attachment']))
  426. {
  427. echo '
  428. <div id="msg_', $message['id'], '_footer" class="attachments smalltext">
  429. <div style="overflow: ', isBrowser('is_firefox') ? 'visible' : 'auto', ';">';
  430. $last_approved_state = 1;
  431. foreach ($message['attachment'] as $attachment)
  432. {
  433. // Show a special box for unapproved attachments...
  434. if ($attachment['is_approved'] != $last_approved_state)
  435. {
  436. $last_approved_state = 0;
  437. echo '
  438. <fieldset>
  439. <legend>', $txt['attach_awaiting_approve'];
  440. if ($context['can_approve'])
  441. echo '&nbsp;[<a href="', $scripturl, '?action=attachapprove;sa=all;mid=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve_all'], '</a>]';
  442. echo '</legend>';
  443. }
  444. if ($attachment['is_image'])
  445. {
  446. if ($attachment['thumbnail']['has_thumb'])
  447. echo '
  448. <a href="', $attachment['href'], ';image" id="link_', $attachment['id'], '" onclick="', $attachment['thumbnail']['javascript'], '"><img src="', $attachment['thumbnail']['href'], '" alt="" id="thumb_', $attachment['id'], '" /></a><br />';
  449. else
  450. echo '
  451. <img src="' . $attachment['href'] . ';image" alt="" width="' . $attachment['width'] . '" height="' . $attachment['height'] . '"/><br />';
  452. }
  453. echo '
  454. <a href="' . $attachment['href'] . '"><img src="' . $settings['images_url'] . '/icons/clip.gif" align="middle" alt="*" />&nbsp;' . $attachment['name'] . '</a> ';
  455. if (!$attachment['is_approved'] && $context['can_approve'])
  456. echo '
  457. [<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>] ';
  458. echo '
  459. (', $attachment['size'], ($attachment['is_image'] ? ', ' . $attachment['real_width'] . 'x' . $attachment['real_height'] . ' - ' . $txt['attach_viewed'] : ' - ' . $txt['attach_downloaded']) . ' ' . $attachment['downloads'] . ' ' . $txt['attach_times'] . '.)<br />';
  460. }
  461. // If we had unapproved attachments clean up.
  462. if ($last_approved_state == 0)
  463. echo '
  464. </fieldset>';
  465. echo '
  466. </div>
  467. </div>';
  468. }
  469. echo '
  470. </div>
  471. <div class="moderatorbar">
  472. <div class="smalltext modified" id="modified_', $message['id'], '">';
  473. // Show "� Last Edit: Time by Person �" if this post was edited.
  474. if ($settings['show_modify'] && !empty($message['modified']['name']))
  475. echo '
  476. &#171; <em>', $txt['last_edit'], ': ', $message['modified']['time'], ' ', $txt['by'], ' ', $message['modified']['name'], '</em> &#187;';
  477. echo '
  478. </div>
  479. <div class="smalltext reportlinks">';
  480. // Maybe they want to report this post to the moderator(s)?
  481. if ($context['can_report_moderator'])
  482. echo '
  483. <a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '">', $txt['report_to_mod'], '</a> &nbsp;';
  484. // Can we issue a warning because of this post? Remember, we can't give guests warnings.
  485. if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
  486. echo '
  487. <a href="', $scripturl, '?action=profile;area=issuewarning;u=', $message['member']['id'], ';msg=', $message['id'], '"><img src="', $settings['images_url'], '/warn.gif" alt="', $txt['issue_warning_post'], '" title="', $txt['issue_warning_post'], '" /></a>';
  488. echo '
  489. <img src="', $settings['images_url'], '/ip.gif" alt="" />';
  490. // Show the IP to this user for this post - because you can moderate?
  491. if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
  492. echo '
  493. <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 reqWin(this.href);" class="help">(?)</a>';
  494. // Or, should we show it because this is you?
  495. elseif ($message['can_see_ip'])
  496. echo '
  497. <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">', $message['member']['ip'], '</a>';
  498. // Okay, are you at least logged in? Then we can show something about why IPs are logged...
  499. elseif (!$context['user']['is_guest'])
  500. echo '
  501. <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">', $txt['logged'], '</a>';
  502. // Otherwise, you see NOTHING!
  503. else
  504. echo '
  505. ', $txt['logged'];
  506. echo '
  507. </div>';
  508. // Are there any custom profile fields for above the signature?
  509. if (!empty($message['member']['custom_fields']))
  510. {
  511. $shown = false;
  512. foreach ($message['member']['custom_fields'] as $custom)
  513. {
  514. if ($custom['placement'] != 2 || empty($custom['value']))
  515. continue;
  516. if (empty($shown))
  517. {
  518. $shown = true;
  519. echo '
  520. <div class="custom_fields_above_signature">
  521. <ul class="reset nolist">';
  522. }
  523. echo '
  524. <li>', $custom['value'], '</li>';
  525. }
  526. if ($shown)
  527. echo '
  528. </ul>
  529. </div>';
  530. }
  531. // Show the member's signature?
  532. if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  533. echo '
  534. <div class="signature" id="msg_', $message['id'], '_signature">', $message['member']['signature'], '</div>';
  535. echo '
  536. </div>
  537. </div>
  538. <span class="botslice"><span></span></span>
  539. </div>
  540. <hr class="post_separator" />';
  541. }
  542. echo '
  543. </form>
  544. </div>
  545. <a id="lastPost"></a>';
  546. // Show the page index... "Pages: [1]".
  547. echo '
  548. <div class="pagesection">
  549. ', template_button_strip($normal_buttons, 'right'), '
  550. <div class="pagelinks floatleft">', $txt['pages'], ': ', $context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' &nbsp;&nbsp;<a href="#top"><strong>' . $txt['go_up'] . '</strong></a>' : '', '</div>
  551. <div class="nextlinks_bottom">', $context['previous_next'], '</div>
  552. </div>';
  553. // Show the lower breadcrumbs.
  554. theme_linktree();
  555. $mod_buttons = array(
  556. 'move' => array('test' => 'can_move', 'text' => 'move_topic', 'image' => 'admin_move.gif', 'lang' => true, 'url' => $scripturl . '?action=movetopic;topic=' . $context['current_topic'] . '.0'),
  557. 'delete' => array('test' => 'can_delete', 'text' => 'remove_topic', 'image' => 'admin_rem.gif', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . $txt['are_sure_remove_topic'] . '\');"', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']),
  558. 'lock' => array('test' => 'can_lock', 'text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.gif', 'lang' => true, 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  559. 'sticky' => array('test' => 'can_sticky', 'text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.gif', 'lang' => true, 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  560. 'merge' => array('test' => 'can_merge', 'text' => 'merge', 'image' => 'merge.gif', 'lang' => true, 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']),
  561. 'calendar' => array('test' => 'calendar_post', 'text' => 'calendar_link', 'image' => 'linktocal.gif', 'lang' => true, 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'),
  562. );
  563. // Restore topic. eh? No monkey business.
  564. if ($context['can_restore_topic'])
  565. $mod_buttons[] = array('text' => 'restore_topic', 'image' => '', 'lang' => true, 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']);
  566. // Allow adding new mod buttons easily.
  567. call_integration_hook('integrate_mod_buttons', array(&$mod_buttons));
  568. echo '
  569. <div id="moderationbuttons">', template_button_strip($mod_buttons, 'bottom', array('id' => 'moderationbuttons_strip')), '</div>';
  570. // Show the jumpto box, or actually...let Javascript do it.
  571. echo '
  572. <div class="plainbox" id="display_jump_to">&nbsp;</div>';
  573. if ($context['can_reply'] && !empty($options['display_quick_reply']))
  574. {
  575. echo '
  576. <a id="quickreply"></a>
  577. <div class="tborder" id="quickreplybox">
  578. <div class="cat_bar">
  579. <h3 class="catbg">
  580. <span class="ie6_header floatleft"><a href="javascript:oQuickReply.swap();">
  581. <img src="', $settings['images_url'], '/', $options['display_quick_reply'] == 2 ? 'collapse' : 'expand', '.gif" alt="+" id="quickReplyExpand" class="icon" />
  582. </a>
  583. <a href="javascript:oQuickReply.swap();">', $txt['quick_reply'], '</a>
  584. </span>
  585. </h3>
  586. </div>
  587. <div id="quickReplyOptions"', $options['display_quick_reply'] == 2 ? '' : ' style="display: none"', '>
  588. <span class="upperframe"><span></span></span>
  589. <div class="roundframe">
  590. <p class="smalltext lefttext">', $txt['quick_reply_desc'], '</p>
  591. ', $context['is_locked'] ? '<p class="alert smalltext">' . $txt['quick_reply_warning'] . '</p>' : '',
  592. $context['oldTopicError'] ? '<p class="alert smalltext">' . sprintf($txt['error_old_topic'], $modSettings['oldTopicDays']) . '</p>' : '', '
  593. ', $context['can_reply_approved'] ? '' : '<em>' . $txt['wait_for_approval'] . '</em>', '
  594. ', !$context['can_reply_approved'] && $context['require_verification'] ? '<br />' : '', '
  595. <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;">
  596. <input type="hidden" name="topic" value="', $context['current_topic'], '" />
  597. <input type="hidden" name="subject" value="', $context['response_prefix'], $context['subject'], '" />
  598. <input type="hidden" name="icon" value="xx" />
  599. <input type="hidden" name="from_qr" value="1" />
  600. <input type="hidden" name="notify" value="', $context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
  601. <input type="hidden" name="not_approved" value="', !$context['can_reply_approved'], '" />
  602. <input type="hidden" name="goback" value="', empty($options['return_to_post']) ? '0' : '1', '" />
  603. <input type="hidden" name="last_msg" value="', $context['topic_last_message'], '" />
  604. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  605. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />';
  606. // Guests just need more.
  607. if ($context['user']['is_guest'])
  608. echo '
  609. <strong>', $txt['name'], ':</strong> <input type="text" name="guestname" value="', $context['name'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" />
  610. <strong>', $txt['email'], ':</strong> <input type="text" name="email" value="', $context['email'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" /><br />';
  611. // Is visual verification enabled?
  612. if ($context['require_verification'])
  613. echo '
  614. <strong>', $txt['verification'], ':</strong>', template_control_verification($context['visual_verification_id'], 'quick_reply'), '<br />';
  615. echo '
  616. <div class="quickReplyContent">
  617. <textarea cols="600" rows="7" name="message" tabindex="', $context['tabindex']++, '"></textarea>
  618. </div>
  619. <div class="righttext padding">
  620. <input type="submit" name="post" value="', $txt['post'], '" onclick="return submitThisOnce(this);" accesskey="s" tabindex="', $context['tabindex']++, '" class="button_submit" />
  621. <input type="submit" name="preview" value="', $txt['preview'], '" onclick="return submitThisOnce(this);" accesskey="p" tabindex="', $context['tabindex']++, '" class="button_submit" />';
  622. if ($context['show_spellchecking'])
  623. echo '
  624. <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'postmodify\', \'message\');" tabindex="', $context['tabindex']++, '" class="button_submit" />';
  625. echo '
  626. </div>
  627. </form>
  628. </div>
  629. <span class="lowerframe"><span></span></span>
  630. </div>
  631. </div>';
  632. }
  633. else
  634. echo '
  635. <br class="clear" />';
  636. if ($context['show_spellchecking'])
  637. echo '
  638. <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>
  639. <script type="text/javascript" src="' . $settings['default_theme_url'] . '/scripts/spellcheck.js"></script>';
  640. echo '
  641. <script type="text/javascript" src="' . $settings['default_theme_url'] . '/scripts/topic.js"></script>
  642. <script type="text/javascript"><!-- // --><![CDATA[';
  643. if (!empty($options['display_quick_reply']))
  644. echo '
  645. var oQuickReply = new QuickReply({
  646. bDefaultCollapsed: ', !empty($options['display_quick_reply']) && $options['display_quick_reply'] == 2 ? 'false' : 'true', ',
  647. iTopicId: ', $context['current_topic'], ',
  648. iStart: ', $context['start'], ',
  649. sScriptUrl: smf_scripturl,
  650. sImagesUrl: smf_images_url,
  651. sContainerId: "quickReplyOptions",
  652. sImageId: "quickReplyExpand",
  653. sImageCollapsed: "collapse.gif",
  654. sImageExpanded: "expand.gif",
  655. sJumpAnchor: "quickreply"
  656. });';
  657. if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $context['can_remove_post'])
  658. echo '
  659. var oInTopicModeration = new InTopicModeration({
  660. sSelf: \'oInTopicModeration\',
  661. sCheckboxContainerMask: \'in_topic_mod_check_\',
  662. aMessageIds: [\'', implode('\', \'', $removableMessageIDs), '\'],
  663. sSessionId: smf_session_id,
  664. sSessionVar: smf_session_var,
  665. sButtonStrip: \'moderationbuttons\',
  666. sButtonStripDisplay: \'moderationbuttons_strip\',
  667. bUseImageButton: false,
  668. bCanRemove: ', $context['can_remove_post'] ? 'true' : 'false', ',
  669. sRemoveButtonLabel: \'', $txt['quickmod_delete_selected'], '\',
  670. sRemoveButtonImage: \'delete_selected.gif\',
  671. sRemoveButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  672. bCanRestore: ', $context['can_restore_msg'] ? 'true' : 'false', ',
  673. sRestoreButtonLabel: \'', $txt['quick_mod_restore'], '\',
  674. sRestoreButtonImage: \'restore_selected.gif\',
  675. sRestoreButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  676. sFormId: \'quickModForm\'
  677. });';
  678. echo '
  679. if (\'XMLHttpRequest\' in window)
  680. {
  681. var oQuickModify = new QuickModify({
  682. sScriptUrl: smf_scripturl,
  683. bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
  684. iTopicId: ', $context['current_topic'], ',
  685. sTemplateBodyEdit: ', JavaScriptEscape('
  686. <div id="quick_edit_body_container" style="width: 90%">
  687. <div id="error_box" style="padding: 4px;" class="error"></div>
  688. <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 />
  689. <input type="hidden" name="\' + smf_session_var + \'" value="\' + smf_session_id + \'" />
  690. <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />
  691. <input type="hidden" name="msg" value="%msg_id%" />
  692. <div class="righttext">
  693. <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" />
  694. </div>
  695. </div>'), ',
  696. sTemplateSubjectEdit: ', JavaScriptEscape('<input type="text" style="width: 90%;" name="subject" value="%subject%" size="80" maxlength="80" tabindex="' . $context['tabindex']++ . '" class="input_text" />'), ',
  697. sTemplateBodyNormal: ', JavaScriptEscape('%body%'), ',
  698. sTemplateSubjectNormal: ', JavaScriptEscape('<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.msg%msg_id%#msg%msg_id%" rel="nofollow">%subject%</a>'), ',
  699. sTemplateTopSubject: ', JavaScriptEscape($txt['topic'] . ': %subject% &nbsp;(' . $txt['read'] . ' ' . $context['num_views'] . ' ' . $txt['times'] . ')'), ',
  700. sErrorBorderStyle: ', JavaScriptEscape('1px solid red'), '
  701. });
  702. aJumpTo[aJumpTo.length] = new JumpTo({
  703. sContainerId: "display_jump_to",
  704. sJumpToTemplate: "<label class=\"smalltext\" for=\"%select_id%\">', $context['jump_to']['label'], ':<" + "/label> %dropdown_list%",
  705. iCurBoardId: ', $context['current_board'], ',
  706. iCurBoardChildLevel: ', $context['jump_to']['child_level'], ',
  707. sCurBoardName: "', $context['jump_to']['board_name'], '",
  708. sBoardChildLevelIndicator: "==",
  709. sBoardPrefix: "=> ",
  710. sCatSeparator: "-----------------------------",
  711. sCatPrefix: "",
  712. sGoButtonLabel: "', $txt['go'], '"
  713. });
  714. aIconLists[aIconLists.length] = new IconList({
  715. sBackReference: "aIconLists[" + aIconLists.length + "]",
  716. sIconIdPrefix: "msg_icon_",
  717. sScriptUrl: smf_scripturl,
  718. bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
  719. iBoardId: ', $context['current_board'], ',
  720. iTopicId: ', $context['current_topic'], ',
  721. sSessionId: smf_session_id,
  722. sSessionVar: smf_session_var,
  723. sLabelIconList: "', $txt['message_icon'], '",
  724. sBoxBackground: "transparent",
  725. sBoxBackgroundHover: "#ffffff",
  726. iBoxBorderWidthHover: 1,
  727. sBoxBorderColorHover: "#adadad" ,
  728. sContainerBackground: "#ffffff",
  729. sContainerBorder: "1px solid #adadad",
  730. sItemBorder: "1px solid #ffffff",
  731. sItemBorderHover: "1px dotted gray",
  732. sItemBackground: "transparent",
  733. sItemBackgroundHover: "#e0e0f0"
  734. });
  735. }';
  736. if (!empty($ignoredMsgs))
  737. {
  738. echo '
  739. var aIgnoreToggles = new Array();';
  740. foreach ($ignoredMsgs as $msgid)
  741. {
  742. echo '
  743. aIgnoreToggles[', $msgid, '] = new smc_Toggle({
  744. bToggleEnabled: true,
  745. bCurrentlyCollapsed: true,
  746. aSwappableContainers: [
  747. \'msg_', $msgid, '_extra_info\',
  748. \'msg_', $msgid, '\',
  749. \'msg_', $msgid, '_footer\',
  750. \'msg_', $msgid, '_quick_mod\',
  751. \'modify_button_', $msgid, '\',
  752. \'msg_', $msgid, '_signature\'
  753. ],
  754. aSwapLinks: [
  755. {
  756. sId: \'msg_', $msgid, '_ignored_link\',
  757. msgExpanded: \'\',
  758. msgCollapsed: ', JavaScriptEscape($txt['show_ignore_user_post']), '
  759. }
  760. ]
  761. });';
  762. }
  763. }
  764. echo '
  765. // ]]></script>';
  766. }
  767. ?>