PageRenderTime 65ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 1ms

/Themes/default/PersonalMessage.template.php

https://github.com/smf-portal/SMF2.1
PHP | 1987 lines | 1652 code | 206 blank | 129 comment | 293 complexity | f0dfdfa608709dc3f17bd3f770aa1f75 MD5 | raw file

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2012 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. // This is the main sidebar for the personal messages section.
  13. function template_pm_above()
  14. {
  15. global $context, $settings, $options, $txt;
  16. echo '
  17. <div id="personal_messages">';
  18. // Show the capacity bar, if available.
  19. if (!empty($context['limit_bar']))
  20. echo '
  21. <div class="title_bar">
  22. <h3 class="titlebg">
  23. <span class="floatleft">', $txt['pm_capacity'], ':</span>
  24. <span class="floatleft capacity_bar">
  25. <span class="', $context['limit_bar']['percent'] > 85 ? 'full' : ($context['limit_bar']['percent'] > 40 ? 'filled' : 'empty'), '" style="width: ', $context['limit_bar']['percent'] / 10, 'em;"></span>
  26. </span>
  27. <span class="floatright', $context['limit_bar']['percent'] > 90 ? ' alert' : '', '">', $context['limit_bar']['text'], '</span>
  28. </h3>
  29. </div>';
  30. // Message sent? Show a small indication.
  31. if (isset($context['pm_sent']))
  32. echo '
  33. <div class="infobox">
  34. ', $txt['pm_sent'], '
  35. </div>';
  36. }
  37. // Just the end of the index bar, nothing special.
  38. function template_pm_below()
  39. {
  40. global $context, $settings, $options;
  41. echo '
  42. </div>';
  43. }
  44. function template_folder()
  45. {
  46. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  47. // The every helpful javascript!
  48. echo '
  49. <script type="text/javascript"><!-- // --><![CDATA[
  50. var allLabels = {};
  51. var currentLabels = {};
  52. function loadLabelChoices()
  53. {
  54. var listing = document.forms.pmFolder.elements;
  55. var theSelect = document.forms.pmFolder.pm_action;
  56. var add, remove, toAdd = {length: 0}, toRemove = {length: 0};
  57. if (theSelect.childNodes.length == 0)
  58. return;
  59. // This is done this way for internationalization reasons.
  60. if (!(\'-1\' in allLabels))
  61. {
  62. for (var o = 0; o < theSelect.options.length; o++)
  63. if (theSelect.options[o].value.substr(0, 4) == "rem_")
  64. allLabels[theSelect.options[o].value.substr(4)] = theSelect.options[o].text;
  65. }
  66. for (var i = 0; i < listing.length; i++)
  67. {
  68. if (listing[i].name != "pms[]" || !listing[i].checked)
  69. continue;
  70. var alreadyThere = [], x;
  71. for (x in currentLabels[listing[i].value])
  72. {
  73. if (!(x in toRemove))
  74. {
  75. toRemove[x] = allLabels[x];
  76. toRemove.length++;
  77. }
  78. alreadyThere[x] = allLabels[x];
  79. }
  80. for (x in allLabels)
  81. {
  82. if (!(x in alreadyThere))
  83. {
  84. toAdd[x] = allLabels[x];
  85. toAdd.length++;
  86. }
  87. }
  88. }
  89. while (theSelect.options.length > 2)
  90. theSelect.options[2] = null;
  91. if (toAdd.length != 0)
  92. {
  93. theSelect.options[theSelect.options.length] = new Option("', $txt['pm_msg_label_apply'], '", "");
  94. setInnerHTML(theSelect.options[theSelect.options.length - 1], "', $txt['pm_msg_label_apply'], '");
  95. theSelect.options[theSelect.options.length - 1].disabled = true;
  96. for (i in toAdd)
  97. {
  98. if (i != "length")
  99. theSelect.options[theSelect.options.length] = new Option(toAdd[i], "add_" + i);
  100. }
  101. }
  102. if (toRemove.length != 0)
  103. {
  104. theSelect.options[theSelect.options.length] = new Option("', $txt['pm_msg_label_remove'], '", "");
  105. setInnerHTML(theSelect.options[theSelect.options.length - 1], "', $txt['pm_msg_label_remove'], '");
  106. theSelect.options[theSelect.options.length - 1].disabled = true;
  107. for (i in toRemove)
  108. {
  109. if (i != "length")
  110. theSelect.options[theSelect.options.length] = new Option(toRemove[i], "rem_" + i);
  111. }
  112. }
  113. }
  114. // ]]></script>';
  115. echo '
  116. <form class="flow_hidden" action="', $scripturl, '?action=pm;sa=pmactions;', $context['display_mode'] == 2 ? 'conversation;' : '', 'f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '" method="post" accept-charset="', $context['character_set'], '" name="pmFolder">';
  117. // If we are not in single display mode show the subjects on the top!
  118. if ($context['display_mode'] != 1)
  119. {
  120. template_subject_list();
  121. echo '<div class="clear_right"><br /></div>';
  122. }
  123. // Got some messages to display?
  124. if ($context['get_pmessage']('message', true))
  125. {
  126. // Show the helpful titlebar - generally.
  127. if ($context['display_mode'] != 1)
  128. echo '
  129. <div class="cat_bar">
  130. <h3 class="catbg">
  131. <span id="author">', $txt['author'], '</span>
  132. <span id="topic_title">', $txt[$context['display_mode'] == 0 ? 'messages' : 'conversation'], '</span>
  133. </h3>
  134. </div>';
  135. // Show a few buttons if we are in conversation mode and outputting the first message.
  136. if ($context['display_mode'] == 2)
  137. {
  138. // Show the conversation buttons.
  139. echo '
  140. <div class="pagesection">';
  141. template_button_strip($context['conversation_buttons'], 'right');
  142. echo '
  143. </div>';
  144. }
  145. while ($message = $context['get_pmessage']('message'))
  146. {
  147. $window_class = $message['alternate'] == 0 ? 'windowbg' : 'windowbg2';
  148. echo '
  149. <div class="', $window_class, '">
  150. <div class="poster">
  151. <ul class="dropmenu">
  152. <li>
  153. <h4>
  154. <a id="msg', $message['id'], '"></a>';
  155. // Show a link to the member's profile.
  156. echo '
  157. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
  158. <span style="padding: 6px; display: block;">', $message['member']['name'], '</span>';
  159. // Show avatars, images, etc.?
  160. if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
  161. echo '
  162. ', $message['member']['avatar']['image'], '';
  163. echo '
  164. </a>
  165. </h4>
  166. <ul class="smalltext" id="msg_', $message['id'], '_extra_info">';
  167. // Show the member's custom title, if they have one.
  168. if (isset($message['member']['title']) && $message['member']['title'] != '')
  169. echo '
  170. <li class="title">', $message['member']['title'], '</li>';
  171. // Don't show these things for guests.
  172. if (!$message['member']['is_guest'])
  173. {
  174. // 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.
  175. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  176. echo '
  177. <li class="postgroup">', $message['member']['post_group'], '</li>';
  178. // Show how many posts they have made.
  179. if (!isset($context['disabled_fields']['posts']))
  180. echo '
  181. <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
  182. // Is karma display enabled? Total or +/-?
  183. if ($modSettings['karmaMode'] == '1')
  184. echo '
  185. <li class="karma">', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
  186. elseif ($modSettings['karmaMode'] == '2')
  187. echo '
  188. <li class="karma">', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';
  189. // Is this user allowed to modify this member's karma?
  190. if ($message['member']['karma']['allow'])
  191. echo '
  192. <li class="karma_allow">
  193. <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pm=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a> <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pm=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a>
  194. </li>';
  195. // Show the member's gender icon?
  196. if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
  197. echo '
  198. <li class="gender">', $txt['gender'], ': ', $message['member']['gender']['image'], '</li>';
  199. // Show their personal text?
  200. if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
  201. echo '
  202. <li class="blurb">', $message['member']['blurb'], '</li>';
  203. // Any custom fields to show as icons?
  204. if (!empty($message['member']['custom_fields']))
  205. {
  206. $shown = false;
  207. foreach ($message['member']['custom_fields'] as $custom)
  208. {
  209. if ($custom['placement'] != 1 || empty($custom['value']))
  210. continue;
  211. if (empty($shown))
  212. {
  213. $shown = true;
  214. echo '
  215. <li class="im_icons">
  216. <ul>';
  217. }
  218. echo '
  219. <li>', $custom['value'], '</li>';
  220. }
  221. if ($shown)
  222. echo '
  223. </ul>
  224. </li>';
  225. }
  226. // This shows the popular messaging icons.
  227. if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
  228. echo '
  229. <li class="im_icons">
  230. <ul>', !isset($context['disabled_fields']['icq']) && !empty($message['member']['icq']['link']) ? '
  231. <li>' . $message['member']['icq']['link'] . '</li>' : '', !isset($context['disabled_fields']['msn']) && !empty($message['member']['msn']['link']) ? '
  232. <li>' . $message['member']['msn']['link'] . '</li>' : '', !isset($context['disabled_fields']['aim']) && !empty($message['member']['aim']['link']) ? '
  233. <li>' . $message['member']['aim']['link'] . '</li>' : '', !isset($context['disabled_fields']['yim']) && !empty($message['member']['yim']['link']) ? '
  234. <li>' . $message['member']['yim']['link'] . '</li>' : '', '
  235. </ul>
  236. </li>';
  237. // Stuff for the staff to wallop them with.
  238. echo '
  239. <li><hr /></li>';
  240. if ($message['can_report'])
  241. echo '
  242. <li class="report_link"><a href="' . $scripturl . '?action=pm;sa=report;l=' . $context['current_label_id'] . ';pmsg=' . $message['id'] . '">' . $txt['pm_report_to_admin'] . '</a></li>';
  243. // Can we issue a warning because of this post? Remember, we can't give guests warnings.
  244. if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
  245. echo '
  246. <li class="issue_warning"><a href="', $scripturl, '?action=profile;area=issuewarning;u=', $message['member']['id'], ';msg=', $message['id'], '"><img src="', $settings['images_url'], '/warn.png" alt="', $txt['issue_warning_post'], '" title="', $txt['issue_warning_post'], '" /></a></li>';
  247. // Show the IP to this user for this post - because you can moderate?
  248. if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
  249. echo '
  250. <li class="poster_ip"><a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a></li>';
  251. // Or, should we show it because this is you?
  252. elseif ($message['can_see_ip'])
  253. echo '
  254. <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a></li>';
  255. // Okay, you are logged in, then we can show something about why IPs are logged...
  256. else
  257. echo '
  258. <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a></li>';
  259. // Show the profile, website, email address, and personal message buttons.
  260. if ($message['member']['show_profile_buttons'])
  261. {
  262. echo '
  263. <li class="profile">
  264. <ul>';
  265. // Show the profile button
  266. if ($message['member']['can_view_profile'])
  267. echo '
  268. <li><a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="' . $txt['view_profile'] . '" title="' . $txt['view_profile'] . '" />' : $txt['view_profile']), '</a></li>';
  269. // Don't show an icon if they haven't specified a website.
  270. if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
  271. echo '
  272. <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/www_sm.png" alt="' . $message['member']['website']['title'] . '" />' : $txt['www']), '</a></li>';
  273. // Don't show the email address if they want it hidden.
  274. if (in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')) && $context['can_send_email'])
  275. echo '
  276. <li><a href="', $scripturl, '?action=emailuser;sa=email;uid=', $message['member']['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.png" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
  277. // Since we know this person isn't a guest, you *can* message them.
  278. if ($context['can_send_pm'])
  279. echo '
  280. <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') . '.png" 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>';
  281. echo '
  282. </ul>
  283. </li>';
  284. }
  285. // Any custom fields for standard placement?
  286. if (!empty($message['member']['custom_fields']))
  287. {
  288. foreach ($message['member']['custom_fields'] as $custom)
  289. if (empty($custom['placement']) || empty($custom['value']))
  290. echo '
  291. <li class="custom">', $custom['title'], ': ', $custom['value'], '</li>';
  292. }
  293. // Are we showing the warning status?
  294. if ($message['member']['can_see_warning'])
  295. echo '
  296. <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<img src="', $settings['images_url'], '/warning_', $message['member']['warning_status'], '.png" alt="', $txt['user_warn_' . $message['member']['warning_status']], '" />', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>';
  297. }
  298. echo '
  299. </ul>
  300. </li>
  301. <li class="icons">', $message['member']['group_icons'], '</li>';
  302. // Show the member's primary group (like 'Administrator') if they have one.
  303. if (isset($message['member']['group']) && $message['member']['group'] != '')
  304. echo '
  305. <li class="membergroup">', $message['member']['group'], '</li>';
  306. // Show online and offline buttons? PHP could do with a little bit of cleaning up here for brevity, but it works.
  307. // The plan is to make these buttons act sensibly, and link to your own inbox in your own posts (with new PM notification).
  308. // Still has a little bit of hard-coded text. This may be a place where translators should be able to write inclusive strings,
  309. // instead of dealing with $txt['by'] etc in the markup. Must be brief to work, anyway. Cannot ramble on at all.
  310. if ($context['can_send_pm'] && $message['is_message_author'])
  311. {
  312. echo '
  313. <li class="poster_online"><a href="', $scripturl,'?action=pm">', $txt['pm_short'], ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a></li>';
  314. }
  315. elseif ($context['can_send_pm'] && !$message['is_message_author'] && !$message['member']['is_guest'])
  316. {
  317. if(!empty($modSettings['onlineEnable']))
  318. echo '
  319. <li class="poster_online"><a href="', $scripturl,'?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['member_online_text'], '">', $txt['send_message'], ' <img src="'. $message['member']['online']['image_href']. '" alt="" /></a></li>';
  320. else
  321. echo '
  322. <li class="poster_online"><a href="', $scripturl,'?action=pm;sa=send;u=', $message['member']['id'], '">', $txt['send_message'], '</a></li>';
  323. }
  324. elseif (!$context['can_send_pm'] && !empty($modSettings['onlineEnable']))
  325. echo '
  326. <li class="poster_online">', ($message['member']['online']['is_online']) ? $txt['online'] : $txt['offline'], '<img src="'. $message['member']['online']['image_href']. '" alt="" /></li>';
  327. // Done with the information about the poster... on to the post itself.
  328. echo '
  329. </ul>
  330. </div>
  331. <div class="postarea">
  332. <div class="flow_hidden">
  333. <div class="keyinfo">
  334. <h5 id="subject_', $message['id'], '">
  335. ', $message['subject'], '
  336. </h5>';
  337. // Show who the message was sent to.
  338. echo '
  339. <span class="smalltext">&#171; <strong> ', $txt['sent_to'], ':</strong> ';
  340. // People it was sent directly to....
  341. if (!empty($message['recipients']['to']))
  342. echo implode(', ', $message['recipients']['to']);
  343. // Otherwise, we're just going to say "some people"...
  344. elseif ($context['folder'] != 'sent')
  345. echo '(', $txt['pm_undisclosed_recipients'], ')';
  346. echo '
  347. <strong> ', $txt['on'], ':</strong> ', $message['time'], ' &#187;
  348. </span>';
  349. // If we're in the sent items, show who it was sent to besides the "To:" people.
  350. if (!empty($message['recipients']['bcc']))
  351. echo '
  352. <br /><span class="smalltext">&#171; <strong> ', $txt['pm_bcc'], ':</strong> ', implode(', ', $message['recipients']['bcc']), ' &#187;</span>';
  353. if (!empty($message['is_replied_to']))
  354. echo '
  355. <br /><span class="smalltext">&#171; ', $txt['pm_is_replied_to'], ' &#187;</span>';
  356. echo '
  357. </div>
  358. <ul class="reset smalltext quickbuttons">';
  359. // Show reply buttons if you have the permission to send PMs.
  360. if ($context['can_send_pm'])
  361. {
  362. // You can't really reply if the member is gone.
  363. if (!$message['member']['is_guest'])
  364. {
  365. // Is there than more than one recipient you can reply to?
  366. if ($message['number_recipients'] > 1 && $context['display_mode'] != 2)
  367. echo '
  368. <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=all" class="reply_all_button">', $txt['reply_to_all'], '</a></li>';
  369. echo '
  370. <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '" class="reply_button">', $txt['reply'], '</a></li>
  371. <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote', $context['folder'] == 'sent' ? '' : ';u=' . $message['member']['id'], '" class="quote_button">', $txt['quote'], '</a></li>';
  372. }
  373. // This is for "forwarding" - even if the member is gone.
  374. else
  375. echo '
  376. <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote" class="quote_button">', $txt['reply_quote'], '</a></li>';
  377. }
  378. echo '
  379. <li><a href="', $scripturl, '?action=pm;sa=pmactions;pm_actions[', $message['id'], ']=delete;f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', addslashes($txt['remove_message']), '?\');" class="remove_button">', $txt['delete'], '</a></li>';
  380. if (empty($context['display_mode']))
  381. echo '
  382. <li class="inline_mod_check"><input type="checkbox" name="pms[]" id="deletedisplay', $message['id'], '" value="', $message['id'], '" onclick="document.getElementById(\'deletelisting', $message['id'], '\').checked = this.checked;" class="input_check" /></li>';
  383. echo '
  384. </ul>
  385. </div>
  386. <div class="post">
  387. <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>';
  388. // Are there any custom profile fields for above the signature?
  389. if (!empty($message['member']['custom_fields']))
  390. {
  391. $shown = false;
  392. foreach ($message['member']['custom_fields'] as $custom)
  393. {
  394. if ($custom['placement'] != 2 || empty($custom['value']))
  395. continue;
  396. if (!$shown)
  397. {
  398. $shown = true;
  399. echo '
  400. <div class="custom_fields_above_signature">
  401. <ul class="reset nolist">';
  402. }
  403. echo '
  404. <li>', $custom['value'], '</li>';
  405. }
  406. if ($shown)
  407. echo '
  408. </ul>
  409. </div>';
  410. }
  411. // Show the member's signature?
  412. if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  413. echo '
  414. <div class="signature">', $message['member']['signature'], '</div>';
  415. // Add an extra line at the bottom if we have labels enabled.
  416. if ($context['folder'] != 'sent' && !empty($context['currently_using_labels']) && $context['display_mode'] != 2)
  417. {
  418. echo '
  419. <div class="labels righttext flow_auto">';
  420. // Add the label drop down box.
  421. if (!empty($context['currently_using_labels']))
  422. {
  423. echo '
  424. <select name="pm_actions[', $message['id'], ']" onchange="if (this.options[this.selectedIndex].value) form.submit();">
  425. <option value="">', $txt['pm_msg_label_title'], ':</option>
  426. <option value="" disabled="disabled">---------------</option>';
  427. // Are there any labels which can be added to this?
  428. if (!$message['fully_labeled'])
  429. {
  430. echo '
  431. <option value="" disabled="disabled">', $txt['pm_msg_label_apply'], ':</option>';
  432. foreach ($context['labels'] as $label)
  433. if (!isset($message['labels'][$label['id']]))
  434. echo '
  435. <option value="', $label['id'], '">&nbsp;', $label['name'], '</option>';
  436. }
  437. // ... and are there any that can be removed?
  438. if (!empty($message['labels']) && (count($message['labels']) > 1 || !isset($message['labels'][-1])))
  439. {
  440. echo '
  441. <option value="" disabled="disabled">', $txt['pm_msg_label_remove'], ':</option>';
  442. foreach ($message['labels'] as $label)
  443. echo '
  444. <option value="', $label['id'], '">&nbsp;', $label['name'], '</option>';
  445. }
  446. echo '
  447. </select>
  448. <noscript>
  449. <input type="submit" value="', $txt['pm_apply'], '" class="button_submit" style="float: none" />
  450. </noscript>';
  451. }
  452. echo '
  453. </div>';
  454. }
  455. echo '
  456. </div>
  457. </div>
  458. <div class="moderatorbar">
  459. </div>
  460. </div>';
  461. }
  462. if (empty($context['display_mode']))
  463. echo '
  464. <div class="pagesection">
  465. <div class="floatleft">', $context['page_index'], '</div>
  466. <div class="floatright"><input type="submit" name="del_selected" value="', $txt['quickmod_delete_selected'], '" style="font-weight: normal;" onclick="if (!confirm(\'', $txt['delete_selected_confirm'], '\')) return false;" class="button_submit" /></div>
  467. </div>';
  468. // Show a few buttons if we are in conversation mode and outputting the first message.
  469. elseif ($context['display_mode'] == 2 && isset($context['conversation_buttons']))
  470. {
  471. echo '
  472. <div class="pagesection">';
  473. template_button_strip($context['conversation_buttons'], 'right');
  474. echo '
  475. </div>';
  476. }
  477. echo '
  478. <br />';
  479. }
  480. // Individual messages = buttom list!
  481. if ($context['display_mode'] == 1)
  482. {
  483. template_subject_list();
  484. echo '<br />';
  485. }
  486. echo '
  487. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  488. </form>';
  489. }
  490. // Just list all the personal message subjects - to make templates easier.
  491. function template_subject_list()
  492. {
  493. global $context, $options, $settings, $modSettings, $txt, $scripturl;
  494. echo '
  495. <table width="100%" class="table_grid">
  496. <thead>
  497. <tr class="catbg">
  498. <th align="center" width="4%" class="centercol first_th">
  499. <a href="', $scripturl, '?action=pm;view;f=', $context['folder'], ';start=', $context['start'], ';sort=', $context['sort_by'], ($context['sort_direction'] == 'up' ? '' : ';desc'), ($context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : ''), '"><img src="', $settings['images_url'], '/im_switch.png" alt="', $txt['pm_change_view'], '" title="', $txt['pm_change_view'], '" width="16" height="16" /></a>
  500. </th>
  501. <th class="lefttext" width="22%">
  502. <a href="', $scripturl, '?action=pm;f=', $context['folder'], ';start=', $context['start'], ';sort=date', $context['sort_by'] == 'date' && $context['sort_direction'] == 'up' ? ';desc' : '', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '">', $txt['date'], $context['sort_by'] == 'date' ? ' <img class="sort" src="' . $settings['images_url'] . '/sort_' . $context['sort_direction'] . '.png" alt="" />' : '', '</a>
  503. </th>
  504. <th class="lefttext" width="46%">
  505. <a href="', $scripturl, '?action=pm;f=', $context['folder'], ';start=', $context['start'], ';sort=subject', $context['sort_by'] == 'subject' && $context['sort_direction'] == 'up' ? ';desc' : '', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '">', $txt['subject'], $context['sort_by'] == 'subject' ? ' <img class="sort" src="' . $settings['images_url'] . '/sort_' . $context['sort_direction'] . '.png" alt="" />' : '', '</a>
  506. </th>
  507. <th class="lefttext">
  508. <a href="', $scripturl, '?action=pm;f=', $context['folder'], ';start=', $context['start'], ';sort=name', $context['sort_by'] == 'name' && $context['sort_direction'] == 'up' ? ';desc' : '', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '">', ($context['from_or_to'] == 'from' ? $txt['from'] : $txt['to']), $context['sort_by'] == 'name' ? ' <img class="sort" src="' . $settings['images_url'] . '/sort_' . $context['sort_direction'] . '.png" alt="" />' : '', '</a>
  509. </th>
  510. <th width="4%" class="centercol last_th">
  511. <input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />
  512. </th>
  513. </tr>
  514. </thead>
  515. <tbody>';
  516. if (!$context['show_delete'])
  517. echo '
  518. <tr class="windowbg2">
  519. <td colspan="5">', $txt['msg_alert_none'], '</td>
  520. </tr>';
  521. $next_alternate = false;
  522. while ($message = $context['get_pmessage']('subject'))
  523. {
  524. echo '
  525. <tr class="', $next_alternate ? 'windowbg' : 'windowbg2', '">
  526. <td align="center" width="4%">
  527. <script type="text/javascript"><!-- // --><![CDATA[
  528. currentLabels[', $message['id'], '] = {';
  529. if (!empty($message['labels']))
  530. {
  531. $first = true;
  532. foreach ($message['labels'] as $label)
  533. {
  534. echo $first ? '' : ',', '
  535. "', $label['id'], '": "', $label['name'], '"';
  536. $first = false;
  537. }
  538. }
  539. echo '
  540. };
  541. // ]]></script>
  542. ', $message['is_replied_to'] ? '<img src="' . $settings['images_url'] . '/icons/pm_replied.png" style="margin-right: 4px;" alt="' . $txt['pm_replied'] . '" />' : '<img src="' . $settings['images_url'] . '/icons/pm_read.png" style="margin-right: 4px;" alt="' . $txt['pm_read'] . '" />', '</td>
  543. <td>', $message['time'], '</td>
  544. <td>', ($context['display_mode'] != 0 && $context['current_pm'] == $message['id'] ? '<img src="' . $settings['images_url'] . '/selected.png" alt="*" />' : ''), '<a href="', ($context['display_mode'] == 0 || $context['current_pm'] == $message['id'] ? '' : ($scripturl . '?action=pm;pmid=' . $message['id'] . ';kstart;f=' . $context['folder'] . ';start=' . $context['start'] . ';sort=' . $context['sort_by'] . ($context['sort_direction'] == 'up' ? ';' : ';desc') . ($context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : ''))), '#msg', $message['id'], '">', $message['subject'], $message['is_unread'] ? '&nbsp;<span class="new_posts">' . $txt['new'] . '</span>' : '', '</a></td>
  545. <td>', ($context['from_or_to'] == 'from' ? $message['member']['link'] : (empty($message['recipients']['to']) ? '' : implode(', ', $message['recipients']['to']))), '</td>
  546. <td class="centercol" width="4%"><input type="checkbox" name="pms[]" id="deletelisting', $message['id'], '" value="', $message['id'], '"', $message['is_selected'] ? ' checked="checked"' : '', ' onclick="if (document.getElementById(\'deletedisplay', $message['id'], '\')) document.getElementById(\'deletedisplay', $message['id'], '\').checked = this.checked;" class="input_check" /></td>
  547. </tr>';
  548. $next_alternate = !$next_alternate;
  549. }
  550. echo '
  551. </tbody>
  552. </table>
  553. <div class="pagesection">
  554. <div class="floatleft">', $context['page_index'], '</div>
  555. <div class="floatright">&nbsp;';
  556. if ($context['show_delete'])
  557. {
  558. if (!empty($context['currently_using_labels']) && $context['folder'] != 'sent')
  559. {
  560. echo '
  561. <select name="pm_action" onchange="if (this.options[this.selectedIndex].value) this.form.submit();" onfocus="loadLabelChoices();">
  562. <option value="">', $txt['pm_sel_label_title'], ':</option>
  563. <option value="" disabled="disabled">---------------</option>';
  564. echo '
  565. <option value="" disabled="disabled">', $txt['pm_msg_label_apply'], ':</option>';
  566. foreach ($context['labels'] as $label)
  567. {
  568. if ($label['id'] != $context['current_label_id'])
  569. echo '
  570. <option value="add_', $label['id'], '">&nbsp;', $label['name'], '</option>';
  571. }
  572. echo '
  573. <option value="" disabled="disabled">', $txt['pm_msg_label_remove'], ':</option>';
  574. foreach ($context['labels'] as $label)
  575. {
  576. echo '
  577. <option value="rem_', $label['id'], '">&nbsp;', $label['name'], '</option>';
  578. }
  579. echo '
  580. </select>
  581. <noscript>
  582. <input type="submit" value="', $txt['pm_apply'], '" class="button_submit" style="float: none" />
  583. </noscript>';
  584. }
  585. echo '
  586. <input type="submit" name="del_selected" value="', $txt['quickmod_delete_selected'], '" onclick="if (!confirm(\'', $txt['delete_selected_confirm'], '\')) return false;" class="button_submit" style="float: none" />';
  587. }
  588. echo '
  589. </div>
  590. </div>';
  591. }
  592. function template_search()
  593. {
  594. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  595. echo '
  596. <form action="', $scripturl, '?action=pm;sa=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">
  597. <div class="cat_bar">
  598. <h3 class="catbg">', $txt['pm_search_title'], '</h3>
  599. </div>';
  600. if (!empty($context['search_errors']))
  601. {
  602. echo '
  603. <div class="errorbox">
  604. ', implode('<br />', $context['search_errors']['messages']), '
  605. </div>';
  606. }
  607. if ($context['simple_search'])
  608. {
  609. echo '
  610. <fieldset id="simple_search">
  611. <div class="roundframe">
  612. <div id="search_term_input">
  613. <strong>', $txt['pm_search_text'], ':</strong>
  614. <input type="text" name="search"', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' size="40" class="input_text" />
  615. <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit" />
  616. </div>
  617. <a href="', $scripturl, '?action=pm;sa=search;advanced" onclick="this.href += \';search=\' + escape(document.forms.searchform.search.value);">', $txt['pm_search_advanced'], '</a>
  618. <input type="hidden" name="advanced" value="0" />
  619. </div>
  620. </fieldset>';
  621. }
  622. // Advanced search!
  623. else
  624. {
  625. echo '
  626. <fieldset id="advanced_search">
  627. <div class="roundframe">
  628. <input type="hidden" name="advanced" value="1" />
  629. <span class="enhanced">
  630. <strong>', $txt['pm_search_text'], ':</strong>
  631. <input type="text" name="search"', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' size="40" class="input_text" />
  632. <script type="text/javascript"><!-- // --><![CDATA[
  633. createEventListener(window);
  634. window.addEventListener("load", initSearch, false);
  635. // ]]></script>
  636. <select name="searchtype">
  637. <option value="1"', empty($context['search_params']['searchtype']) ? ' selected="selected"' : '', '>', $txt['pm_search_match_all'], '</option>
  638. <option value="2"', !empty($context['search_params']['searchtype']) ? ' selected="selected"' : '', '>', $txt['pm_search_match_any'], '</option>
  639. </select>
  640. </span>
  641. <dl id="search_options">
  642. <dt>', $txt['pm_search_user'], ':</dt>
  643. <dd><input type="text" name="userspec" value="', empty($context['search_params']['userspec']) ? '*' : $context['search_params']['userspec'], '" size="40" class="input_text" /></dd>
  644. <dt>', $txt['pm_search_order'], ':</dt>
  645. <dd>
  646. <select name="sort">
  647. <option value="relevance|desc">', $txt['pm_search_orderby_relevant_first'], '</option>
  648. <option value="id_pm|desc">', $txt['pm_search_orderby_recent_first'], '</option>
  649. <option value="id_pm|asc">', $txt['pm_search_orderby_old_first'], '</option>
  650. </select>
  651. </dd>
  652. <dt class="options">', $txt['pm_search_options'], ':</dt>
  653. <dd class="options">
  654. <label for="show_complete"><input type="checkbox" name="show_complete" id="show_complete" value="1"', !empty($context['search_params']['show_complete']) ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['pm_search_show_complete'], '</label><br />
  655. <label for="subject_only"><input type="checkbox" name="subject_only" id="subject_only" value="1"', !empty($context['search_params']['subject_only']) ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['pm_search_subject_only'], '</label>
  656. </dd>
  657. <dt class="between">', $txt['pm_search_post_age'], ':</dt>
  658. <dd>', $txt['pm_search_between'], ' <input type="text" name="minage" value="', empty($context['search_params']['minage']) ? '0' : $context['search_params']['minage'], '" size="5" maxlength="5" class="input_text" />&nbsp;', $txt['pm_search_between_and'], '&nbsp;<input type="text" name="maxage" value="', empty($context['search_params']['maxage']) ? '9999' : $context['search_params']['maxage'], '" size="5" maxlength="5" class="input_text" /> ', $txt['pm_search_between_days'], '</dd>
  659. </dl>';
  660. if (!$context['currently_using_labels'])
  661. echo '
  662. <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit" />';
  663. echo '
  664. <br class="clear_right" />
  665. </div>
  666. </fieldset>';
  667. // Do we have some labels setup? If so offer to search by them!
  668. if ($context['currently_using_labels'])
  669. {
  670. echo '
  671. <fieldset class="labels">
  672. <div class="roundframe">
  673. <div class="title_bar">
  674. <h4 class="titlebg">
  675. <img id="advanced_panel_toggle" class="panel_toggle" style="display: none;" src="', $settings['images_url'], '/', empty($context['show_advanced_options']) ? 'collapse' : 'expand', '.png" alt="*" /><a href="#" id="advanced_panel_link">', $txt['pm_search_choose_label'], '</a>
  676. </h4>
  677. </div>
  678. <div id="advanced_panel_div">
  679. <ul id="searchLabelsExpand" class="reset" >';
  680. foreach ($context['search_labels'] as $label)
  681. echo '
  682. <li>
  683. <label for="searchlabel_', $label['id'], '"><input type="checkbox" id="searchlabel_', $label['id'], '" name="searchlabel[', $label['id'], ']" value="', $label['id'], '" ', $label['checked'] ? 'checked="checked"' : '', ' class="input_check" />
  684. ', $label['name'], '</label>
  685. </li>';
  686. echo '
  687. </ul>
  688. </div>
  689. <p>
  690. <span class="floatleft"><input type="checkbox" name="all" id="check_all" value="" ', $context['check_all'] ? 'checked="checked"' : '', ' onclick="invertAll(this, this.form, \'searchlabel\');" class="input_check" /><em> <label for="check_all">', $txt['check_all'], '</label></em></span>
  691. <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit" />
  692. </p>
  693. <br class="clear_right" />
  694. </div>
  695. </fieldset>';
  696. // Some javascript for the advanced toggling
  697. echo '
  698. <script type="text/javascript"><!-- // --><![CDATA[
  699. var oAdvancedPanelToggle = new smc_Toggle({
  700. bToggleEnabled: true,
  701. bCurrentlyCollapsed: ', empty($context['show_advanced_options']) ? 'true' : 'false', ',
  702. aSwappableContainers: [
  703. \'advanced_panel_div\'
  704. ],
  705. aSwapImages: [
  706. {
  707. sId: \'advanced_panel_toggle\',
  708. srcExpanded: smf_images_url + \'/collapse.png\',
  709. altExpanded: ', JavaScriptEscape($txt['upshrink_description']), ',
  710. srcCollapsed: smf_images_url + \'/expand.png\',
  711. altCollapsed: ', JavaScriptEscape($txt['upshrink_description']), '
  712. }
  713. ],
  714. aSwapLinks: [
  715. {
  716. sId: \'advanced_panel_link\',
  717. msgExpanded: ', JavaScriptEscape($txt['pm_search_choose_label']), ',
  718. msgCollapsed: ', JavaScriptEscape($txt['pm_search_choose_label']), '
  719. }
  720. ],
  721. oThemeOptions: {
  722. bUseThemeSettings: ', $context['user']['is_guest'] ? 'false' : 'true', ',
  723. sOptionName: \'admin_preferences\',
  724. sSessionVar: smf_session_var,
  725. sSessionId: smf_session_id,
  726. sThemeId: \'1\'
  727. }
  728. });
  729. // ]]></script>';
  730. }
  731. }
  732. echo '
  733. </form>';
  734. }
  735. function template_search_results()
  736. {
  737. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  738. echo '
  739. <div class="cat_bar">
  740. <h3 class="catbg">', $txt['pm_search_results'], '</h3>
  741. </div>
  742. <div class="pagesection">
  743. ', $context['page_index'], '
  744. </div>';
  745. // complete results ?
  746. if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages']))
  747. echo '
  748. <table width="100%" class="table_grid">
  749. <thead>
  750. <tr class="catbg">
  751. <th class="lefttext first_th" width="30%">', $txt['date'], '</th>
  752. <th class="lefttext" width="50%">', $txt['subject'], '</th>
  753. <th class="lefttext last_th" width="20%">', $txt['from'], '</th>
  754. </tr>
  755. </thead>
  756. <tbody>';
  757. $alternate = true;
  758. // Print each message out...
  759. foreach ($context['personal_messages'] as $message)
  760. {
  761. // We showing it all?
  762. if (!empty($context['search_params']['show_complete']))
  763. {
  764. echo '
  765. <div class="title_bar">
  766. <h3 class="titlebg">
  767. <span class="floatright">', $txt['search_on'], ': ', $message['time'], '</span>
  768. <span class="floatleft">', $message['counter'], '&nbsp;&nbsp;<a href="', $message['href'], '">', $message['subject'], '</a></span>
  769. </h3>
  770. </div>
  771. <div class="cat_bar">
  772. <h3 class="catbg">', $txt['from'], ': ', $message['member']['link'], ', ', $txt['to'], ': ';
  773. // Show the recipients.
  774. // @todo This doesn't deal with the sent item searching quite right for bcc.
  775. if (!empty($message['recipients']['to']))
  776. echo implode(', ', $message['recipients']['to']);
  777. // Otherwise, we're just going to say "some people"...
  778. elseif ($context['folder'] != 'sent')
  779. echo '(', $txt['pm_undisclosed_recipients'], ')';
  780. echo '
  781. </h3>
  782. </div>
  783. <div class="windowbg', $alternate ? '2': '', '">
  784. <div class="content">
  785. ', $message['body'], '
  786. <p class="pm_reply righttext">';
  787. if ($context['can_send_pm'])
  788. {
  789. $quote_button = create_button('quote.png', 'reply_quote', 'reply_quote', 'class="centericon"');
  790. $reply_button = create_button('im_reply.png', 'reply', 'reply', 'class="centericon"');
  791. // You can only reply if they are not a guest...
  792. if (!$message['member']['is_guest'])
  793. echo '
  794. <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button , '</a>', $context['menu_separator'], '
  795. <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button , '</a> ', $context['menu_separator'];
  796. // This is for "forwarding" - even if the member is gone.
  797. else
  798. echo '
  799. <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button , '</a>', $context['menu_separator'];
  800. }
  801. echo '
  802. </p>
  803. </div>
  804. </div>';
  805. }
  806. // Otherwise just a simple list!
  807. else
  808. {
  809. // @todo No context at all of the search?
  810. echo '
  811. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '" valign="top">
  812. <td>', $message['time'], '</td>
  813. <td>', $message['link'], '</td>
  814. <td>', $message['member']['link'], '</td>
  815. </tr>';
  816. }
  817. $alternate = !$alternate;
  818. }
  819. // Finish off the page...
  820. if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages']))
  821. echo '
  822. </tbody>
  823. </table>';
  824. // No results?
  825. if (empty($context['personal_messages']))
  826. echo '
  827. <div class="windowbg">
  828. <div class="content">
  829. <p class="centertext">', $txt['pm_search_none_found'], '</p>
  830. </div>
  831. </div>';
  832. echo '
  833. <div class="pagesection">
  834. ', $context['page_index'], '
  835. </div>';
  836. }
  837. function template_send()
  838. {
  839. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  840. // Show which messages were sent successfully and which failed.
  841. if (!empty($context['send_log']))
  842. {
  843. echo '
  844. <div class="cat_bar">
  845. <h3 class="catbg">', $txt['pm_send_report'], '</h3>
  846. </div>
  847. <div class="windowbg">
  848. <div class="content">';
  849. if (!empty($context['send_log']['sent']))
  850. foreach ($context['send_log']['sent'] as $log_entry)
  851. echo '<span class="error">', $log_entry, '</span><br />';
  852. if (!empty($context['send_log']['failed']))
  853. foreach ($context['send_log']['failed'] as $log_entry)
  854. echo '<span class="error">', $log_entry, '</span><br />';
  855. echo '
  856. </div>
  857. </div>
  858. <br />';
  859. }
  860. // Show the preview of the personal message.
  861. echo '
  862. <div id="preview_section"', isset($context['preview_message']) ? '' : ' style="display: none;"', '>
  863. <div class="cat_bar">
  864. <h3 class="catbg">
  865. <span id="preview_subject">', empty($context['preview_subject']) ? '' : $context['preview_subject'], '</span>
  866. </h3>
  867. </div>
  868. <div class="windowbg">
  869. <div class="content">
  870. <div class="post" id="preview_body">
  871. ', empty($context['preview_message']) ? '<br />' : $context['preview_message'], '
  872. </div>
  873. </div>
  874. </div>
  875. </div>';
  876. // Main message editing box.
  877. echo '
  878. <div class="cat_bar">
  879. <h3 class="catbg">
  880. <img src="', $settings['images_url'], '/icons/im_newmsg.png" class="icon" alt="', $txt['new_message'], '" title="', $txt['new_message'], '" />&nbsp;', $txt['new_message'], '
  881. </h3>
  882. </div>';
  883. echo '
  884. <form action="', $scripturl, '?action=pm;sa=send2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" class="flow_hidden" onsubmit="submitonce(this);smc_saveEntities(\'postmodify\', [\'subject\', \'message\']);">
  885. <div>
  886. <div class="roundframe">
  887. <br class="clear" />';
  888. // If there were errors for sending the PM, show them.
  889. echo '
  890. <div class="', empty($context['error_type']) || $context['error_type'] != 'serious' ? 'noticebox' : 'errorbox', '"', empty($context['post_error']['messages']) ? ' style="display: none"' : '', ' id="errors">
  891. <dl>
  892. <dt>
  893. <strong id="error_serious">', $txt['error_while_submitting'] , '</strong>
  894. </dt>
  895. <dd class="error" id="error_list">
  896. ', empty($context['post_error']['messages']) ? '' : implode('<br />', $context['post_error']['messages']), '
  897. </dd>
  898. </dl>
  899. </div>';
  900. if (!empty($modSettings['drafts_pm_enabled']))
  901. echo '
  902. <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>',
  903. sprintf($txt['draft_pm_saved'], $scripturl . '?action=pm;sa=showpmdrafts'), '
  904. </div>';
  905. echo '
  906. <dl id="post_header">';
  907. // To and bcc. Include a button to search for members.
  908. echo '
  909. <dt>
  910. <span', (isset($context['post_error']['no_to']) || isset($context['post_error']['bad_to']) ? ' class="error"' : ''), ' id="caption_to">', $txt['pm_to'], ':</span>
  911. </dt>';
  912. // Autosuggest will be added by the JavaScript later on.
  913. echo '
  914. <dd id="pm_to" class="clear_right">
  915. <input type="text" name="to" id="to_control" value="', $context['to_value'], '" tabindex="', $context['tabindex']++, '" size="40" style="width: 130px;" class="input_text" />';
  916. // A link to add BCC, only visible with JavaScript enabled.
  917. echo '
  918. <span class="smalltext" id="bcc_link_container" style="display: none;"></span>';
  919. // A div that'll contain the items found by the autosuggest.
  920. echo '
  921. <div id="to_item_list_container"></div>';
  922. echo '
  923. </dd>';
  924. // This BCC row will be hidden by default if JavaScript is enabled.
  925. echo '
  926. <dt class="clear_left" id="bcc_div">
  927. <span', (isset($context['post_error']['no_to']) || isset($context['post_error']['bad_bcc']) ? ' class="error"' : ''), ' id="caption_bbc">', $txt['pm_bcc'], ':</span>
  928. </dt>
  929. <dd id="bcc_div2">
  930. <input type="text" name="bcc" id="bcc_control" value="', $context['bcc_value'], '" tabindex="', $context['tabindex']++, '" size="40" style="width: 130px;" class="input_text" />
  931. <div id="bcc_item_list_container"></div>
  932. </dd>';
  933. // The subject of the PM.
  934. echo '
  935. <dt class="clear_left">
  936. <span', (isset($context['post_error']['no_subject']) ? ' class="error"' : ''), ' id="caption_subject">', $txt['subject'], ':</span>
  937. </dt>
  938. <dd id="pm_subject">
  939. <input type="text" name="subject" value="', $context['subject'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="80"',isset($context['post_error']['no_subject']) ? ' class="error"' : ' class="input_text"', '/>
  940. </dd>
  941. </dl><hr class="clear" />';
  942. // Showing BBC?
  943. if ($context['show_bbc'])
  944. {
  945. echo '
  946. <div id="bbcBox_message"></div>';
  947. }
  948. // What about smileys?
  949. if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup']))
  950. echo '
  951. <div id="smileyBox_message"></div>';
  952. // Show BBC buttons, smileys and textbox.
  953. echo '
  954. ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message');
  955. // Require an image to be typed to save spamming?
  956. if ($context['require_verification'])
  957. {
  958. echo '
  959. <div class="post_verification">
  960. <strong>', $txt['pm_visual_verification_label'], ':</strong>
  961. ', template_control_verification($context['visual_verification_id'], 'all'), '
  962. </div>';
  963. }
  964. // Send, Preview, spellcheck buttons.
  965. echo '
  966. <p>
  967. <label for="outbox"><input type="checkbox" name="outbox" id="outbox" value="1" tabindex="', $context['tabindex']++, '"', $context['copy_to_outbox'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['pm_save_outbox'], '</label>
  968. </p>
  969. <hr class="hrcolor" />
  970. <span id="post_confirm_strip" class="righttext">
  971. ', template_control_richedit_buttons($context['post_box_name']), '
  972. </span>
  973. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  974. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
  975. <input type="hidden" name="replied_to" value="', !empty($context['quoted_message']['id']) ? $context['quoted_message']['id'] : 0, '" />
  976. <input type="hidden" name="pm_head" value="', !empty($context['quoted_message']['pm_head']) ? $context['quoted_message']['pm_head'] : 0, '" />
  977. <input type="hidden" name="f" value="', isset($context['folder']) ? $context['folder'] : '', '" />
  978. <input type="hidden" name="l" value="', isset($context['current_label_id']) ? $context['current_label_id'] : -1, '" />
  979. <br class="clear_right" />
  980. </div>
  981. </div>
  982. </form>';
  983. // If the admin enabled the pm drafts feature, show a draft selection box
  984. if (!empty($modSettings['drafts_enabled']) && !empty($context['drafts_pm_save']) && !empty($context['drafts']) && !empty($options['drafts_show_saved_enabled']))
  985. {
  986. echo '
  987. <br />
  988. <div id="postDraftOptionsHeader" class="title_bar">
  989. <h4 class="titlebg">
  990. <img id="postDraftExpand" class="panel_toggle" style="display: none;" src="', $settings['images_url'], '/collapse.png" alt="-" /> <strong><a href="#" id="postDraftExpandLink">', $txt['draft_load'], '</a></strong>
  991. </h4>
  992. </div>
  993. <div id="postDraftOptions" class="load_drafts padding">
  994. <dl class="settings">
  995. <dt><strong>', $txt['subject'], '</strong></dt>
  996. <dd><strong>', $txt['draft_saved_on'], '</strong></dd>';
  997. foreach ($context['drafts'] as $draft)
  998. echo '
  999. <dt>', $draft['link'], '</dt>
  1000. <dd>', $draft['poster_time'], '</dd>';
  1001. echo '
  1002. </dl>
  1003. </div>';
  1004. }
  1005. echo '
  1006. <script type="text/javascript"><!-- // --><![CDATA[';
  1007. // The functions used to preview a personal message without loading a new page.
  1008. echo '
  1009. var txt_preview_title = "', $txt['preview_title'], '";
  1010. var txt_preview_fetch = "', $txt['preview_fetch'], '";
  1011. function previewPost()
  1012. {';
  1013. if (isBrowser('is_firefox'))
  1014. echo '
  1015. // Firefox doesn\'t render <marquee> that have been put it using javascript
  1016. if (document.forms.postmodify.elements[', JavaScriptEscape($context['post_box_name']), '].value.indexOf(\'[move]\') != -1)
  1017. {
  1018. return submitThisOnce(document.forms.postmodify);
  1019. }';
  1020. echo '
  1021. if (window.XMLHttpRequest)
  1022. {
  1023. // Opera didn\'t support setRequestHeader() before 8.01.
  1024. // @todo Remove support for old browsers
  1025. if (\'opera\' in window)
  1026. {
  1027. var test = new XMLHttpRequest();
  1028. if (!(\'setRequestHeader\' in test))

Large files files are truncated, but you can click here to view the full file