Display.template.php 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  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="infobox">
  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', '.png" 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.png', 'lang' => true, 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']),
  103. 'results' => array('test' => 'show_view_results_button', 'text' => 'poll_results', 'image' => 'poll_results.png', '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.png', '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.png', '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.png', '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.png', '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.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'] : ''), '
  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. 'print' => array('test' => 'can_print', 'text' => 'print', 'image' => 'print.png', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),
  140. 'send' => array('test' => 'can_send_topic', 'text' => 'send_topic', 'image' => 'sendtopic.png', 'lang' => true, 'url' => $scripturl . '?action=emailuser;sa=sendtopic;topic=' . $context['current_topic'] . '.0'),
  141. 'mark_unread' => array('test' => 'can_mark_unread', 'text' => 'mark_unread', 'image' => 'markunread.png', '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']),
  142. 'notify' => array('test' => 'can_mark_notify', 'text' => $context['is_marked_notify'] ? 'unnotify' : 'notify', 'image' => ($context['is_marked_notify'] ? 'un' : '') . 'notify.png', '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']),
  143. 'add_poll' => array('test' => 'can_add_poll', 'text' => 'add_poll', 'image' => 'add_poll.png', 'lang' => true, 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']),
  144. );
  145. // Build the reply button array.
  146. $reply_button = array(
  147. 'reply' => array('test' => 'can_reply', 'text' => 'reply', 'image' => 'reply.png', 'lang' => true, 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true),
  148. );
  149. // Allow adding new buttons easily.
  150. call_integration_hook('integrate_display_buttons', array(&$normal_buttons));
  151. // Show the topic information - icon, subject, etc.
  152. echo '
  153. <div id="forumposts">
  154. <div class="cat_bar">
  155. <h3 class="catbg">
  156. <img src="', $settings['images_url'], '/topic/', $context['class'], '.png" align="bottom" alt="" />', $txt['topic'], ':&nbsp;', $context['subject'], ' &nbsp;(', $context['num_views'], ' ', $txt['views'], ')
  157. </h3>
  158. </div>
  159. <div class="windowbg">
  160. <div class="title_bar" style="margin: 0 11px 10px 11px; border-radius: 4px; overflow: auto;">
  161. <div class="pagelinks floatleft">', $txt['pages'], ': ', $context['page_index'],'</div>
  162. <div class="nextlinks_bottom floatright" style="padding: 4px 8px;">', $context['previous_next'], '</div>
  163. </div>
  164. ', template_button_strip($normal_buttons, 'left'), '', template_button_strip($reply_button, 'right'), '
  165. </div><a href="#" id="skipnav_target"></a>';
  166. if (!empty($settings['display_who_viewing']))
  167. {
  168. echo '
  169. <p id="whoisviewing" class="smalltext flow_auto">';
  170. // Show just numbers...?
  171. if ($settings['display_who_viewing'] == 1)
  172. echo count($context['view_members']), ' ', count($context['view_members']) == 1 ? $txt['who_member'] : $txt['members'];
  173. // Or show the actual people viewing the topic?
  174. else
  175. 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'] . ')');
  176. // Now show how many guests are here too.
  177. echo $txt['who_and'], $context['view_num_guests'], ' ', $context['view_num_guests'] == 1 ? $txt['guest'] : $txt['guests'], $txt['who_viewing_topic'], '
  178. </p>';
  179. }
  180. echo '
  181. <form action="', $scripturl, '?action=quickmod2;topic=', $context['current_topic'], '.', $context['start'], '" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\') : false">';
  182. $ignoredMsgs = array();
  183. $removableMessageIDs = array();
  184. $alternate = false;
  185. // Get all the messages...
  186. while ($message = $context['get_message']())
  187. {
  188. $ignoring = false;
  189. $alternate = !$alternate;
  190. if ($message['can_remove'])
  191. $removableMessageIDs[] = $message['id'];
  192. // Are we ignoring this message?
  193. if (!empty($message['is_ignored']))
  194. {
  195. $ignoring = true;
  196. $ignoredMsgs[] = $message['id'];
  197. }
  198. // Show the message anchor and a "new" anchor if this message is new.
  199. if ($message['id'] != $context['first_message'])
  200. echo '
  201. <a id="msg', $message['id'], '"></a>', $message['first_new'] ? '<a id="new"></a>' : '';
  202. echo '
  203. <div class="', $message['approved'] ? ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') : 'approvebg', '">';
  204. // Ignore user?
  205. //if($ignoring)
  206. // echo '
  207. // <a href="', $scripturl, '?action=ignoreuser;u=', $message['member']['id'], ';rt=', $context['current_topic'], ';rm=', $message['id'], '" class="ignore_button floatleft" title="Don\'t do it. You\'ll be sorry.">Resume viewing</a>
  208. // <div style="padding: 1em 1.7em 1em 15em;">You really do not want to see this post. This person drives you crazy.</div>';
  209. echo '
  210. <div class="post_wrapper"', $ignoring ? 'style="display:none;"' : '', '>';
  211. // Show information about the poster of this message.
  212. echo '
  213. <div class="poster">';
  214. // Show a link to the member's profile.
  215. echo '
  216. <ul class="reset smalltext" id="msg_', $message['id'], '_extra_info">';
  217. // Show the member's primary group (like 'Administrator') if they have one.
  218. //if (!empty($message['member']['group']))
  219. // echo '
  220. // <li class="membergroup">', $message['member']['group'], '</li>';
  221. // echo '
  222. // <li class="icons">', $message['member']['group_icons'], '</li>';
  223. // Show avatars, images, etc.?
  224. if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
  225. {
  226. echo '
  227. <li class="avatar">
  228. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '" class="', $message['member']['online']['is_online'] ?'online':'offline','">
  229. ', $message['member']['avatar']['image'], '
  230. </a>
  231. <ul class="reset">';
  232. // 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.
  233. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  234. echo '
  235. <li class="postgroup">', $message['member']['post_group'], '</li>';
  236. // Show how many posts they have made.
  237. if (!isset($context['disabled_fields']['posts']))
  238. echo '
  239. <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
  240. // Are we showing the warning status?
  241. if ($message['member']['can_see_warning'])
  242. echo '
  243. <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']], '" /><span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span>', $context['can_issue_warning'] ? '</a>' : '', '</li>';
  244. // Show the member's signature?
  245. if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  246. echo '
  247. <li class="signature" id="msg_', $message['id'], '_signature"><hr />', $message['member']['signature'], '</li>';
  248. echo '
  249. </ul>
  250. </li>';
  251. }
  252. // Don't show these things for guests.
  253. if (!$message['member']['is_guest'])
  254. {
  255. // Show online and offline buttons?
  256. if (!empty($modSettings['onlineEnable']) && ($context['can_send_pm']))
  257. {
  258. if(!$message['is_message_author'])
  259. {
  260. echo '
  261. <li class="online_button"><a href="', $scripturl,'?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $message['member']['name']. ' is online' : $message['member']['name']. ' is offline', '"><img src="', $message['member']['online']['image_href'], '" style="vertical-align: middle; margin-top: -0.1em;" alt="', $message['member']['online']['text'], '" />&nbsp;Send message</a></li>';
  262. }
  263. else
  264. {
  265. echo '
  266. <li class="online_button"><a href="', $scripturl,'?action=pm" title="Check my inbox">', $txt['pm_short'], ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a></li>';
  267. }
  268. }
  269. }
  270. echo '
  271. <li class="icons">', $message['member']['group_icons'], '</li>';
  272. // Show the member's primary group (like 'Administrator') if they have one.
  273. if (!empty($message['member']['group']))
  274. echo '
  275. <li class="membergroup">', $message['member']['group'], '</li>';
  276. // Show the post group if they have no other group or the option is on, and they are in a post group.
  277. elseif (($message['member']['group'] == '') && $message['member']['post_group'] != '')
  278. echo '
  279. <li class="membergroup">', $message['member']['post_group'], '</li>';
  280. // Show the member's custom title, if they have one.
  281. //if (!empty($message['member']['title']))
  282. // echo '
  283. // <li class="title">', $message['member']['title'], '</li>';
  284. // if(!$message['is_message_author'] && $context['user']['is_logged'])
  285. // {
  286. // echo'
  287. // <li class="floatleft" style="width: 58px; border-radius: 4px; margin: 0 0 0.4em 1.1em; padding: 0.2em;"><a href="', $scripturl, '?action=ignoreuser;u=', $message['member']['id'], ';rt=', $context['current_topic'], ';rm=', $message['id'], '">', $txt['ignore_link'], '</a></li>
  288. // <li class="floatright" style="width: 58px; border-radius: 4px; margin: 0 1.1em 0.4em 0; padding: 0.2em;"><a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '" title="', $txt['report_to_mod'], '">Report</a></li>';
  289. // }
  290. // Done with the information about the poster... on to the post itself.
  291. echo '
  292. </ul>
  293. </div><!--/poster-->
  294. <div class="postarea">
  295. <div class="keyinfo">
  296. <div class="messageicon">
  297. <img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
  298. </div>
  299. <h5 id="subject_', $message['id'], '" class="smalltext">
  300. <a href="', $message['href'], '" rel="nofollow" class="topic_reply_title" title="', $context['subject'], '">', !empty($message['counter']) ? $txt['reply_noun'] . ' ' . $message['counter'] : 'Opening Post', '</a>&nbsp;by <strong>', $message['member']['link'], '</strong>', (!empty($message['member']['title'])) ? '&nbsp;('. $message['member']['title']. ')' : '','&nbsp;-&nbsp;<time>', $message['time'], '</time>
  301. </h5>
  302. <a href="#top_most" class="go_up"><img src="', $settings['images_url'], '/go_up.png" alt="', $txt['go_up'], '" /></a>
  303. <a href="#bottom_most" class="go_down"><img src="', $settings['images_url'], '/go_down.png" alt="', $txt['go_down'], '" /></a>
  304. <div id="msg_', $message['id'], '_quick_mod"></div>
  305. </div>';
  306. // Show "� Last Edit: Time by Person �" if this post was edited.
  307. if ($settings['show_modify'] && !empty($message['modified']['name']))
  308. echo '
  309. <div class="smalltext" style="padding: 2px 0 0 10px; margin: 0 0 -4px 125px;">
  310. <em>', $txt['last_edit'], ': ', $message['modified']['time'], ' ', $txt['by'], ' ', $message['modified']['name'], '</em>
  311. </div>';
  312. // Show the post itself, finally!
  313. echo '
  314. <div class="post" style="',$ignoring?'display:none;':'','"><hr />';
  315. if (!$message['approved'] && $message['member']['id'] != 0 && $message['member']['id'] == $context['user']['id'])
  316. echo '
  317. <div class="approve_post">
  318. ', $txt['post_awaiting_approval'], '
  319. </div>';
  320. echo '
  321. <div class="inner" id="msg_', $message['id'], '"', ' style="padding-bottom: 0.6em;">', $message['body'], '</div>';
  322. // Assuming there are attachments...
  323. if (!empty($message['attachment']))
  324. {
  325. echo '
  326. <div id="msg_', $message['id'], '_footer" class="attachments smalltext">
  327. <div style="overflow: ', isBrowser('is_firefox') ? 'visible' : 'auto', ';">';
  328. $last_approved_state = 1;
  329. $attachments_per_line = 4;
  330. $i = 0;
  331. foreach ($message['attachment'] as $attachment)
  332. {
  333. // Show a special box for unapproved attachments...
  334. if ($attachment['is_approved'] != $last_approved_state)
  335. {
  336. $last_approved_state = 0;
  337. echo '
  338. <fieldset>
  339. <legend>', $txt['attach_awaiting_approve'];
  340. if ($context['can_approve'])
  341. echo '
  342. &nbsp;[<a href="', $scripturl, '?action=attachapprove;sa=all;mid=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve_all'], '</a>]';
  343. echo '
  344. </legend>';
  345. }
  346. echo '
  347. <div class="floatleft padding">
  348. <div class="attachments_top">';
  349. if ($attachment['is_image'])
  350. {
  351. if ($attachment['thumbnail']['has_thumb'])
  352. echo '
  353. <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 />';
  354. else
  355. echo '
  356. <img src="' . $attachment['href'] . ';image" alt="" width="' . $attachment['width'] . '" height="' . $attachment['height'] . '"/><br />';
  357. }
  358. echo '
  359. </div>
  360. <div class="attachments_bot">
  361. <a href="' . $attachment['href'] . '"><img src="' . $settings['images_url'] . '/icons/clip.png" class="centericon" alt="*" />&nbsp;' . $attachment['name'] . '</a> ';
  362. if (!$attachment['is_approved'] && $context['can_approve'])
  363. echo '
  364. [<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>] ';
  365. echo '
  366. <br />', $attachment['size'], ($attachment['is_image'] ? ', ' . $attachment['real_width'] . 'x' . $attachment['real_height'] . '<br />' . $txt['attach_viewed'] : '<br />' . $txt['attach_downloaded']) . ' ' . $attachment['downloads'] . ' ' . $txt['attach_times'] . '
  367. </div>';
  368. echo '
  369. </div>';
  370. // Next attachment line ?
  371. if (++$i % $attachments_per_line === 0)
  372. echo '
  373. <br class="clear" />';
  374. }
  375. // no more attachments, clear the float if its open
  376. if ($i % $attachments_per_line !== 0)
  377. echo '
  378. <br class="clear" />';
  379. // If we had unapproved attachments clean up.
  380. if ($last_approved_state == 0)
  381. echo '
  382. </fieldset>';
  383. echo '
  384. </div>
  385. </div>';
  386. }
  387. echo '
  388. </div>';
  389. if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
  390. echo '
  391. <ul class="reset quickbuttons">';
  392. // Show their personal text?
  393. if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
  394. echo '
  395. <li class="blurb">', $message['member']['blurb'], '</li>';
  396. // Can they reply? Have they turned on quick reply?
  397. //if ($context['can_quote'] && !empty($options['display_quick_reply']))
  398. // echo '
  399. // <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" title="', $txt['quote'], '&nbsp;', $message['member']['name'], '\'s post" onclick="return oQuickReply.quote(', $message['id'], ');" class="quote_button">', $txt['quote'], '</a></li>';
  400. // So... quick reply is off, but they *can* reply?
  401. //elseif ($context['can_quote'])
  402. // echo '
  403. // <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" title="', $txt['quote'], '&nbsp;', $message['member']['name'], '\'s post" class="quote_button">', $txt['quote'], '</a></li>';
  404. // Can the user modify the contents of this post?
  405. if ($message['can_modify'])
  406. echo '
  407. <li><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '" title="', $txt['fulledit'], '" class="modify_button">', $txt['fulledit'], '</a></li>';
  408. // Can the user modify the contents of this post? Show the modify inline image.
  409. if ($message['can_modify'])
  410. echo '
  411. <li><a href="#" class="modify_inline" title="', $txt['quick_edit'], '">', $txt['edit'], '<img src="', $settings['images_url'], '/icons/modify_inline.png" alt="', $txt['modify_msg'], '" title="', $txt['quick_edit'] ,'" id="modify_button_', $message['id'], '" style="cursor: pointer; display: none;" onclick="oQuickModify.modifyMsg(\'', $message['id'], '\')" /></a></li>';
  412. if ($context['can_moderate_forum'])
  413. {
  414. echo '
  415. <li class="moderation_button"><a href="#">', $txt['post_options'], '</a>
  416. <ul>';
  417. // Maybe they want to report this post to the moderator(s)?
  418. if ($context['can_report_moderator'])
  419. echo '
  420. <li><a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '">', $txt['report_to_mod'], '</a></li>';
  421. echo '
  422. <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>
  423. <li><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '" class="split_button">', $txt['split'], '</a></li>';
  424. // Maybe we can approve it, maybe we should?
  425. if ($message['can_approve'])
  426. echo '
  427. <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>';
  428. // Can we restore topics?
  429. if ($context['can_restore_msg'])
  430. echo '
  431. <li><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" class="restore_button">', $txt['restore_message'], '</a></li>';
  432. // Can we issue a warning because of this post? Remember, we can't give guests warnings.
  433. if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
  434. echo '
  435. <li><a href="', $scripturl, '?action=profile;area=issuewarning;u=', $message['member']['id'], ';msg=', $message['id'], '" title="', $txt['issue_warning_post'], '" class="issue_warning">Issue warning</a></li>';
  436. // Show a checkbox for quick moderation?
  437. if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
  438. echo '
  439. <li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"><label for="in_topic_mod_check_', $message['id'], '">Select post&nbsp;</label></li>';
  440. echo '
  441. <li><a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '" class="ip_link">', $message['member']['ip'], '</a></li>
  442. </ul>
  443. </li>';
  444. }
  445. // Can they reply? Have they turned on quick reply?
  446. if ($context['can_quote'] && !empty($options['display_quick_reply']))
  447. echo '
  448. <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" title="', $txt['quote'], '&nbsp;', $message['member']['name'], '\'s post" onclick="return oQuickReply.quote(', $message['id'], ');" class="quote_button">', $txt['quote'], '</a></li>';
  449. // So... quick reply is off, but they *can* reply?
  450. elseif ($context['can_quote'])
  451. echo '
  452. <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" title="', $txt['quote'], '&nbsp;', $message['member']['name'], '\'s post" class="quote_button">', $txt['quote'], '</a></li>';
  453. if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
  454. echo '
  455. </ul>';
  456. // // Show the member's signature?
  457. // if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  458. // echo '
  459. // <div class="signature" id="msg_', $message['id'], '_signature"><hr />', $message['member']['signature'], '</div>';
  460. echo '
  461. </div><!--/postarea-->
  462. </div><!--/post_wrapper-->
  463. </div>
  464. <hr class="post_separator" />';
  465. }
  466. echo '
  467. </form>
  468. </div>
  469. <a id="lastPost"></a>';
  470. $mod_buttons = array(
  471. 'move' => array('test' => 'can_move', 'text' => 'move_topic', 'image' => 'admin_move.png', 'lang' => true, 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'),
  472. 'delete' => array('test' => 'can_delete', 'text' => 'remove_topic', 'image' => 'admin_rem.png', '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']),
  473. 'lock' => array('test' => 'can_lock', 'text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'lang' => true, 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  474. 'sticky' => array('test' => 'can_sticky', 'text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'lang' => true, 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  475. 'merge' => array('test' => 'can_merge', 'text' => 'merge', 'image' => 'merge.png', 'lang' => true, 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']),
  476. 'calendar' => array('test' => 'calendar_post', 'text' => 'calendar_link', 'image' => 'linktocal.png', 'lang' => true, 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'),
  477. );
  478. // Restore topic. eh? No monkey business.
  479. if ($context['can_restore_topic'])
  480. $mod_buttons[] = array('text' => 'restore_topic', 'image' => '', 'lang' => true, 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']);
  481. // Allow adding new mod buttons easily.
  482. call_integration_hook('integrate_mod_buttons', array(&$mod_buttons));
  483. echo '
  484. <div class="windowbg" id="display_lower_buttons">
  485. ', template_button_strip($normal_buttons, 'left'), '', template_button_strip($reply_button, 'right'), '
  486. <div id="moderationbuttons">', template_button_strip($mod_buttons, 'bottom', array('id' => 'moderationbuttons_strip')), '</div>
  487. <div class="title_bar" style="margin: 10px 11px 10px 11px; border-radius: 4px; clear: both;">
  488. <div class="pagelinks floatleft" style="font-weight: bold;">', $txt['pages'], ': ', $context['page_index'],'</div>
  489. <div class="nextlinks_bottom floatright" style="padding: 4px 8px;">', $context['previous_next'], '</div>
  490. </div>';
  491. // Show the page index... "Pages: [1]".
  492. // Show the jumpto box, or actually...let Javascript do it.
  493. echo '
  494. <div class="navigate_section">',theme_linktree(),'</div>
  495. <div class="title_bar" style="margin: 10px 11px 0 11px; border-radius: 4px;">
  496. <div class="nextlinks_bottom floatleft" style="display: none; margin-bottom: 0; clear: none; padding: 4px 8px;">', $context['previous_next'], '</div>
  497. <div class="floatright" style="margin-top: 0; clear: none;" id="display_jump_to">&nbsp;</div>
  498. </div>
  499. </div><br class="clear" />';
  500. // Show the lower breadcrumbs.
  501. if ($context['can_reply'] && !empty($options['display_quick_reply']))
  502. {
  503. echo '
  504. <a id="quickreply"></a><br />
  505. <div class="tborder" id="quickreplybox">
  506. <div class="cat_bar">
  507. <h3 class="catbg">
  508. <a href="javascript:oQuickReply.swap();" id="QuickReply_swap">
  509. <img src="', $settings['images_url'], '/', $options['display_quick_reply'] > 1 ? 'upshrink' : 'upshrink2', '.png" alt="+" id="quickReplyExpand" class="icon floatright" />
  510. </a>
  511. <a href="javascript:oQuickReply.swap();">', $txt['quick_reply'], '</a>
  512. </h3>
  513. </div>
  514. <div id="quickReplyOptions"', $options['display_quick_reply'] > 1 ? '' : ' style="display: none"', '>
  515. <div class="roundframe">
  516. <p class="smalltext lefttext">', $txt['quick_reply_desc'], '</p>
  517. ', $context['is_locked'] ? '<p class="alert smalltext">' . $txt['quick_reply_warning'] . '</p>' : '',
  518. $context['oldTopicError'] ? '<p class="alert smalltext">' . sprintf($txt['error_old_topic'], $modSettings['oldTopicDays']) . '</p>' : '', '
  519. ', $context['can_reply_approved'] ? '' : '<em>' . $txt['wait_for_approval'] . '</em>', '
  520. ', !$context['can_reply_approved'] && $context['require_verification'] ? '<br />' : '', '
  521. <form action="', $scripturl, '?board=', $context['current_board'], ';action=post2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" class="flow_auto" onsubmit="submitonce(this);">
  522. <input type="hidden" name="topic" value="', $context['current_topic'], '" />
  523. <input type="hidden" name="subject" value="', $context['response_prefix'], $context['subject'], '" />
  524. <input type="hidden" name="icon" value="xx" />
  525. <input type="hidden" name="from_qr" value="1" />
  526. <input type="hidden" name="notify" value="', $context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
  527. <input type="hidden" name="not_approved" value="', !$context['can_reply_approved'], '" />
  528. <input type="hidden" name="goback" value="', empty($options['return_to_post']) ? '0' : '1', '" />
  529. <input type="hidden" name="last_msg" value="', $context['topic_last_message'], '" />
  530. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  531. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />';
  532. // Guests just need more.
  533. if ($context['user']['is_guest'])
  534. echo '
  535. <strong>', $txt['name'], ':</strong> <input type="text" name="guestname" value="', $context['name'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" />
  536. <strong>', $txt['email'], ':</strong> <input type="text" name="email" value="', $context['email'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" /><br />';
  537. // Is visual verification enabled?
  538. if ($context['require_verification'])
  539. echo '
  540. <strong>', $txt['verification'], ':</strong>', template_control_verification($context['visual_verification_id'], 'quick_reply'), '<br />';
  541. if ($options['display_quick_reply'] < 3)
  542. {
  543. echo '
  544. <div class="quickReplyContent">
  545. <textarea class ="expand_test" cols="" rows="" name="message" tabindex="', $context['tabindex']++, '"></textarea>
  546. </div>';
  547. }
  548. else
  549. {
  550. // Show the actual posting area...
  551. if ($context['show_bbc'])
  552. {
  553. echo '
  554. <div id="bbcBox_message"></div>';
  555. }
  556. // What about smileys?
  557. if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup']))
  558. echo '
  559. <div id="smileyBox_message"></div>';
  560. echo '
  561. ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message'), '
  562. <script type="text/javascript"><!-- // --><![CDATA[
  563. function insertQuoteFast(messageid)
  564. {
  565. if (window.XMLHttpRequest)
  566. 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);
  567. else
  568. 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);
  569. return false;
  570. }
  571. function onDocReceived(XMLDoc)
  572. {
  573. var text = \'\';
  574. for (var i = 0, n = XMLDoc.getElementsByTagName(\'quote\')[0].childNodes.length; i < n; i++)
  575. text += XMLDoc.getElementsByTagName(\'quote\')[0].childNodes[i].nodeValue;
  576. oEditorHandle_', $context['post_box_name'], '.insertText(text, false, true);
  577. ajax_indicator(false);
  578. }
  579. // ]]></script>';
  580. }
  581. echo '
  582. <div class="padding">
  583. <input type="submit" name="post" value="', $txt['post'], '" onclick="return submitThisOnce(this);" accesskey="s" tabindex="', $context['tabindex']++, '" class="button_submit" />
  584. <input type="submit" name="preview" value="', $txt['preview'], '" onclick="return submitThisOnce(this);" accesskey="p" tabindex="', $context['tabindex']++, '" class="button_submit" />
  585. </div>';
  586. if ($context['show_spellchecking'])
  587. echo '
  588. <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'postmodify\', \'message\');" tabindex="', $context['tabindex']++, '" class="button_submit" />';
  589. echo '
  590. </form>
  591. </div>
  592. </div>
  593. </div>';
  594. }
  595. else
  596. echo '
  597. <br class="clear" />';
  598. if ($context['show_spellchecking'])
  599. echo '
  600. <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>
  601. <script type="text/javascript" src="' . $settings['default_theme_url'] . '/scripts/spellcheck.js"></script>';
  602. echo '
  603. <script type="text/javascript" src="' . $settings['default_theme_url'] . '/scripts/topic.js"></script>
  604. <script type="text/javascript"><!-- // --><![CDATA[';
  605. if (!empty($options['display_quick_reply']))
  606. echo '
  607. var oQuickReply = new QuickReply({
  608. bDefaultCollapsed: ', !empty($options['display_quick_reply']) && $options['display_quick_reply'] > 1 ? 'false' : 'true', ',
  609. iTopicId: ', $context['current_topic'], ',
  610. iStart: ', $context['start'], ',
  611. sScriptUrl: smf_scripturl,
  612. sImagesUrl: smf_images_url,
  613. sContainerId: "quickReplyOptions",
  614. sImageId: "quickReplyExpand",
  615. sImageCollapsed: "upshrink.png",
  616. sImageExpanded: "upshrink2.png",
  617. sJumpAnchor: "quickreply",
  618. bIsFull: ', !empty($options['display_quick_reply']) && $options['display_quick_reply'] > 2 ? 'true' : 'false', '
  619. });';
  620. if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $context['can_remove_post'])
  621. echo '
  622. var oInTopicModeration = new InTopicModeration({
  623. sSelf: \'oInTopicModeration\',
  624. sCheckboxContainerMask: \'in_topic_mod_check_\',
  625. aMessageIds: [\'', implode('\', \'', $removableMessageIDs), '\'],
  626. sSessionId: smf_session_id,
  627. sSessionVar: smf_session_var,
  628. sButtonStrip: \'moderationbuttons\',
  629. sButtonStripDisplay: \'moderationbuttons_strip\',
  630. bUseImageButton: false,
  631. bCanRemove: ', $context['can_remove_post'] ? 'true' : 'false', ',
  632. sRemoveButtonLabel: \'', $txt['quickmod_delete_selected'], '\',
  633. sRemoveButtonImage: \'delete_selected.png\',
  634. sRemoveButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  635. bCanRestore: ', $context['can_restore_msg'] ? 'true' : 'false', ',
  636. sRestoreButtonLabel: \'', $txt['quick_mod_restore'], '\',
  637. sRestoreButtonImage: \'restore_selected.png\',
  638. sRestoreButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  639. bCanSplit: ', $context['can_split'] ? 'true' : 'false', ',
  640. sSplitButtonLabel: \'', $txt['quickmod_split_selected'], '\',
  641. sSplitButtonImage: \'split_selected.png\',
  642. sSplitButtonConfirm: \'', $txt['quickmod_confirm'], '\',
  643. sFormId: \'quickModForm\'
  644. });';
  645. echo '
  646. if (\'XMLHttpRequest\' in window)
  647. {
  648. var oQuickModify = new QuickModify({
  649. sScriptUrl: smf_scripturl,
  650. bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
  651. iTopicId: ', $context['current_topic'], ',
  652. sTemplateBodyEdit: ', JavaScriptEscape('
  653. <div id="quick_edit_body_container" style="width: 90%">
  654. <div id="error_box" style="padding: 4px;" class="error"></div>
  655. <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 />
  656. <input type="hidden" name="\' + smf_session_var + \'" value="\' + smf_session_id + \'" />
  657. <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />
  658. <input type="hidden" name="msg" value="%msg_id%" />
  659. <div class="righttext">
  660. <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" />
  661. </div>
  662. </div>'), ',
  663. sTemplateSubjectEdit: ', JavaScriptEscape('<input type="text" style="width: 90%;" name="subject" value="%subject%" size="80" maxlength="80" tabindex="' . $context['tabindex']++ . '" class="input_text" />'), ',
  664. sTemplateBodyNormal: ', JavaScriptEscape('%body%'), ',
  665. sTemplateSubjectNormal: ', JavaScriptEscape('<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.msg%msg_id%#msg%msg_id%" rel="nofollow" class="topic_reply_title" title="%subject%"><strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' ' . $message['counter'] : 'Opening Post', ':</a></strong><time> ', $message['time'], '</time>'), ',
  666. sTemplateTopSubject: ', JavaScriptEscape($txt['topic'] . ':&nbsp; %subject% &nbsp;(', $context['num_views'], ' ', $txt['views'], ')'), ',
  667. sErrorBorderStyle: ', JavaScriptEscape('1px solid red'), '
  668. });
  669. aJumpTo[aJumpTo.length] = new JumpTo({
  670. sContainerId: "display_jump_to",
  671. sJumpToTemplate: "<label class=\"smalltext\" for=\"%select_id%\">', $context['jump_to']['label'], ':<" + "/label> %dropdown_list%",
  672. iCurBoardId: ', $context['current_board'], ',
  673. iCurBoardChildLevel: ', $context['jump_to']['child_level'], ',
  674. sCurBoardName: "', $context['jump_to']['board_name'], '",
  675. sBoardChildLevelIndicator: "->",
  676. sBoardPrefix: "",
  677. sCatSeparator: "-----------------------------",
  678. sCatPrefix: "",
  679. sGoButtonLabel: "', $txt['go'], '"
  680. });
  681. aIconLists[aIconLists.length] = new IconList({
  682. sBackReference: "aIconLists[" + aIconLists.length + "]",
  683. sIconIdPrefix: "msg_icon_",
  684. sScriptUrl: smf_scripturl,
  685. bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
  686. iBoardId: ', $context['current_board'], ',
  687. iTopicId: ', $context['current_topic'], ',
  688. sSessionId: smf_session_id,
  689. sSessionVar: smf_session_var,
  690. sLabelIconList: "', $txt['message_icon'], '",
  691. sBoxBackground: "transparent",
  692. sBoxBackgroundHover: "#ffffff",
  693. iBoxBorderWidthHover: 1,
  694. sBoxBorderColorHover: "#adadad" ,
  695. sContainerBackground: "#ffffff",
  696. sContainerBorder: "1px solid #adadad",
  697. sItemBorder: "1px solid #ffffff",
  698. sItemBorderHover: "1px dotted gray",
  699. sItemBackground: "transparent",
  700. sItemBackgroundHover: "#e0e0f0"
  701. });
  702. }';
  703. if (!empty($ignoredMsgs))
  704. {
  705. echo '
  706. var aIgnoreToggles = new Array();';
  707. foreach ($ignoredMsgs as $msgid)
  708. {
  709. echo '
  710. aIgnoreToggles[', $msgid, '] = new smc_Toggle({
  711. bToggleEnabled: true,
  712. bCurrentlyCollapsed: true,
  713. aSwappableContainers: [
  714. \'msg_', $msgid, '_extra_info\',
  715. \'msg_', $msgid, '\',
  716. \'msg_', $msgid, '_footer\',
  717. \'msg_', $msgid, '_quick_mod\',
  718. \'modify_button_', $msgid, '\',
  719. \'msg_', $msgid, '_signature\'
  720. ],
  721. aSwapLinks: [
  722. {
  723. sId: \'msg_', $msgid, '_ignored_link\',
  724. msgExpanded: \'\',
  725. msgCollapsed: ', JavaScriptEscape($txt['show_ignore_user_post']), '
  726. }
  727. ]
  728. });';
  729. }
  730. }
  731. echo '
  732. $(document).ready(function(){
  733. $("li a.quote_button, li a.modify_button, li a.modify_inline, a.topic_reply_title").bt(jQuery.bt.options = {positions: "top, bottom"});
  734. });
  735. // ]]></script>';
  736. }
  737. ?>