PersonalMessage.template.php 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2014 Simple Machines and individual contributors
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. // This is for stuff above the menu in the personal messages section.
  13. function template_pm_above()
  14. {
  15. global $context, $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. echo '
  41. </div>';
  42. }
  43. function template_pm_popup()
  44. {
  45. global $context, $txt, $scripturl;
  46. // Unlike almost every other template, this is designed to be included into the HTML directly via $().load()
  47. echo '
  48. <div class="pm_bar">
  49. <div class="pm_sending floatright">
  50. ', $context['can_send_pm'] ? '<a href="' . $scripturl . '?action=pm;sa=send">' . $txt['pm_new_short'] . '</a> | ' : '', '
  51. ', $context['can_draft'] ? '<a href="' . $scripturl . '?action=pm;sa=showpmdrafts">' . $txt['pm_drafts_short'] . '</a> | ' : '', '
  52. <a href="', $scripturl, '?action=pm;sa=settings">', $txt['pm_settings_short'], '</a>
  53. </div>
  54. <div class="pm_mailbox floatleft">
  55. ', $txt['pm_unread'], '
  56. | <a href="', $scripturl, '?action=pm">', $txt['inbox'], '</a>
  57. | <a href="', $scripturl, '?action=pm;f=sent">', $txt['pm_sent_short'], '</a>
  58. </div>
  59. </div>
  60. <div class="pm_unread">';
  61. if (empty($context['unread_pms']))
  62. {
  63. echo '
  64. <div class="no_unread">', $txt['pm_no_unread'], '</div>';
  65. }
  66. else
  67. {
  68. foreach ($context['unread_pms'] as $id_pm => $pm_details)
  69. {
  70. echo '
  71. <div class="unread">
  72. <div class="avatar floatleft">', !empty($pm_details['member']) ? $pm_details['member']['avatar']['image'] : '', '</div>
  73. <div class="details floatleft">
  74. <div class="subject">', $pm_details['pm_link'], '</div>
  75. <div class="sender">', $pm_details['replied_to_you'] ? '<span class="pm_icons replied centericon" style="margin-right: 4px" title="' . $txt['pm_you_were_replied_to'] . '"></span>' : '<span class="pm_icons im_off centericon" style="margin-right: 4px" title="' . $txt['pm_was_sent_to_you'] . '"></span>',
  76. !empty($pm_details['member']) ? $pm_details['member']['link'] : $pm_details['member_from'], ' - ', $pm_details['time'], '</div>
  77. </div>
  78. <br class="clear" />
  79. </div>';
  80. }
  81. }
  82. echo '
  83. </div>';
  84. }
  85. function template_folder()
  86. {
  87. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  88. // The every helpful javascript!
  89. echo '
  90. <script><!-- // --><![CDATA[
  91. var allLabels = {};
  92. var currentLabels = {};
  93. function loadLabelChoices()
  94. {
  95. var listing = document.forms.pmFolder.elements;
  96. var theSelect = document.forms.pmFolder.pm_action;
  97. var add, remove, toAdd = {length: 0}, toRemove = {length: 0};
  98. if (theSelect.childNodes.length == 0)
  99. return;
  100. // This is done this way for internationalization reasons.
  101. if (!(\'-1\' in allLabels))
  102. {
  103. for (var o = 0; o < theSelect.options.length; o++)
  104. if (theSelect.options[o].value.substr(0, 4) == "rem_")
  105. allLabels[theSelect.options[o].value.substr(4)] = theSelect.options[o].text;
  106. }
  107. for (var i = 0; i < listing.length; i++)
  108. {
  109. if (listing[i].name != "pms[]" || !listing[i].checked)
  110. continue;
  111. var alreadyThere = [], x;
  112. for (x in currentLabels[listing[i].value])
  113. {
  114. if (!(x in toRemove))
  115. {
  116. toRemove[x] = allLabels[x];
  117. toRemove.length++;
  118. }
  119. alreadyThere[x] = allLabels[x];
  120. }
  121. for (x in allLabels)
  122. {
  123. if (!(x in alreadyThere))
  124. {
  125. toAdd[x] = allLabels[x];
  126. toAdd.length++;
  127. }
  128. }
  129. }
  130. while (theSelect.options.length > 2)
  131. theSelect.options[2] = null;
  132. if (toAdd.length != 0)
  133. {
  134. theSelect.options[theSelect.options.length] = new Option("', $txt['pm_msg_label_apply'], '", "");
  135. setInnerHTML(theSelect.options[theSelect.options.length - 1], "', $txt['pm_msg_label_apply'], '");
  136. theSelect.options[theSelect.options.length - 1].disabled = true;
  137. for (i in toAdd)
  138. {
  139. if (i != "length")
  140. theSelect.options[theSelect.options.length] = new Option(toAdd[i], "add_" + i);
  141. }
  142. }
  143. if (toRemove.length != 0)
  144. {
  145. theSelect.options[theSelect.options.length] = new Option("', $txt['pm_msg_label_remove'], '", "");
  146. setInnerHTML(theSelect.options[theSelect.options.length - 1], "', $txt['pm_msg_label_remove'], '");
  147. theSelect.options[theSelect.options.length - 1].disabled = true;
  148. for (i in toRemove)
  149. {
  150. if (i != "length")
  151. theSelect.options[theSelect.options.length] = new Option(toRemove[i], "rem_" + i);
  152. }
  153. }
  154. }
  155. // ]]></script>';
  156. echo '
  157. <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">';
  158. // If we are not in single display mode show the subjects on the top!
  159. if ($context['display_mode'] != 1)
  160. {
  161. template_subject_list();
  162. echo '<div class="clear_right"><br /></div>';
  163. }
  164. // Got some messages to display?
  165. if ($context['get_pmessage']('message', true))
  166. {
  167. // Show the helpful titlebar - generally.
  168. if ($context['display_mode'] != 1)
  169. echo '
  170. <div class="cat_bar">
  171. <h3 class="catbg">
  172. <span id="author">', $txt['author'], '</span>
  173. <span id="topic_title">', $txt[$context['display_mode'] == 0 ? 'messages' : 'conversation'], '</span>
  174. </h3>
  175. </div>';
  176. // Show a few buttons if we are in conversation mode and outputting the first message.
  177. if ($context['display_mode'] == 2)
  178. {
  179. // Show the conversation buttons.
  180. echo '
  181. <div class="pagesection">';
  182. template_button_strip($context['conversation_buttons'], 'right');
  183. echo '
  184. </div>';
  185. }
  186. while ($message = $context['get_pmessage']('message'))
  187. {
  188. $window_class = $message['alternate'] == 0 ? 'windowbg' : 'windowbg2';
  189. echo '
  190. <div class="', $window_class, '">
  191. <div class="poster">
  192. <h4>
  193. <a id="msg', $message['id'], '"></a>';
  194. // Show online and offline buttons?
  195. if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
  196. echo '
  197. <img src="', $message['member']['online']['image_href'], '" alt="', $message['member']['online']['text'], '" />';
  198. // Show a link to the member's profile (but only if the sender isn't a guest).
  199. echo '
  200. ', $message['member']['link'], '';
  201. echo '
  202. </h4>';
  203. echo '
  204. <ul>';
  205. // Show the user's avatar.
  206. if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
  207. echo '
  208. <li class="avatar">
  209. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a>
  210. </li>';
  211. if (!$message['member']['is_guest'])
  212. echo '
  213. <li class="icons">', $message['member']['group_icons'], '</li>';
  214. // Show the member's primary group (like 'Administrator') if they have one.
  215. if (isset($message['member']['group']) && $message['member']['group'] != '')
  216. echo '
  217. <li class="membergroup">', $message['member']['group'], '</li>';
  218. // Show the member's custom title, if they have one.
  219. if (isset($message['member']['title']) && $message['member']['title'] != '')
  220. echo '
  221. <li class="title">', $message['member']['title'], '</li>';
  222. // Don't show these things for guests.
  223. if (!$message['member']['is_guest'])
  224. {
  225. // 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.
  226. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  227. echo '
  228. <li class="postgroup">', $message['member']['post_group'], '</li>';
  229. // Show how many posts they have made.
  230. if (!isset($context['disabled_fields']['posts']))
  231. echo '
  232. <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
  233. // Is karma display enabled? Total or +/-?
  234. if ($modSettings['karmaMode'] == '1')
  235. echo '
  236. <li class="karma">', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
  237. elseif ($modSettings['karmaMode'] == '2')
  238. echo '
  239. <li class="karma">', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';
  240. // Is this user allowed to modify this member's karma?
  241. if ($message['member']['karma']['allow'])
  242. echo '
  243. <li class="karma_allow">
  244. <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>
  245. </li>';
  246. // Show the member's gender icon?
  247. if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
  248. echo '
  249. <li class="gender">', $txt['gender'], ': ', $message['member']['gender']['image'], '</li>';
  250. // Show their personal text?
  251. if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
  252. echo '
  253. <li class="blurb">', $message['member']['blurb'], '</li>';
  254. // Any custom fields to show as icons?
  255. if (!empty($message['member']['custom_fields']))
  256. {
  257. $shown = false;
  258. foreach ($message['member']['custom_fields'] as $custom)
  259. {
  260. if ($custom['placement'] != 1 || empty($custom['value']))
  261. continue;
  262. if (empty($shown))
  263. {
  264. $shown = true;
  265. echo '
  266. <li class="im_icons">
  267. <ol>';
  268. }
  269. echo '
  270. <li>', $custom['value'], '</li>';
  271. }
  272. if ($shown)
  273. echo '
  274. </ol>
  275. </li>';
  276. }
  277. // This shows the popular messaging icons.
  278. if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
  279. echo '
  280. <li class="im_icons">
  281. <ol>
  282. ', !isset($context['disabled_fields']['icq']) && !empty($message['member']['icq']['link']) ? '<li>' . $message['member']['icq']['link'] . '</li>' : '', '
  283. ', !isset($context['disabled_fields']['skype']) && !empty($message['member']['skype']['link']) ? '<li>' . $message['member']['skype']['link'] . '</li>' : '', '
  284. ', !isset($context['disabled_fields']['aim']) && !empty($message['member']['aim']['link']) ? '<li>' . $message['member']['aim']['link'] . '</li>' : '', '
  285. ', !isset($context['disabled_fields']['yim']) && !empty($message['member']['yim']['link']) ? '<li>' . $message['member']['yim']['link'] . '</li>' : '', '
  286. </ol>
  287. </li>';
  288. if ($message['can_report'])
  289. echo '
  290. <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>';
  291. // Show the IP to this user for this post - because you can moderate?
  292. if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
  293. echo '
  294. <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>';
  295. // Or, should we show it because this is you?
  296. elseif ($message['can_see_ip'])
  297. echo '
  298. <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>';
  299. // Okay, you are logged in, then we can show something about why IPs are logged...
  300. else
  301. echo '
  302. <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a></li>';
  303. // Show the profile, website, email address, and personal message buttons.
  304. if ($message['member']['show_profile_buttons'])
  305. {
  306. echo '
  307. <li class="profile">
  308. <ol class="profile_icons">';
  309. // Show the profile button
  310. if ($message['member']['can_view_profile'])
  311. echo '
  312. <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>';
  313. // Don't show an icon if they haven't specified a website.
  314. if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
  315. echo '
  316. <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';
  317. // Don't show the email address if they want it hidden.
  318. if (in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')) && $context['can_send_email'])
  319. echo '
  320. <li><a href="', $scripturl, '?action=emailuser;sa=email;uid=', $message['member']['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';
  321. // Since we know this person isn't a guest, you *can* message them.
  322. if ($context['can_send_pm'])
  323. echo '
  324. <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'] ? '<span class="pm_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span>' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';
  325. echo '
  326. </ol>
  327. </li>';
  328. }
  329. // Any custom fields for standard placement?
  330. if (!empty($message['member']['custom_fields']))
  331. {
  332. foreach ($message['member']['custom_fields'] as $custom)
  333. if (empty($custom['placement']) || empty($custom['value']))
  334. echo '
  335. <li class="custom">', $custom['title'], ': ', $custom['value'], '</li>';
  336. }
  337. // Are we showing the warning status?
  338. if ($message['member']['can_see_warning'])
  339. echo '
  340. <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>';
  341. }
  342. // Done with the information about the poster... on to the post itself.
  343. echo '
  344. </ul>
  345. </div>
  346. <div class="postarea">
  347. <div class="flow_hidden">
  348. <div class="keyinfo">
  349. <h5 id="subject_', $message['id'], '">
  350. ', $message['subject'], '
  351. </h5>';
  352. // Show who the message was sent to.
  353. echo '
  354. <span class="smalltext">&#171; <strong> ', $txt['sent_to'], ':</strong> ';
  355. // People it was sent directly to....
  356. if (!empty($message['recipients']['to']))
  357. echo implode(', ', $message['recipients']['to']);
  358. // Otherwise, we're just going to say "some people"...
  359. elseif ($context['folder'] != 'sent')
  360. echo '(', $txt['pm_undisclosed_recipients'], ')';
  361. echo '
  362. <strong> ', $txt['on'], ':</strong> ', $message['time'], ' &#187;
  363. </span>';
  364. // If we're in the sent items, show who it was sent to besides the "To:" people.
  365. if (!empty($message['recipients']['bcc']))
  366. echo '
  367. <br /><span class="smalltext">&#171; <strong> ', $txt['pm_bcc'], ':</strong> ', implode(', ', $message['recipients']['bcc']), ' &#187;</span>';
  368. if (!empty($message['is_replied_to']))
  369. echo '
  370. <br /><span class="smalltext">&#171; ', $txt['pm_is_replied_to'], ' &#187;</span>';
  371. echo '
  372. </div>
  373. <ul class="reset smalltext quickbuttons">';
  374. // Show reply buttons if you have the permission to send PMs.
  375. if ($context['can_send_pm'])
  376. {
  377. // You can't really reply if the member is gone.
  378. if (!$message['member']['is_guest'])
  379. {
  380. // Is there than more than one recipient you can reply to?
  381. if ($message['number_recipients'] > 1)
  382. echo '
  383. <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>';
  384. echo '
  385. <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>
  386. <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_action'], '</a></li>';
  387. }
  388. // This is for "forwarding" - even if the member is gone.
  389. else
  390. echo '
  391. <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>';
  392. }
  393. echo '
  394. <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>';
  395. if (empty($context['display_mode']))
  396. echo '
  397. <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>';
  398. echo '
  399. </ul>
  400. </div>
  401. <div class="post">
  402. <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>';
  403. // Are there any custom profile fields for above the signature?
  404. if (!empty($message['member']['custom_fields']))
  405. {
  406. $shown = false;
  407. foreach ($message['member']['custom_fields'] as $custom)
  408. {
  409. if ($custom['placement'] != 2 || empty($custom['value']))
  410. continue;
  411. if (!$shown)
  412. {
  413. $shown = true;
  414. echo '
  415. <div class="custom_fields_above_signature">
  416. <ul class="reset nolist">';
  417. }
  418. echo '
  419. <li>', $custom['value'], '</li>';
  420. }
  421. if ($shown)
  422. echo '
  423. </ul>
  424. </div>';
  425. }
  426. // Show the member's signature?
  427. if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  428. echo '
  429. <div class="signature">', $message['member']['signature'], '</div>';
  430. // Add an extra line at the bottom if we have labels enabled.
  431. if ($context['folder'] != 'sent' && !empty($context['currently_using_labels']) && $context['display_mode'] != 2)
  432. {
  433. echo '
  434. <div class="labels righttext flow_auto">';
  435. // Add the label drop down box.
  436. if (!empty($context['currently_using_labels']))
  437. {
  438. echo '
  439. <select name="pm_actions[', $message['id'], ']" onchange="if (this.options[this.selectedIndex].value) form.submit();">
  440. <option value="">', $txt['pm_msg_label_title'], ':</option>
  441. <option value="" disabled="disabled">---------------</option>';
  442. // Are there any labels which can be added to this?
  443. if (!$message['fully_labeled'])
  444. {
  445. echo '
  446. <option value="" disabled="disabled">', $txt['pm_msg_label_apply'], ':</option>';
  447. foreach ($context['labels'] as $label)
  448. if (!isset($message['labels'][$label['id']]))
  449. echo '
  450. <option value="', $label['id'], '">&nbsp;', $label['name'], '</option>';
  451. }
  452. // ... and are there any that can be removed?
  453. if (!empty($message['labels']) && (count($message['labels']) > 1 || !isset($message['labels'][-1])))
  454. {
  455. echo '
  456. <option value="" disabled="disabled">', $txt['pm_msg_label_remove'], ':</option>';
  457. foreach ($message['labels'] as $label)
  458. echo '
  459. <option value="', $label['id'], '">&nbsp;', $label['name'], '</option>';
  460. }
  461. echo '
  462. </select>
  463. <noscript>
  464. <input type="submit" value="', $txt['pm_apply'], '" class="button_submit" style="float: none" />
  465. </noscript>';
  466. }
  467. echo '
  468. </div>';
  469. }
  470. echo '
  471. </div>
  472. </div>
  473. <div class="moderatorbar">
  474. </div>
  475. </div>';
  476. }
  477. if (empty($context['display_mode']))
  478. echo '
  479. <div class="pagesection">
  480. <div class="floatleft">', $context['page_index'], '</div>
  481. <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>
  482. </div>';
  483. // Show a few buttons if we are in conversation mode and outputting the first message.
  484. elseif ($context['display_mode'] == 2 && isset($context['conversation_buttons']))
  485. {
  486. echo '
  487. <div class="pagesection">';
  488. template_button_strip($context['conversation_buttons'], 'right');
  489. echo '
  490. </div>';
  491. }
  492. echo '
  493. <br />';
  494. }
  495. // Individual messages = buttom list!
  496. if ($context['display_mode'] == 1)
  497. {
  498. template_subject_list();
  499. echo '<br />';
  500. }
  501. echo '
  502. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  503. </form>';
  504. }
  505. // Just list all the personal message subjects - to make templates easier.
  506. function template_subject_list()
  507. {
  508. global $context, $settings, $modSettings, $txt, $scripturl;
  509. echo '
  510. <table class="table_grid">
  511. <thead>
  512. <tr class="catbg">
  513. <th align="center" width="4%" class="centercol first_th">
  514. <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'] : ''), '"><span class="pm_icons switch" title="', $txt['pm_change_view'], '"></span></a>
  515. </th>
  516. <th class="lefttext" width="22%">
  517. <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' ? ' <span class="sort sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
  518. </th>
  519. <th class="lefttext" width="46%">
  520. <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' ? ' <span class="sort sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
  521. </th>
  522. <th class="lefttext">
  523. <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' ? ' <span class="sort sort_' . $context['sort_direction'] . '"></span>' : '', '</a>
  524. </th>
  525. <th width="4%" class="centercol last_th">
  526. <input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />
  527. </th>
  528. </tr>
  529. </thead>
  530. <tbody>';
  531. if (!$context['show_delete'])
  532. echo '
  533. <tr class="windowbg2">
  534. <td colspan="5">', $txt['pm_alert_none'], '</td>
  535. </tr>';
  536. $next_alternate = false;
  537. while ($message = $context['get_pmessage']('subject'))
  538. {
  539. echo '
  540. <tr class="', $next_alternate ? 'windowbg' : 'windowbg2', '">
  541. <td align="center" width="4%">
  542. <script><!-- // --><![CDATA[
  543. currentLabels[', $message['id'], '] = {';
  544. if (!empty($message['labels']))
  545. {
  546. $first = true;
  547. foreach ($message['labels'] as $label)
  548. {
  549. echo $first ? '' : ',', '
  550. "', $label['id'], '": "', $label['name'], '"';
  551. $first = false;
  552. }
  553. }
  554. echo '
  555. };
  556. // ]]></script>
  557. ', $message['is_replied_to'] ? '<span class="pm_icons replied" title="' . $txt['pm_replied'] . '"></span>' : '<span class="pm_icons im_off" title="' . $txt['pm_read'] . '"></span>', '</td>
  558. <td>', $message['time'], '</td>
  559. <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>
  560. <td>', ($context['from_or_to'] == 'from' ? $message['member']['link'] : (empty($message['recipients']['to']) ? '' : implode(', ', $message['recipients']['to']))), '</td>
  561. <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>
  562. </tr>';
  563. $next_alternate = !$next_alternate;
  564. }
  565. echo '
  566. </tbody>
  567. </table>
  568. <div class="pagesection">
  569. <div class="floatleft">', $context['page_index'], '</div>
  570. <div class="floatright">&nbsp;';
  571. if ($context['show_delete'])
  572. {
  573. if (!empty($context['currently_using_labels']) && $context['folder'] != 'sent')
  574. {
  575. echo '
  576. <select name="pm_action" onchange="if (this.options[this.selectedIndex].value) this.form.submit();" onfocus="loadLabelChoices();">
  577. <option value="">', $txt['pm_sel_label_title'], ':</option>
  578. <option value="" disabled="disabled">---------------</option>';
  579. echo '
  580. <option value="" disabled="disabled">', $txt['pm_msg_label_apply'], ':</option>';
  581. foreach ($context['labels'] as $label)
  582. {
  583. if ($label['id'] != $context['current_label_id'])
  584. echo '
  585. <option value="add_', $label['id'], '">&nbsp;', $label['name'], '</option>';
  586. }
  587. echo '
  588. <option value="" disabled="disabled">', $txt['pm_msg_label_remove'], ':</option>';
  589. foreach ($context['labels'] as $label)
  590. {
  591. echo '
  592. <option value="rem_', $label['id'], '">&nbsp;', $label['name'], '</option>';
  593. }
  594. echo '
  595. </select>
  596. <noscript>
  597. <input type="submit" value="', $txt['pm_apply'], '" class="button_submit" style="float: none" />
  598. </noscript>';
  599. }
  600. echo '
  601. <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" />';
  602. }
  603. echo '
  604. </div>
  605. </div>';
  606. }
  607. function template_search()
  608. {
  609. global $context, $scripturl, $modSettings, $txt;
  610. echo '
  611. <form action="', $scripturl, '?action=pm;sa=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">
  612. <div class="cat_bar">
  613. <h3 class="catbg">', $txt['pm_search_title'], '</h3>
  614. </div>';
  615. if (!empty($context['search_errors']))
  616. {
  617. echo '
  618. <div class="errorbox">
  619. ', implode('<br />', $context['search_errors']['messages']), '
  620. </div>';
  621. }
  622. if ($context['simple_search'])
  623. {
  624. echo '
  625. <fieldset id="simple_search">
  626. <div class="roundframe">
  627. <div id="search_term_input">
  628. <strong>', $txt['pm_search_text'], ':</strong>
  629. <input type="text" name="search"', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' size="40" class="input_text" />
  630. <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit" />
  631. </div>
  632. <a href="', $scripturl, '?action=pm;sa=search;advanced" onclick="this.href += \';search=\' + escape(document.forms.searchform.search.value);">', $txt['pm_search_advanced'], '</a>
  633. <input type="hidden" name="advanced" value="0" />
  634. </div>
  635. </fieldset>';
  636. }
  637. // Advanced search!
  638. else
  639. {
  640. echo '
  641. <fieldset id="advanced_search">
  642. <div class="roundframe">
  643. <input type="hidden" name="advanced" value="1" />
  644. <span class="enhanced">
  645. <strong>', $txt['pm_search_text'], ':</strong>
  646. <input type="text" name="search"', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' size="40" class="input_text" />
  647. <script><!-- // --><![CDATA[
  648. createEventListener(window);
  649. window.addEventListener("load", initSearch, false);
  650. // ]]></script>
  651. <select name="searchtype">
  652. <option value="1"', empty($context['search_params']['searchtype']) ? ' selected="selected"' : '', '>', $txt['pm_search_match_all'], '</option>
  653. <option value="2"', !empty($context['search_params']['searchtype']) ? ' selected="selected"' : '', '>', $txt['pm_search_match_any'], '</option>
  654. </select>
  655. </span>
  656. <dl id="search_options">
  657. <dt>', $txt['pm_search_user'], ':</dt>
  658. <dd><input type="text" name="userspec" value="', empty($context['search_params']['userspec']) ? '*' : $context['search_params']['userspec'], '" size="40" class="input_text" /></dd>
  659. <dt>', $txt['pm_search_order'], ':</dt>
  660. <dd>
  661. <select name="sort">
  662. <option value="relevance|desc">', $txt['pm_search_orderby_relevant_first'], '</option>
  663. <option value="id_pm|desc">', $txt['pm_search_orderby_recent_first'], '</option>
  664. <option value="id_pm|asc">', $txt['pm_search_orderby_old_first'], '</option>
  665. </select>
  666. </dd>
  667. <dt class="options">', $txt['pm_search_options'], ':</dt>
  668. <dd class="options">
  669. <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 />
  670. <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>
  671. </dd>
  672. <dt class="between">', $txt['pm_search_post_age'], ':</dt>
  673. <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>
  674. </dl>';
  675. if (!$context['currently_using_labels'])
  676. echo '
  677. <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit" />';
  678. echo '
  679. <br class="clear_right" />
  680. </div>
  681. </fieldset>';
  682. // Do we have some labels setup? If so offer to search by them!
  683. if ($context['currently_using_labels'])
  684. {
  685. echo '
  686. <fieldset class="labels">
  687. <div class="roundframe">
  688. <div class="title_bar">
  689. <h4 class="titlebg">
  690. <span id="advanced_panel_toggle" class="toggle_up floatright" style="display: none;"></span><a href="#" id="advanced_panel_link">', $txt['pm_search_choose_label'], '</a>
  691. </h4>
  692. </div>
  693. <div id="advanced_panel_div">
  694. <ul id="searchLabelsExpand" class="reset">';
  695. foreach ($context['search_labels'] as $label)
  696. echo '
  697. <li>
  698. <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" />
  699. ', $label['name'], '</label>
  700. </li>';
  701. echo '
  702. </ul>
  703. </div>
  704. <p>
  705. <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>
  706. <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit" />
  707. </p>
  708. <br class="clear_right" />
  709. </div>
  710. </fieldset>';
  711. // Some javascript for the advanced toggling
  712. echo '
  713. <script><!-- // --><![CDATA[
  714. var oAdvancedPanelToggle = new smc_Toggle({
  715. bToggleEnabled: true,
  716. bCurrentlyCollapsed: true,
  717. aSwappableContainers: [
  718. \'advanced_panel_div\'
  719. ],
  720. aSwapImages: [
  721. {
  722. sId: \'advanced_panel_toggle\',
  723. altExpanded: ', JavaScriptEscape($txt['hide']), ',
  724. altCollapsed: ', JavaScriptEscape($txt['show']), '
  725. }
  726. ],
  727. aSwapLinks: [
  728. {
  729. sId: \'advanced_panel_link\',
  730. msgExpanded: ', JavaScriptEscape($txt['pm_search_choose_label']), ',
  731. msgCollapsed: ', JavaScriptEscape($txt['pm_search_choose_label']), '
  732. }
  733. ]
  734. });
  735. // ]]></script>';
  736. }
  737. }
  738. echo '
  739. </form>';
  740. }
  741. function template_search_results()
  742. {
  743. global $context, $scripturl, $modSettings, $txt;
  744. echo '
  745. <div class="cat_bar">
  746. <h3 class="catbg">', $txt['pm_search_results'], '</h3>
  747. </div>
  748. <div class="pagesection">
  749. ', $context['page_index'], '
  750. </div>';
  751. // complete results ?
  752. if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages']))
  753. echo '
  754. <table class="table_grid">
  755. <thead>
  756. <tr class="catbg">
  757. <th class="lefttext first_th" width="30%">', $txt['date'], '</th>
  758. <th class="lefttext" width="50%">', $txt['subject'], '</th>
  759. <th class="lefttext last_th" width="20%">', $txt['from'], '</th>
  760. </tr>
  761. </thead>
  762. <tbody>';
  763. $alternate = true;
  764. // Print each message out...
  765. foreach ($context['personal_messages'] as $message)
  766. {
  767. // We showing it all?
  768. if (!empty($context['search_params']['show_complete']))
  769. {
  770. echo '
  771. <div class="title_bar">
  772. <h3 class="titlebg">
  773. <span class="floatright">', $txt['search_on'], ': ', $message['time'], '</span>
  774. <span class="floatleft">', $message['counter'], '&nbsp;&nbsp;<a href="', $message['href'], '">', $message['subject'], '</a></span>
  775. </h3>
  776. </div>
  777. <div class="cat_bar">
  778. <h3 class="catbg">', $txt['from'], ': ', $message['member']['link'], ', ', $txt['to'], ': ';
  779. // Show the recipients.
  780. // @todo This doesn't deal with the sent item searching quite right for bcc.
  781. if (!empty($message['recipients']['to']))
  782. echo implode(', ', $message['recipients']['to']);
  783. // Otherwise, we're just going to say "some people"...
  784. elseif ($context['folder'] != 'sent')
  785. echo '(', $txt['pm_undisclosed_recipients'], ')';
  786. echo '
  787. </h3>
  788. </div>
  789. <div class="windowbg', $alternate ? '2': '', '">
  790. <div class="content">
  791. ', $message['body'], '
  792. <p class="pm_reply righttext">';
  793. if ($context['can_send_pm'])
  794. {
  795. $quote_button = create_button('quote.png', 'reply_quote', 'reply_quote', 'class="centericon"');
  796. $reply_button = create_button('im_reply.png', 'reply', 'reply', 'class="centericon"');
  797. // You can only reply if they are not a guest...
  798. if (!$message['member']['is_guest'])
  799. echo '
  800. <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'], '
  801. <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'];
  802. // This is for "forwarding" - even if the member is gone.
  803. else
  804. echo '
  805. <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'];
  806. }
  807. echo '
  808. </p>
  809. </div>
  810. </div>';
  811. }
  812. // Otherwise just a simple list!
  813. else
  814. {
  815. // @todo No context at all of the search?
  816. echo '
  817. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '" valign="top">
  818. <td>', $message['time'], '</td>
  819. <td>', $message['link'], '</td>
  820. <td>', $message['member']['link'], '</td>
  821. </tr>';
  822. }
  823. $alternate = !$alternate;
  824. }
  825. // Finish off the page...
  826. if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages']))
  827. echo '
  828. </tbody>
  829. </table>';
  830. // No results?
  831. if (empty($context['personal_messages']))
  832. echo '
  833. <div class="windowbg">
  834. <div class="content">
  835. <p class="centertext">', $txt['pm_search_none_found'], '</p>
  836. </div>
  837. </div>';
  838. echo '
  839. <div class="pagesection">
  840. ', $context['page_index'], '
  841. </div>';
  842. }
  843. function template_send()
  844. {
  845. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  846. // Show which messages were sent successfully and which failed.
  847. if (!empty($context['send_log']))
  848. {
  849. echo '
  850. <div class="cat_bar">
  851. <h3 class="catbg">', $txt['pm_send_report'], '</h3>
  852. </div>
  853. <div class="windowbg">
  854. <div class="content">';
  855. if (!empty($context['send_log']['sent']))
  856. foreach ($context['send_log']['sent'] as $log_entry)
  857. echo '<span class="error">', $log_entry, '</span><br />';
  858. if (!empty($context['send_log']['failed']))
  859. foreach ($context['send_log']['failed'] as $log_entry)
  860. echo '<span class="error">', $log_entry, '</span><br />';
  861. echo '
  862. </div>
  863. </div>
  864. <br />';
  865. }
  866. // Show the preview of the personal message.
  867. echo '
  868. <div id="preview_section"', isset($context['preview_message']) ? '' : ' style="display: none;"', '>
  869. <div class="cat_bar">
  870. <h3 class="catbg">
  871. <span id="preview_subject">', empty($context['preview_subject']) ? '' : $context['preview_subject'], '</span>
  872. </h3>
  873. </div>
  874. <div class="windowbg">
  875. <div class="content">
  876. <div class="post" id="preview_body">
  877. ', empty($context['preview_message']) ? '<br />' : $context['preview_message'], '
  878. </div>
  879. </div>
  880. </div>
  881. </div>';
  882. // Main message editing box.
  883. echo '
  884. <div class="cat_bar">
  885. <h3 class="catbg">
  886. <span class="pm_icons inbox icon" title="', $txt['new_message'], '"></span>', $txt['new_message'], '
  887. </h3>
  888. </div>';
  889. echo '
  890. <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\']);">
  891. <div>
  892. <div class="roundframe">
  893. <br class="clear" />';
  894. // If there were errors for sending the PM, show them.
  895. echo '
  896. <div class="', empty($context['error_type']) || $context['error_type'] != 'serious' ? 'noticebox' : 'errorbox', '"', empty($context['post_error']['messages']) ? ' style="display: none"' : '', ' id="errors">
  897. <dl>
  898. <dt>
  899. <strong id="error_serious">', $txt['error_while_submitting'] , '</strong>
  900. </dt>
  901. <dd class="error" id="error_list">
  902. ', empty($context['post_error']['messages']) ? '' : implode('<br />', $context['post_error']['messages']), '
  903. </dd>
  904. </dl>
  905. </div>';
  906. if (!empty($modSettings['drafts_pm_enabled']))
  907. echo '
  908. <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>',
  909. sprintf($txt['draft_pm_saved'], $scripturl . '?action=pm;sa=showpmdrafts'), '
  910. ', (!empty($modSettings['drafts_keep_days']) ? ' <strong>' . sprintf($txt['draft_save_warning'], $modSettings['drafts_keep_days']) . '</strong>' : ''), '
  911. </div>';
  912. echo '
  913. <dl id="post_header">';
  914. // To and bcc. Include a button to search for members.
  915. echo '
  916. <dt>
  917. <span', (isset($context['post_error']['no_to']) || isset($context['post_error']['bad_to']) ? ' class="error"' : ''), ' id="caption_to">', $txt['pm_to'], ':</span>
  918. </dt>';
  919. // Autosuggest will be added by the JavaScript later on.
  920. echo '
  921. <dd id="pm_to" class="clear_right">
  922. <input type="text" name="to" id="to_control" value="', $context['to_value'], '" tabindex="', $context['tabindex']++, '" size="40" style="width: 130px;" class="input_text" />';
  923. // A link to add BCC, only visible with JavaScript enabled.
  924. echo '
  925. <span class="smalltext" id="bcc_link_container" style="display: none;"></span>';
  926. // A div that'll contain the items found by the autosuggest.
  927. echo '
  928. <div id="to_item_list_container"></div>';
  929. echo '
  930. </dd>';
  931. // This BCC row will be hidden by default if JavaScript is enabled.
  932. echo '
  933. <dt class="clear_left" id="bcc_div">
  934. <span', (isset($context['post_error']['no_to']) || isset($context['post_error']['bad_bcc']) ? ' class="error"' : ''), ' id="caption_bbc">', $txt['pm_bcc'], ':</span>
  935. </dt>
  936. <dd id="bcc_div2">
  937. <input type="text" name="bcc" id="bcc_control" value="', $context['bcc_value'], '" tabindex="', $context['tabindex']++, '" size="40" style="width: 130px;" class="input_text" />
  938. <div id="bcc_item_list_container"></div>
  939. </dd>';
  940. // The subject of the PM.
  941. echo '
  942. <dt class="clear_left">
  943. <span', (isset($context['post_error']['no_subject']) ? ' class="error"' : ''), ' id="caption_subject">', $txt['subject'], ':</span>
  944. </dt>
  945. <dd id="pm_subject">
  946. <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"', '/>
  947. </dd>
  948. </dl><hr class="clear" />';
  949. // Showing BBC?
  950. if ($context['show_bbc'])
  951. {
  952. echo '
  953. <div id="bbcBox_message"></div>';
  954. }
  955. // What about smileys?
  956. if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup']))
  957. echo '
  958. <div id="smileyBox_message"></div>';
  959. // Show BBC buttons, smileys and textbox.
  960. echo '
  961. ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message');
  962. // Require an image to be typed to save spamming?
  963. if ($context['require_verification'])
  964. {
  965. echo '
  966. <div class="post_verification">
  967. <strong>', $txt['pm_visual_verification_label'], ':</strong>
  968. ', template_control_verification($context['visual_verification_id'], 'all'), '
  969. </div>';
  970. }
  971. // Send, Preview, spellcheck buttons.
  972. echo '
  973. <hr class="hrcolor" />
  974. <span id="post_confirm_strip" class="righttext">
  975. ', template_control_richedit_buttons($context['post_box_name']), '
  976. </span>
  977. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  978. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
  979. <input type="hidden" name="replied_to" value="', !empty($context['quoted_message']['id']) ? $context['quoted_message']['id'] : 0, '" />
  980. <input type="hidden" name="pm_head" value="', !empty($context['quoted_message']['pm_head']) ? $context['quoted_message']['pm_head'] : 0, '" />
  981. <input type="hidden" name="f" value="', isset($context['folder']) ? $context['folder'] : '', '" />
  982. <input type="hidden" name="l" value="', isset($context['current_label_id']) ? $context['current_label_id'] : -1, '" />
  983. <br class="clear_right" />
  984. </div>
  985. </div>
  986. </form>';
  987. // If the admin enabled the pm drafts feature, show a draft selection box
  988. if (!empty($context['drafts_pm_save']) && !empty($context['drafts']) && !empty($options['drafts_show_saved_enabled']))
  989. {
  990. echo '
  991. <br />
  992. <div id="postDraftOptionsHeader" class="title_bar">
  993. <h4 class="titlebg">
  994. <span id="postDraftExpand" class="toggle_up floatright" style="display: none;"></span> <strong><a href="#" id="postDraftExpandLink">', $txt['draft_load'], '</a></strong>
  995. </h4>
  996. </div>
  997. <div id="postDraftOptions" class="load_drafts padding">
  998. <dl class="settings">
  999. <dt><strong>', $txt['subject'], '</strong></dt>
  1000. <dd><strong>', $txt['draft_saved_on'], '</strong></dd>';
  1001. foreach ($context['drafts'] as $draft)
  1002. echo '
  1003. <dt>', $draft['link'], '</dt>
  1004. <dd>', $draft['poster_time'], '</dd>';
  1005. echo '
  1006. </dl>
  1007. </div>';
  1008. }
  1009. echo '
  1010. <script><!-- // --><![CDATA[';
  1011. // The functions used to preview a personal message without loading a new page.
  1012. echo '
  1013. var txt_preview_title = "', $txt['preview_title'], '";
  1014. var txt_preview_fetch = "', $txt['preview_fetch'], '";
  1015. function previewPost()
  1016. {';
  1017. if (isBrowser('is_firefox'))
  1018. echo '
  1019. // Firefox doesn\'t render <marquee> that have been put it using javascript
  1020. if (document.forms.postmodify.elements[', JavaScriptEscape($context['post_box_name']), '].value.indexOf(\'[move]\') != -1)
  1021. {
  1022. return submitThisOnce(document.forms.postmodify);
  1023. }';
  1024. echo '
  1025. if (window.XMLHttpRequest)
  1026. {
  1027. // Opera didn\'t support setRequestHeader() before 8.01.
  1028. // @todo Remove support for old browsers
  1029. if (\'opera\' in window)
  1030. {
  1031. var test = new XMLHttpRequest();
  1032. if (!(\'setRequestHeader\' in test))
  1033. return submitThisOnce(document.forms.postmodify);
  1034. }
  1035. // @todo Currently not sending poll options and option checkboxes.
  1036. var x = new Array();
  1037. var textFields = [\'subject\', ', JavaScriptEscape($context['post_box_name']), ', \'to\', \'bcc\'];
  1038. var numericFields = [\'recipient_to[]\', \'recipient_bcc[]\'];
  1039. var checkboxFields = [];
  1040. for (var i = 0, n = textFields.length; i < n; i++)
  1041. if (textFields[i] in document.forms.postmodify)
  1042. {
  1043. // Handle the WYSIWYG editor.
  1044. if (textFields[i] == ', JavaScriptEscape($context['post_box_name']), ' && ', JavaScriptEscape('oEditorHandle_' . $context['post_box_name']), ' in window && oEditorHandle_', $context['post_box_name'], '.bRichTextEnabled)
  1045. x[x.length] = \'message_mode=1&\' + textFields[i] + \'=\' + oEditorHandle_', $context['post_box_name'], '.getText(false).replace(/&#/g, \'&#38;#\').php_to8bit().php_urlencode();
  1046. else
  1047. x[x.length] = textFields[i] + \'=\' + document.forms.postmodify[textFields[i]].value.replace(/&#/g, \'&#38;#\').php_to8bit().php_urlencode();
  1048. }
  1049. for (var i = 0, n = numericFields.length; i < n; i++)
  1050. if (numericFields[i] in document.forms.postmodify && \'value\' in document.forms.postmodify[numericFields[i]])
  1051. x[x.length] = numericFields[i] + \'=\' + parseInt(document.forms.postmodify.elements[numericFields[i]].value);
  1052. for (var i = 0, n = checkboxFields.length; i < n; i++)
  1053. if (checkboxFields[i] in document.forms.postmodify && document.forms.postmodify.elements[checkboxFields[i]].checked)
  1054. x[x.length] = checkboxFields[i] + \'=\' + document.forms.postmodify.elements[checkboxFields[i]].value;
  1055. sendXMLDocument(smf_prepareScriptUrl(smf_scripturl) + \'action=pm;sa=send2;preview;xml\', x.join(\'&\'), onDocSent);
  1056. document.getElementById(\'preview_section\').style.display = \'\';
  1057. setInnerHTML(document.getElementById(\'preview_subject\'), txt_preview_title);
  1058. setInnerHTML(document.getElementById(\'preview_body\'), txt_preview_fetch);
  1059. return false;
  1060. }
  1061. else
  1062. return submitThisOnce(document.forms.postmodify);
  1063. }
  1064. function onDocSent(XMLDoc)
  1065. {
  1066. if (!XMLDoc)
  1067. {
  1068. document.forms.postmodify.preview.onclick = new function ()
  1069. {
  1070. return true;
  1071. }
  1072. document.forms.postmodify.preview.click();
  1073. }
  1074. // Show the preview section.
  1075. var preview = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'preview\')[0];
  1076. setInnerHTML(document.getElementById(\'preview_subject\'), preview.getElementsByTagName(\'subject\')[0].firstChild.nodeValue);
  1077. var bodyText = \'\';
  1078. for (var i = 0, n = preview.getElementsByTagName(\'body\')[0].childNodes.length; i < n; i++)
  1079. bodyText += preview.getElementsByTagName(\'body\')[0].childNodes[i].nodeValue;
  1080. setInnerHTML(document.getElementById(\'preview_body\'), bodyText);
  1081. document.getElementById(\'preview_body\').className = \'post\';
  1082. // Show a list of errors (if any).
  1083. var errors = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'errors\')[0];
  1084. var errorList = new Array();
  1085. for (var i = 0, numErrors = errors.getElementsByTagName(\'error\').length; i < numErrors; i++)
  1086. errorList[errorList.length] = errors.getElementsByTagName(\'error\')[i].firstChild.nodeValue;
  1087. document.getElementById(\'errors\').style.display = numErrors == 0 ? \'none\' : \'\';
  1088. setInnerHTML(document.getElementById(\'error_list\'), numErrors == 0 ? \'\' : errorList.join(\'<br />\'));
  1089. // Adjust the color of captions if the given data is erroneous.
  1090. var captions = errors.getElementsByTagName(\'caption\');
  1091. for (var i = 0, numCaptions = errors.getElementsByTagName(\'caption\').length; i < numCaptions; i++)
  1092. if (document.getElementById(\'caption_\' + captions[i].getAttribute(\'name\')))
  1093. document.getElementById(\'caption_\' + captions[i].getAttribute(\'name\')).className = captions[i].getAttribute(\'class\');
  1094. if (errors.getElementsByTagName(\'post_error\').length == 1)
  1095. document.forms.postmodify.', $context['post_box_name'], '.style.border = \'1px solid red\';
  1096. else if (document.forms.postmodify.', $context['post_box_name'], '.style.borderColor == \'red\' || document.forms.postmodify.', $context['post_box_name'], '.style.borderColor == \'red red red red\')
  1097. {
  1098. if (\'runtimeStyle\' in document.forms.postmodify.', $context['post_box_name'], ')
  1099. document.forms.postmodify.', $context['post_box_name'], '.style.borderColor = \'\';
  1100. else
  1101. document.forms.postmodify.', $context['post_box_name'], '.style.border = null;
  1102. }
  1103. location.hash = \'#\' + \'preview_section\';
  1104. }';
  1105. // Code for showing and hiding drafts
  1106. if (!empty($context['drafts']))
  1107. echo '
  1108. var oSwapDraftOptions = new smc_Toggle({
  1109. bToggleEnabled: true,
  1110. bCurrentlyCollapsed: true,
  1111. aSwappableContainers: [
  1112. \'postDraftOptions\',
  1113. ],
  1114. aSwapImages: [
  1115. {
  1116. sId: \'postDraftExpand\',
  1117. altExpanded: \'-\',
  1118. altCollapsed: \'+\'
  1119. }
  1120. ],
  1121. aSwapLinks: [
  1122. {
  1123. sId: \'postDraftExpandLink\',
  1124. msgExpanded: ', JavaScriptEscape($txt['draft_hide']), ',
  1125. msgCollapsed: ', JavaScriptEscape($txt['draft_load']), '
  1126. }
  1127. ]
  1128. });';
  1129. echo '
  1130. // ]]></script>';
  1131. // Show the message you're replying to.
  1132. if ($context['reply'])
  1133. echo '
  1134. <br />
  1135. <br />
  1136. <div class="cat_bar">
  1137. <h3 class="catbg">', $txt['subject'], ': ', $context['quoted_message']['subject'], '</h3>
  1138. </div>
  1139. <div class="windowbg2">
  1140. <div class="content">
  1141. <div class="clear">
  1142. <span class="smalltext floatright">', $txt['on'], ': ', $context['quoted_message']['time'], '</span>
  1143. <strong>', $txt['from'], ': ', $context['quoted_message']['member']['name'], '</strong>
  1144. </div>
  1145. <hr />
  1146. ', $context['quoted_message']['body'], '
  1147. </div>
  1148. </div><br class="clear" />';
  1149. echo '
  1150. <script src="', $settings['default_theme_url'], '/scripts/PersonalMessage.js?alp21"></script>
  1151. <script src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  1152. <script><!-- // --><![CDATA[
  1153. var oPersonalMessageSend = new smf_PersonalMessageSend({
  1154. sSelf: \'oPersonalMessageSend\',
  1155. sSessionId: smf_session_id,
  1156. sSessionVar: smf_session_var,
  1157. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  1158. sToControlId: \'to_control\',
  1159. aToRecipients: [';
  1160. foreach ($context['recipients']['to'] as $i => $member)
  1161. echo '
  1162. {
  1163. sItemId: ', JavaScriptEscape($member['id']), ',
  1164. sItemName: ', JavaScriptEscape($member['name']), '
  1165. }', $i == count($context['recipients']['to']) - 1 ? '' : ',';
  1166. echo '
  1167. ],
  1168. aBccRecipients: [';
  1169. foreach ($context['recipients']['bcc'] as $i => $member)
  1170. echo '
  1171. {
  1172. sItemId: ', JavaScriptEscape($member['id']), ',
  1173. sItemName: ', JavaScriptEscape($member['name']), '
  1174. }', $i == count($context['recipients']['bcc']) - 1 ? '' : ',';
  1175. echo '
  1176. ],
  1177. sBccControlId: \'bcc_control\',
  1178. sBccDivId: \'bcc_div\',
  1179. sBccDivId2: \'bcc_div2\',
  1180. sBccLinkId: \'bcc_link\',
  1181. sBccLinkContainerId: \'bcc_link_container\',
  1182. bBccShowByDefault: ', empty($context['recipients']['bcc']) && empty($context['bcc_value']) ? 'false' : 'true', ',
  1183. sShowBccLinkTemplate: ', JavaScriptEscape('
  1184. <a href="#" id="bcc_link">' . $txt['make_bcc'] . '</a> <a href="' . $scripturl . '?action=helpadmin;help=pm_bcc" onclick="return reqOverlayDiv(this.href);">(?)</a>'
  1185. ), '
  1186. });
  1187. ';
  1188. echo '
  1189. // ]]></script>';
  1190. }
  1191. // This template asks the user whether they wish to empty out their folder/messages.
  1192. function template_ask_delete()
  1193. {
  1194. global $context, $scripturl, $modSettings, $txt;
  1195. echo '
  1196. <div class="cat_bar">
  1197. <h3 class="catbg">', ($context['delete_all'] ? $txt['delete_message'] : $txt['delete_all']), '</h3>
  1198. </div>
  1199. <div class="windowbg">
  1200. <div class="content">
  1201. <p>', $txt['delete_all_confirm'], '</p><br />
  1202. <strong><a href="', $scripturl, '?action=pm;sa=removeall2;f=', $context['folder'], ';', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';', $context['session_var'], '=', $context['session_id'], '">', $txt['yes'], '</a> - <a href="javascript:history.go(-1);">', $txt['no'], '</a></strong>
  1203. </div>
  1204. </div>';
  1205. }
  1206. // This template asks the user what messages they want to prune.
  1207. function template_prune()
  1208. {
  1209. global $context, $scripturl, $txt;
  1210. echo '
  1211. <form action="', $scripturl, '?action=pm;sa=prune" method="post" accept-charset="', $context['character_set'], '" onsubmit="return confirm(\'', $txt['pm_prune_warning'], '\');">
  1212. <div class="cat_bar">
  1213. <h3 class="catbg">', $txt['pm_prune'], '</h3>
  1214. </div>
  1215. <div class="windowbg">
  1216. <div class="content">
  1217. <p>', $txt['pm_prune_desc1'], ' <input type="text" name="age" size="3" value="14" class="input_text" /> ', $txt['pm_prune_desc2'], '</p>
  1218. <input type="submit" value="', $txt['delete'], '" class="button_submit" />
  1219. </div>
  1220. </div>
  1221. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1222. </form>';
  1223. }
  1224. // Here we allow the user to setup labels, remove labels and change rules for labels (i.e, do quite a bit)
  1225. function template_labels()
  1226. {
  1227. global $context, $scripturl, $txt;
  1228. echo '
  1229. <form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '">
  1230. <div class="cat_bar">
  1231. <h3 class="catbg">', $txt['pm_manage_labels'], '</h3>
  1232. </div>
  1233. <div class="description">
  1234. ', $txt['pm_labels_desc'], '
  1235. </div>
  1236. <table class="table_grid">
  1237. <thead>
  1238. <tr class="catbg">
  1239. <th class="lefttext first_th">
  1240. ', $txt['pm_label_name'], '
  1241. </th>
  1242. <th class="centertext last_th" width="4%">';
  1243. if (count($context['labels']) > 2)
  1244. echo '
  1245. <input type="checkbox" class="input_check" onclick="invertAll(this, this.form);" />';
  1246. echo '
  1247. </th>
  1248. </tr>
  1249. </thead>
  1250. <tbody>';
  1251. if (count($context['labels']) < 2)
  1252. echo '
  1253. <tr class="windowbg2">
  1254. <td colspan="2" align="center">', $txt['pm_labels_no_exist'], '</td>
  1255. </tr>';
  1256. else
  1257. {
  1258. $alternate = true;
  1259. foreach ($context['labels'] as $label)
  1260. {
  1261. if ($label['id'] == -1)
  1262. continue;
  1263. echo '
  1264. <tr class="', $alternate ? 'windowbg2' : 'windowbg', '">
  1265. <td>
  1266. <input type="text" name="label_name[', $label['id'], ']" value="', $label['name'], '" size="30" maxlength="30" class="input_text" />
  1267. </td>
  1268. <td width="4%" align="center"><input type="checkbox" class="input_check" name="delete_label[', $label['id'], ']" /></td>
  1269. </tr>';
  1270. $alternate = !$alternate;
  1271. }
  1272. }
  1273. echo '
  1274. </tbody>
  1275. </table>';
  1276. if (!count($context['labels']) < 2)
  1277. echo '
  1278. <div class="padding">
  1279. <input type="submit" name="save" value="', $txt['save'], '" class="button_submit" />
  1280. <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" onclick="return confirm(\'', $txt['pm_labels_delete'], '\');" class="button_submit" />
  1281. </div>';
  1282. echo '
  1283. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1284. </form>
  1285. <br class="clear" />
  1286. <form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '" style="margin-top: 1ex;">
  1287. <div class="cat_bar">
  1288. <h3 class="catbg">', $txt['pm_label_add_new'], '</h3>
  1289. </div>
  1290. <div class="windowbg">
  1291. <div class="content">
  1292. <dl class="settings">
  1293. <dt>
  1294. <strong><label for="add_label">', $txt['pm_label_name'], '</label>:</strong>
  1295. </dt>
  1296. <dd>
  1297. <input type="text" id="add_label" name="label" value="" size="30" maxlength="30" class="input_text" />
  1298. </dd>
  1299. </dl>
  1300. <input type="submit" name="add" value="', $txt['pm_label_add_new'], '" class="button_submit" />
  1301. </div>
  1302. </div>
  1303. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1304. </form><br />';
  1305. }
  1306. // Template for reporting a personal message.
  1307. function template_report_message()
  1308. {
  1309. global $context, $txt, $scripturl;
  1310. echo '
  1311. <form action="', $scripturl, '?action=pm;sa=report;l=', $context['current_label_id'], '" method="post" accept-charset="', $context['character_set'], '">
  1312. <input type="hidden" name="pmsg" value="', $context['pm_id'], '" />
  1313. <div class="cat_bar">
  1314. <h3 class="catbg">', $txt['pm_report_title'], '</h3>
  1315. </div>
  1316. <div class="description">
  1317. ', $txt['pm_report_desc'], '
  1318. </div>
  1319. <div class="windowbg">
  1320. <div class="content">
  1321. <dl class="settings">';
  1322. // If there is more than one admin on the forum, allow the user to choose the one they want to direct to.
  1323. // @todo Why?
  1324. if ($context['admin_count'] > 1)
  1325. {
  1326. echo '
  1327. <dt>
  1328. <strong>', $txt['pm_report_admins'], ':</strong>
  1329. </dt>
  1330. <dd>
  1331. <select name="id_admin">
  1332. <option value="0">', $txt['pm_report_all_admins'], '</option>';
  1333. foreach ($context['admins'] as $id => $name)
  1334. echo '
  1335. <option value="', $id, '">', $name, '</option>';
  1336. echo '
  1337. </select>
  1338. </dd>';
  1339. }
  1340. echo '
  1341. <dt>
  1342. <strong>', $txt['pm_report_reason'], ':</strong>
  1343. </dt>
  1344. <dd>
  1345. <textarea name="reason" rows="4" cols="70" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 80%; min-width: 80%' : 'width: 80%') . ';"></textarea>
  1346. </dd>
  1347. </dl>
  1348. <div class="righttext">
  1349. <input type="submit" name="report" value="', $txt['pm_report_message'], '" class="button_submit" />
  1350. </div>
  1351. </div>
  1352. </div>
  1353. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1354. </form>';
  1355. }
  1356. // Little template just to say "Yep, it's been submitted"
  1357. function template_report_message_complete()
  1358. {
  1359. global $context, $txt, $scripturl;
  1360. echo '
  1361. <div class="cat_bar">
  1362. <h3 class="catbg">', $txt['pm_report_title'], '</h3>
  1363. </div>
  1364. <div class="windowbg">
  1365. <div class="content">
  1366. <p>', $txt['pm_report_done'], '</p>
  1367. <a href="', $scripturl, '?action=pm;l=', $context['current_label_id'], '">', $txt['pm_report_return'], '</a>
  1368. </div>
  1369. </div>';
  1370. }
  1371. // Manage rules.
  1372. function template_rules()
  1373. {
  1374. global $context, $txt, $scripturl;
  1375. echo '
  1376. <form action="', $scripturl, '?action=pm;sa=manrules" method="post" accept-charset="', $context['character_set'], '" name="manRules" id="manrules">
  1377. <div class="cat_bar">
  1378. <h3 class="catbg">', $txt['pm_manage_rules'], '</h3>
  1379. </div>
  1380. <div class="description">
  1381. ', $txt['pm_manage_rules_desc'], '
  1382. </div>
  1383. <table class="table_grid">
  1384. <thead>
  1385. <tr class="catbg">
  1386. <th class="lefttext first_th">
  1387. ', $txt['pm_rule_title'], '
  1388. </th>
  1389. <th width="4%" class="centertext last_th">';
  1390. if (!empty($context['rules']))
  1391. echo '
  1392. <input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />';
  1393. echo '
  1394. </th>
  1395. </tr>
  1396. </thead>
  1397. <tbody>';
  1398. if (empty($context['rules']))
  1399. echo '
  1400. <tr class="windowbg2">
  1401. <td colspan="2" align="center">
  1402. ', $txt['pm_rules_none'], '
  1403. </td>
  1404. </tr>';
  1405. $alternate = false;
  1406. foreach ($context['rules'] as $rule)
  1407. {
  1408. echo '
  1409. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '">
  1410. <td>
  1411. <a href="', $scripturl, '?action=pm;sa=manrules;add;rid=', $rule['id'], '">', $rule['name'], '</a>
  1412. </td>
  1413. <td width="4%" align="center">
  1414. <input type="checkbox" name="delrule[', $rule['id'], ']" class="input_check" />
  1415. </td>
  1416. </tr>';
  1417. $alternate = !$alternate;
  1418. }
  1419. echo '
  1420. </tbody>
  1421. </table>
  1422. <div class="righttext">
  1423. <a class="button_link" href="', $scripturl, '?action=pm;sa=manrules;add;rid=0">', $txt['pm_add_rule'], '</a>';
  1424. if (!empty($context['rules']))
  1425. echo '
  1426. [<a href="', $scripturl, '?action=pm;sa=manrules;apply;', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['pm_js_apply_rules_confirm'], '\');">', $txt['pm_apply_rules'], '</a>]';
  1427. if (!empty($context['rules']))
  1428. echo '
  1429. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1430. <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" onclick="return confirm(\'', $txt['pm_js_delete_rule_confirm'], '\');" class="button_submit smalltext" />';
  1431. echo '
  1432. </div>
  1433. </form>';
  1434. }
  1435. // Template for adding/editing a rule.
  1436. function template_add_rule()
  1437. {
  1438. global $context, $txt, $scripturl;
  1439. echo '
  1440. <script><!-- // --><![CDATA[
  1441. var criteriaNum = 0;
  1442. var actionNum = 0;
  1443. var groups = new Array()
  1444. var labels = new Array()';
  1445. foreach ($context['groups'] as $id => $title)
  1446. echo '
  1447. groups[', $id, '] = "', addslashes($title), '";';
  1448. foreach ($context['labels'] as $label)
  1449. if ($label['id'] != -1)
  1450. echo '
  1451. labels[', ($label['id']), '] = "', addslashes($label['name']), '";';
  1452. echo '
  1453. function addCriteriaOption()
  1454. {
  1455. if (criteriaNum == 0)
  1456. {
  1457. for (var i = 0; i < document.forms.addrule.elements.length; i++)
  1458. if (document.forms.addrule.elements[i].id.substr(0, 8) == "ruletype")
  1459. criteriaNum++;
  1460. }
  1461. criteriaNum++
  1462. setOuterHTML(document.getElementById("criteriaAddHere"), \'<br /><select name="ruletype[\' + criteriaNum + \']" id="ruletype\' + criteriaNum + \'" onchange="updateRuleDef(\' + criteriaNum + \'); rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_criteria_pick']), ':<\' + \'/option><option value="mid">', addslashes($txt['pm_rule_mid']), '<\' + \'/option><option value="gid">', addslashes($txt['pm_rule_gid']), '<\' + \'/option><option value="sub">', addslashes($txt['pm_rule_sub']), '<\' + \'/option><option value="msg">', addslashes($txt['pm_rule_msg']), '<\' + \'/option><option value="bud">', addslashes($txt['pm_rule_bud']), '<\' + \'/option><\' + \'/select>&nbsp;<span id="defdiv\' + criteriaNum + \'" style="display: none;"><input type="text" name="ruledef[\' + criteriaNum + \']" id="ruledef\' + criteriaNum + \'" onkeyup="rebuildRuleDesc();" value="" class="input_text" /><\' + \'/span><span id="defseldiv\' + criteriaNum + \'" style="display: none;"><select name="ruledefgroup[\' + criteriaNum + \']" id="ruledefgroup\' + criteriaNum + \'" onchange="rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_group']), '<\' + \'/option>';
  1463. foreach ($context['groups'] as $id => $group)
  1464. echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>';
  1465. echo '<\' + \'/select><\' + \'/span><span id="criteriaAddHere"><\' + \'/span>\');
  1466. }
  1467. function addActionOption()
  1468. {
  1469. if (actionNum == 0)
  1470. {
  1471. for (var i = 0; i < document.forms.addrule.elements.length; i++)
  1472. if (document.forms.addrule.elements[i].id.substr(0, 7) == "acttype")
  1473. actionNum++;
  1474. }
  1475. actionNum++
  1476. setOuterHTML(document.getElementById("actionAddHere"), \'<br /><select name="acttype[\' + actionNum + \']" id="acttype\' + actionNum + \'" onchange="updateActionDef(\' + actionNum + \'); rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_action']), ':<\' + \'/option><option value="lab">', addslashes($txt['pm_rule_label']), '<\' + \'/option><option value="del">', addslashes($txt['pm_rule_delete']), '<\' + \'/option><\' + \'/select>&nbsp;<span id="labdiv\' + actionNum + \'" style="display: none;"><select name="labdef[\' + actionNum + \']" id="labdef\' + actionNum + \'" onchange="rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_label']), '<\' + \'/option>';
  1477. foreach ($context['labels'] as $label)
  1478. if ($label['id'] != -1)
  1479. echo '<option value="', ($label['id']), '">', addslashes($label['name']), '<\' + \'/option>';
  1480. echo '<\' + \'/select><\' + \'/span><span id="actionAddHere"><\' + \'/span>\');
  1481. }
  1482. // Rebuild the rule description!
  1483. function rebuildRuleDesc()
  1484. {
  1485. // Start with nothing.
  1486. var text = "";
  1487. var joinText = "";
  1488. var actionText = "";
  1489. var hadBuddy = false;
  1490. var foundCriteria = false;
  1491. var foundAction = false;
  1492. var curNum, curVal, curDef;
  1493. for (var i = 0; i < document.forms.addrule.elements.length; i++)
  1494. {
  1495. if (document.forms.addrule.elements[i].id.substr(0, 8) == "ruletype")
  1496. {
  1497. if (foundCriteria)
  1498. joinText = document.getElementById("logic").value == \'and\' ? ', JavaScriptEscape(' ' . $txt['pm_readable_and'] . ' '), ' : ', JavaScriptEscape(' ' . $txt['pm_readable_or'] . ' '), ';
  1499. else
  1500. joinText = \'\';
  1501. foundCriteria = true;
  1502. curNum = document.forms.addrule.elements[i].id.match(/\d+/);
  1503. curVal = document.forms.addrule.elements[i].value;
  1504. if (curVal == "gid")
  1505. curDef = document.getElementById("ruledefgroup" + curNum).value.php_htmlspecialchars();
  1506. else if (curVal != "bud")
  1507. curDef = document.getElementById("ruledef" + curNum).value.php_htmlspecialchars();
  1508. else
  1509. curDef = "";
  1510. // What type of test is this?
  1511. if (curVal == "mid" && curDef)
  1512. text += joinText + ', JavaScriptEscape($txt['pm_readable_member']), '.replace("{MEMBER}", curDef);
  1513. else if (curVal == "gid" && curDef && groups[curDef])
  1514. text += joinText + ', JavaScriptEscape($txt['pm_readable_group']), '.replace("{GROUP}", groups[curDef]);
  1515. else if (curVal == "sub" && curDef)
  1516. text += joinText + ', JavaScriptEscape($txt['pm_readable_subject']), '.replace("{SUBJECT}", curDef);
  1517. else if (curVal == "msg" && curDef)
  1518. text += joinText + ', JavaScriptEscape($txt['pm_readable_body']), '.replace("{BODY}", curDef);
  1519. else if (curVal == "bud" && !hadBuddy)
  1520. {
  1521. text += joinText + ', JavaScriptEscape($txt['pm_readable_buddy']), ';
  1522. hadBuddy = true;
  1523. }
  1524. }
  1525. if (document.forms.addrule.elements[i].id.substr(0, 7) == "acttype")
  1526. {
  1527. if (foundAction)
  1528. joinText = ', JavaScriptEscape(' ' . $txt['pm_readable_and'] . ' '), ';
  1529. else
  1530. joinText = "";
  1531. foundAction = true;
  1532. curNum = document.forms.addrule.elements[i].id.match(/\d+/);
  1533. curVal = document.forms.addrule.elements[i].value;
  1534. if (curVal == "lab")
  1535. curDef = document.getElementById("labdef" + curNum).value.php_htmlspecialchars();
  1536. else
  1537. curDef = "";
  1538. // Now pick the actions.
  1539. if (curVal == "lab" && curDef && labels[curDef])
  1540. actionText += joinText + ', JavaScriptEscape($txt['pm_readable_label']), '.replace("{LABEL}", labels[curDef]);
  1541. else if (curVal == "del")
  1542. actionText += joinText + ', JavaScriptEscape($txt['pm_readable_delete']), ';
  1543. }
  1544. }
  1545. // If still nothing make it default!
  1546. if (text == "" || !foundCriteria)
  1547. text = "', $txt['pm_rule_not_defined'], '";
  1548. else
  1549. {
  1550. if (actionText != "")
  1551. text += ', JavaScriptEscape(' ' . $txt['pm_readable_then'] . ' '), ' + actionText;
  1552. text = ', JavaScriptEscape($txt['pm_readable_start']), ' + text + ', JavaScriptEscape($txt['pm_readable_end']), ';
  1553. }
  1554. // Set the actual HTML!
  1555. setInnerHTML(document.getElementById("ruletext"), text);
  1556. }
  1557. // ]]></script>';
  1558. echo '
  1559. <form action="', $scripturl, '?action=pm;sa=manrules;save;rid=', $context['rid'], '" method="post" accept-charset="', $context['character_set'], '" name="addrule" id="addrule" class="flow_hidden">
  1560. <div class="cat_bar">
  1561. <h3 class="catbg">', $context['rid'] == 0 ? $txt['pm_add_rule'] : $txt['pm_edit_rule'], '</h3>
  1562. </div>
  1563. <div class="windowbg">
  1564. <div class="content">
  1565. <dl class="addrules">
  1566. <dt class="floatleft">
  1567. <strong>', $txt['pm_rule_name'], ':</strong><br />
  1568. <span class="smalltext">', $txt['pm_rule_name_desc'], '</span>
  1569. </dt>
  1570. <dd class="floatleft">
  1571. <input type="text" name="rule_name" value="', empty($context['rule']['name']) ? $txt['pm_rule_name_default'] : $context['rule']['name'], '" size="50" class="input_text" />
  1572. </dd>
  1573. </dl>
  1574. <fieldset>
  1575. <legend>', $txt['pm_rule_criteria'], '</legend>';
  1576. // Add a dummy criteria to allow expansion for none js users.
  1577. $context['rule']['criteria'][] = array('t' => '', 'v' => '');
  1578. // For each criteria print it out.
  1579. $isFirst = true;
  1580. foreach ($context['rule']['criteria'] as $k => $criteria)
  1581. {
  1582. if (!$isFirst && $criteria['t'] == '')
  1583. echo '<div id="removeonjs1">';
  1584. elseif (!$isFirst)
  1585. echo '<br />';
  1586. echo '
  1587. <select name="ruletype[', $k, ']" id="ruletype', $k, '" onchange="updateRuleDef(', $k, '); rebuildRuleDesc();">
  1588. <option value="">', $txt['pm_rule_criteria_pick'], ':</option>
  1589. <option value="mid" ', $criteria['t'] == 'mid' ? 'selected="selected"' : '', '>', $txt['pm_rule_mid'], '</option>
  1590. <option value="gid" ', $criteria['t'] == 'gid' ? 'selected="selected"' : '', '>', $txt['pm_rule_gid'], '</option>
  1591. <option value="sub" ', $criteria['t'] == 'sub' ? 'selected="selected"' : '', '>', $txt['pm_rule_sub'], '</option>
  1592. <option value="msg" ', $criteria['t'] == 'msg' ? 'selected="selected"' : '', '>', $txt['pm_rule_msg'], '</option>
  1593. <option value="bud" ', $criteria['t'] == 'bud' ? 'selected="selected"' : '', '>', $txt['pm_rule_bud'], '</option>
  1594. </select>
  1595. <span id="defdiv', $k, '" ', !in_array($criteria['t'], array('gid', 'bud')) ? '' : 'style="display: none;"', '>
  1596. <input type="text" name="ruledef[', $k, ']" id="ruledef', $k, '" onkeyup="rebuildRuleDesc();" value="', in_array($criteria['t'], array('mid', 'sub', 'msg')) ? $criteria['v'] : '', '" class="input_text" />
  1597. </span>
  1598. <span id="defseldiv', $k, '" ', $criteria['t'] == 'gid' ? '' : 'style="display: none;"', '>
  1599. <select name="ruledefgroup[', $k, ']" id="ruledefgroup', $k, '" onchange="rebuildRuleDesc();">
  1600. <option value="">', $txt['pm_rule_sel_group'], '</option>';
  1601. foreach ($context['groups'] as $id => $group)
  1602. echo '
  1603. <option value="', $id, '" ', $criteria['t'] == 'gid' && $criteria['v'] == $id ? 'selected="selected"' : '', '>', $group, '</option>';
  1604. echo '
  1605. </select>
  1606. </span>';
  1607. // If this is the dummy we add a means to hide for non js users.
  1608. if ($isFirst)
  1609. $isFirst = false;
  1610. elseif ($criteria['t'] == '')
  1611. echo '</div>';
  1612. }
  1613. echo '
  1614. <span id="criteriaAddHere"></span><br />
  1615. <a href="#" onclick="addCriteriaOption(); return false;" id="addonjs1" style="display: none;">(', $txt['pm_rule_criteria_add'], ')</a>
  1616. <br /><br />
  1617. ', $txt['pm_rule_logic'], ':
  1618. <select name="rule_logic" id="logic" onchange="rebuildRuleDesc();">
  1619. <option value="and" ', $context['rule']['logic'] == 'and' ? 'selected="selected"' : '', '>', $txt['pm_rule_logic_and'], '</option>
  1620. <option value="or" ', $context['rule']['logic'] == 'or' ? 'selected="selected"' : '', '>', $txt['pm_rule_logic_or'], '</option>
  1621. </select>
  1622. </fieldset>
  1623. <fieldset>
  1624. <legend>', $txt['pm_rule_actions'], '</legend>';
  1625. // As with criteria - add a dummy action for "expansion".
  1626. $context['rule']['actions'][] = array('t' => '', 'v' => '');
  1627. // Print each action.
  1628. $isFirst = true;
  1629. foreach ($context['rule']['actions'] as $k => $action)
  1630. {
  1631. if (!$isFirst && $action['t'] == '')
  1632. echo '<div id="removeonjs2">';
  1633. elseif (!$isFirst)
  1634. echo '<br />';
  1635. echo '
  1636. <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();">
  1637. <option value="">', $txt['pm_rule_sel_action'] , ':</option>
  1638. <option value="lab" ', $action['t'] == 'lab' ? 'selected="selected"' : '', '>', $txt['pm_rule_label'] , '</option>
  1639. <option value="del" ', $action['t'] == 'del' ? 'selected="selected"' : '', '>', $txt['pm_rule_delete'] , '</option>
  1640. </select>
  1641. <span id="labdiv', $k, '">
  1642. <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();">
  1643. <option value="">', $txt['pm_rule_sel_label'], '</option>';
  1644. foreach ($context['labels'] as $label)
  1645. if ($label['id'] != -1)
  1646. echo '
  1647. <option value="', ($label['id']), '" ', $action['t'] == 'lab' && $action['v'] == $label['id'] ? 'selected="selected"' : '', '>', $label['name'], '</option>';
  1648. echo '
  1649. </select>
  1650. </span>';
  1651. if ($isFirst)
  1652. $isFirst = false;
  1653. elseif ($action['t'] == '')
  1654. echo '
  1655. </div>';
  1656. }
  1657. echo '
  1658. <span id="actionAddHere"></span><br />
  1659. <a href="#" onclick="addActionOption(); return false;" id="addonjs2" style="display: none;">(', $txt['pm_rule_add_action'], ')</a>
  1660. </fieldset>
  1661. </div>
  1662. <div class="cat_bar">
  1663. <h3 class="catbg">', $txt['pm_rule_description'], '</h3>
  1664. </div>
  1665. <div class="information">
  1666. <div id="ruletext">', $txt['pm_rule_js_disabled'], '</div>
  1667. </div>
  1668. <div class="righttext">
  1669. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1670. <input type="submit" name="save" value="', $txt['pm_rule_save'], '" class="button_submit" />
  1671. </div>
  1672. </div>
  1673. </form>';
  1674. // Now setup all the bits!
  1675. echo '
  1676. <script><!-- // --><![CDATA[';
  1677. foreach ($context['rule']['criteria'] as $k => $c)
  1678. echo '
  1679. updateRuleDef(', $k, ');';
  1680. foreach ($context['rule']['actions'] as $k => $c)
  1681. echo '
  1682. updateActionDef(', $k, ');';
  1683. echo '
  1684. rebuildRuleDesc();';
  1685. // If this isn't a new rule and we have JS enabled remove the JS compatibility stuff.
  1686. if ($context['rid'])
  1687. echo '
  1688. document.getElementById("removeonjs1").style.display = "none";
  1689. document.getElementById("removeonjs2").style.display = "none";';
  1690. echo '
  1691. document.getElementById("addonjs1").style.display = "";
  1692. document.getElementById("addonjs2").style.display = "";';
  1693. echo '
  1694. // ]]></script>';
  1695. }
  1696. // Template for showing all the PM drafts of the user.
  1697. function template_showPMDrafts()
  1698. {
  1699. global $context, $scripturl, $modSettings, $txt;
  1700. echo '
  1701. <div class="cat_bar">
  1702. <h3 class="catbg">
  1703. <span class="pm_icons inbox icon"></span>', $txt['drafts_show'], '
  1704. </h3>
  1705. </div>
  1706. <div class="pagesection">
  1707. <span>', $context['page_index'], '</span>
  1708. </div>';
  1709. // Button shortcuts
  1710. $edit_button = create_button('modify_inline.png', 'draft_edit', 'draft_edit', 'class="centericon"');
  1711. $remove_button = create_button('delete.png', 'draft_delete', 'draft_delete', 'class="centericon"');
  1712. // No drafts? Just show an informative message.
  1713. if (empty($context['drafts']))
  1714. echo '
  1715. <div class="tborder windowbg2 padding centertext">
  1716. ', $txt['draft_none'], '
  1717. </div>';
  1718. else
  1719. {
  1720. // For every draft to be displayed, give it its own div, and show the important details of the draft.
  1721. foreach ($context['drafts'] as $draft)
  1722. {
  1723. echo '
  1724. <div class="topic">
  1725. <div class="', $draft['alternate'] == 0 ? 'windowbg2' : 'windowbg', ' core_posts">
  1726. <div class="content">
  1727. <div class="counter">', $draft['counter'], '</div>
  1728. <div class="topic_details">
  1729. <h5><strong>', $draft['subject'], '</strong>&nbsp;';
  1730. echo '
  1731. </h5>
  1732. <span class="smalltext">&#171;&nbsp;<strong>', $txt['draft_saved_on'], ':</strong> ', sprintf($txt['draft_days_ago'], $draft['age']), (!empty($draft['remaining']) ? ', ' . sprintf($txt['draft_retain'], $draft['remaining']) : ''), '&#187;</span><br />
  1733. <span class="smalltext">&#171;&nbsp;<strong>', $txt['to'], ':</strong> ', implode(', ', $draft['recipients']['to']), '&nbsp;&#187;</span><br />
  1734. <span class="smalltext">&#171;&nbsp;<strong>', $txt['pm_bcc'], ':</strong> ', implode(', ', $draft['recipients']['bcc']), '&nbsp;&#187;</span>
  1735. </div>
  1736. <div class="list_posts">
  1737. ', $draft['body'], '
  1738. </div>
  1739. <ul class="reset smalltext quickbuttons">
  1740. <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;id_draft=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '" class="reply_button"><span>', $txt['draft_edit'], '</span></a></li>
  1741. <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;delete=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['draft_remove'], '?\');" class="remove_button"><span>', $txt['draft_delete'], '</span></a></li>
  1742. </ul>
  1743. </div>
  1744. </div>
  1745. </div>';
  1746. }
  1747. }
  1748. // Show page numbers.
  1749. echo '
  1750. <div class="pagesection" style="margin-bottom: 0;">
  1751. <span>', $context['page_index'], '</span>
  1752. </div>';
  1753. }
  1754. ?>