PersonalMessage.template.php 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2011 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. // This is the main sidebar for the personal messages section.
  13. function template_pm_above()
  14. {
  15. global $context, $settings, $options, $txt;
  16. echo '
  17. <div id="personal_messages">';
  18. // Show the capacity bar, if available.
  19. if (!empty($context['limit_bar']))
  20. echo '
  21. <div class="title_bar">
  22. <h3 class="titlebg">
  23. <span class="floatleft">', $txt['pm_capacity'], ':</span>
  24. <span class="floatleft capacity_bar">
  25. <span class="', $context['limit_bar']['percent'] > 85 ? 'full' : ($context['limit_bar']['percent'] > 40 ? 'filled' : 'empty'), '" style="width: ', $context['limit_bar']['percent'] / 10, 'em;"></span>
  26. </span>
  27. <span class="floatright', $context['limit_bar']['percent'] > 90 ? ' alert' : '', '">', $context['limit_bar']['text'], '</span>
  28. </h3>
  29. </div>';
  30. // Message sent? Show a small indication.
  31. if (isset($context['pm_sent']))
  32. echo '
  33. <div class="windowbg" id="profile_success">
  34. ', $txt['pm_sent'], '
  35. </div>';
  36. }
  37. // Just the end of the index bar, nothing special.
  38. function template_pm_below()
  39. {
  40. global $context, $settings, $options;
  41. echo '
  42. </div>';
  43. }
  44. function template_folder()
  45. {
  46. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  47. // The every helpful javascript!
  48. echo '
  49. <script type="text/javascript"><!-- // --><![CDATA[
  50. var allLabels = {};
  51. var currentLabels = {};
  52. function loadLabelChoices()
  53. {
  54. var listing = document.forms.pmFolder.elements;
  55. var theSelect = document.forms.pmFolder.pm_action;
  56. var add, remove, toAdd = {length: 0}, toRemove = {length: 0};
  57. if (theSelect.childNodes.length == 0)
  58. return;
  59. // This is done this way for internationalization reasons.
  60. if (!(\'-1\' in allLabels))
  61. {
  62. for (var o = 0; o < theSelect.options.length; o++)
  63. if (theSelect.options[o].value.substr(0, 4) == "rem_")
  64. allLabels[theSelect.options[o].value.substr(4)] = theSelect.options[o].text;
  65. }
  66. for (var i = 0; i < listing.length; i++)
  67. {
  68. if (listing[i].name != "pms[]" || !listing[i].checked)
  69. continue;
  70. var alreadyThere = [], x;
  71. for (x in currentLabels[listing[i].value])
  72. {
  73. if (!(x in toRemove))
  74. {
  75. toRemove[x] = allLabels[x];
  76. toRemove.length++;
  77. }
  78. alreadyThere[x] = allLabels[x];
  79. }
  80. for (x in allLabels)
  81. {
  82. if (!(x in alreadyThere))
  83. {
  84. toAdd[x] = allLabels[x];
  85. toAdd.length++;
  86. }
  87. }
  88. }
  89. while (theSelect.options.length > 2)
  90. theSelect.options[2] = null;
  91. if (toAdd.length != 0)
  92. {
  93. theSelect.options[theSelect.options.length] = new Option("', $txt['pm_msg_label_apply'], '", "");
  94. setInnerHTML(theSelect.options[theSelect.options.length - 1], "', $txt['pm_msg_label_apply'], '");
  95. theSelect.options[theSelect.options.length - 1].disabled = true;
  96. for (i in toAdd)
  97. {
  98. if (i != "length")
  99. theSelect.options[theSelect.options.length] = new Option(toAdd[i], "add_" + i);
  100. }
  101. }
  102. if (toRemove.length != 0)
  103. {
  104. theSelect.options[theSelect.options.length] = new Option("', $txt['pm_msg_label_remove'], '", "");
  105. setInnerHTML(theSelect.options[theSelect.options.length - 1], "', $txt['pm_msg_label_remove'], '");
  106. theSelect.options[theSelect.options.length - 1].disabled = true;
  107. for (i in toRemove)
  108. {
  109. if (i != "length")
  110. theSelect.options[theSelect.options.length] = new Option(toRemove[i], "rem_" + i);
  111. }
  112. }
  113. }
  114. // ]]></script>';
  115. echo '
  116. <form class="flow_hidden" action="', $scripturl, '?action=pm;sa=pmactions;', $context['display_mode'] == 2 ? 'conversation;' : '', 'f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '" method="post" accept-charset="', $context['character_set'], '" name="pmFolder">';
  117. // If we are not in single display mode show the subjects on the top!
  118. if ($context['display_mode'] != 1)
  119. {
  120. template_subject_list();
  121. echo '<div class="clear_right"><br /></div>';
  122. }
  123. // Got some messages to display?
  124. if ($context['get_pmessage']('message', true))
  125. {
  126. // Show the helpful titlebar - generally.
  127. if ($context['display_mode'] != 1)
  128. echo '
  129. <div class="cat_bar">
  130. <h3 class="catbg">
  131. <span id="author">', $txt['author'], '</span>
  132. <span id="topic_title">', $txt[$context['display_mode'] == 0 ? 'messages' : 'conversation'], '</span>
  133. </h3>
  134. </div>';
  135. // Show a few buttons if we are in conversation mode and outputting the first message.
  136. if ($context['display_mode'] == 2)
  137. {
  138. // Build the normal button array.
  139. $conversation_buttons = array(
  140. 'reply' => array('text' => 'reply_to_all', 'image' => 'reply.gif', 'lang' => true, 'url' => $scripturl . '?action=pm;sa=send;f=' . $context['folder'] . ($context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '') . ';pmsg=' . $context['current_pm'] . ';u=all', 'active' => true),
  141. 'delete' => array('text' => 'delete_conversation', 'image' => 'delete.gif', 'lang' => true, 'url' => $scripturl . '?action=pm;sa=pmactions;pm_actions[' . $context['current_pm'] . ']=delete;conversation;f=' . $context['folder'] . ';start=' . $context['start'] . ($context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '') . ';' . $context['session_var'] . '=' . $context['session_id'], 'custom' => 'onclick="return confirm(\'' . addslashes($txt['remove_message']) . '?\');"'),
  142. );
  143. // Show the conversation buttons.
  144. echo '
  145. <div class="pagesection">';
  146. template_button_strip($conversation_buttons, 'right');
  147. echo '
  148. </div>';
  149. }
  150. while ($message = $context['get_pmessage']('message'))
  151. {
  152. $window_class = $message['alternate'] == 0 ? 'windowbg' : 'windowbg2';
  153. echo '
  154. <div class="', $window_class, ' clear">
  155. <span class="topslice"><span></span></span>
  156. <div class="poster">
  157. <a id="msg', $message['id'], '"></a>
  158. <h4>';
  159. // Show online and offline buttons?
  160. if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
  161. echo '
  162. <img src="', $message['member']['online']['image_href'], '" alt="', $message['member']['online']['text'], '" />';
  163. echo '
  164. ', $message['member']['link'], '
  165. </h4>
  166. <ul class="reset smalltext" id="msg_', $message['id'], '_extra_info">';
  167. // Show the member's custom title, if they have one.
  168. if (isset($message['member']['title']) && $message['member']['title'] != '')
  169. echo '
  170. <li class="title">', $message['member']['title'], '</li>';
  171. // Show the member's primary group (like 'Administrator') if they have one.
  172. if (isset($message['member']['group']) && $message['member']['group'] != '')
  173. echo '
  174. <li class="membergroup">', $message['member']['group'], '</li>';
  175. // Don't show these things for guests.
  176. if (!$message['member']['is_guest'])
  177. {
  178. // 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.
  179. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  180. echo '
  181. <li class="postgroup">', $message['member']['post_group'], '</li>';
  182. echo '
  183. <li class="stars">', $message['member']['group_stars'], '</li>';
  184. // Show avatars, images, etc.?
  185. if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
  186. echo '
  187. <li class="avatar">
  188. <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
  189. ', $message['member']['avatar']['image'], '
  190. </a>
  191. </li>';
  192. // Show how many posts they have made.
  193. if (!isset($context['disabled_fields']['posts']))
  194. echo '
  195. <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
  196. // Is karma display enabled? Total or +/-?
  197. if ($modSettings['karmaMode'] == '1')
  198. echo '
  199. <li class="karma">', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
  200. elseif ($modSettings['karmaMode'] == '2')
  201. echo '
  202. <li class="karma">', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';
  203. // Is this user allowed to modify this member's karma?
  204. if ($message['member']['karma']['allow'])
  205. echo '
  206. <li class="karma_allow">
  207. <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>
  208. </li>';
  209. // Show the member's gender icon?
  210. if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
  211. echo '
  212. <li class="gender">', $txt['gender'], ': ', $message['member']['gender']['image'], '</li>';
  213. // Show their personal text?
  214. if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
  215. echo '
  216. <li class="blurb">', $message['member']['blurb'], '</li>';
  217. // Any custom fields to show as icons?
  218. if (!empty($message['member']['custom_fields']))
  219. {
  220. $shown = false;
  221. foreach ($message['member']['custom_fields'] as $custom)
  222. {
  223. if ($custom['placement'] != 1 || empty($custom['value']))
  224. continue;
  225. if (empty($shown))
  226. {
  227. $shown = true;
  228. echo '
  229. <li class="im_icons">
  230. <ul>';
  231. }
  232. echo '
  233. <li>', $custom['value'], '</li>';
  234. }
  235. if ($shown)
  236. echo '
  237. </ul>
  238. </li>';
  239. }
  240. // This shows the popular messaging icons.
  241. if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
  242. echo '
  243. <li class="im_icons">
  244. <ul>', !isset($context['disabled_fields']['icq']) && !empty($message['member']['icq']['link']) ? '
  245. <li>' . $message['member']['icq']['link'] . '</li>' : '', !isset($context['disabled_fields']['msn']) && !empty($message['member']['msn']['link']) ? '
  246. <li>' . $message['member']['msn']['link'] . '</li>' : '', !isset($context['disabled_fields']['aim']) && !empty($message['member']['aim']['link']) ? '
  247. <li>' . $message['member']['aim']['link'] . '</li>' : '', !isset($context['disabled_fields']['yim']) && !empty($message['member']['yim']['link']) ? '
  248. <li>' . $message['member']['yim']['link'] . '</li>' : '', '
  249. </ul>
  250. </li>';
  251. // Show the profile, website, email address, and personal message buttons.
  252. if ($settings['show_profile_buttons'])
  253. {
  254. echo '
  255. <li class="profile">
  256. <ul>';
  257. // Show the profile button
  258. echo '
  259. <li><a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.gif" alt="' . $txt['view_profile'] . '" title="' . $txt['view_profile'] . '" />' : $txt['view_profile']), '</a></li>';
  260. // Don't show an icon if they haven't specified a website.
  261. if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
  262. echo '
  263. <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/www_sm.gif" alt="' . $message['member']['website']['title'] . '" />' : $txt['www']), '</a></li>';
  264. // Don't show the email address if they want it hidden.
  265. if (in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')))
  266. echo '
  267. <li><a href="', $scripturl, '?action=emailuser;sa=email;uid=', $message['member']['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.gif" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
  268. // Since we know this person isn't a guest, you *can* message them.
  269. if ($context['can_send_pm'])
  270. echo '
  271. <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . '.gif" alt="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '" />' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';
  272. echo '
  273. </ul>
  274. </li>';
  275. }
  276. // Any custom fields for standard placement?
  277. if (!empty($message['member']['custom_fields']))
  278. {
  279. foreach ($message['member']['custom_fields'] as $custom)
  280. if (empty($custom['placement']) || empty($custom['value']))
  281. echo '
  282. <li class="custom">', $custom['title'], ': ', $custom['value'], '</li>';
  283. }
  284. // Are we showing the warning status?
  285. if ($message['member']['can_see_warning'])
  286. echo '
  287. <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<img src="', $settings['images_url'], '/warning_', $message['member']['warning_status'], '.gif" alt="', $txt['user_warn_' . $message['member']['warning_status']], '" />', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>';
  288. }
  289. // Done with the information about the poster... on to the post itself.
  290. echo '
  291. </ul>
  292. </div>
  293. <div class="postarea">
  294. <div class="flow_hidden">
  295. <div class="keyinfo">
  296. <h5 id="subject_', $message['id'], '">
  297. ', $message['subject'], '
  298. </h5>';
  299. // Show who the message was sent to.
  300. echo '
  301. <span class="smalltext">&#171; <strong> ', $txt['sent_to'], ':</strong> ';
  302. // People it was sent directly to....
  303. if (!empty($message['recipients']['to']))
  304. echo implode(', ', $message['recipients']['to']);
  305. // Otherwise, we're just going to say "some people"...
  306. elseif ($context['folder'] != 'sent')
  307. echo '(', $txt['pm_undisclosed_recipients'], ')';
  308. echo '
  309. <strong> ', $txt['on'], ':</strong> ', $message['time'], ' &#187;
  310. </span>';
  311. // If we're in the sent items, show who it was sent to besides the "To:" people.
  312. if (!empty($message['recipients']['bcc']))
  313. echo '
  314. <br /><span class="smalltext">&#171; <strong> ', $txt['pm_bcc'], ':</strong> ', implode(', ', $message['recipients']['bcc']), ' &#187;</span>';
  315. if (!empty($message['is_replied_to']))
  316. echo '
  317. <br /><span class="smalltext">&#171; ', $txt['pm_is_replied_to'], ' &#187;</span>';
  318. echo '
  319. </div>
  320. <ul class="reset smalltext quickbuttons">';
  321. // Show reply buttons if you have the permission to send PMs.
  322. if ($context['can_send_pm'])
  323. {
  324. // You can't really reply if the member is gone.
  325. if (!$message['member']['is_guest'])
  326. {
  327. // Is there than more than one recipient you can reply to?
  328. if ($message['number_recipients'] > 1 && $context['display_mode'] != 2)
  329. echo '
  330. <li class="reply_all_button"><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">', $txt['reply_to_all'], '</a></li>';
  331. echo '
  332. <li class="reply_button"><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'], '">', $txt['reply'], '</a></li>
  333. <li class="quote_button"><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'], '">', $txt['quote'], '</a></li>';
  334. }
  335. // This is for "forwarding" - even if the member is gone.
  336. else
  337. echo '
  338. <li class="forward_button"><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $txt['reply_quote'], '</a></li>';
  339. }
  340. echo '
  341. <li class="remove_button"><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']), '?\');">', $txt['delete'], '</a></li>';
  342. if (empty($context['display_mode']))
  343. echo '
  344. <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>';
  345. echo '
  346. </ul>
  347. </div>
  348. <div class="post">
  349. <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>
  350. <div class="smalltext reportlinks">
  351. ', (!empty($modSettings['enableReportPM']) && $context['folder'] != 'sent' ? '<div class="righttext"><a href="' . $scripturl . '?action=pm;sa=report;l=' . $context['current_label_id'] . ';pmsg=' . $message['id'] . '">' . $txt['pm_report_to_admin'] . '</a></div>' : '');
  352. echo '
  353. </div>';
  354. // Are there any custom profile fields for above the signature?
  355. if (!empty($message['member']['custom_fields']))
  356. {
  357. $shown = false;
  358. foreach ($message['member']['custom_fields'] as $custom)
  359. {
  360. if ($custom['placement'] != 2 || empty($custom['value']))
  361. continue;
  362. if (!$shown)
  363. {
  364. $shown = true;
  365. echo '
  366. <div class="custom_fields_above_signature">
  367. <ul class="reset nolist">';
  368. }
  369. echo '
  370. <li>', $custom['value'], '</li>';
  371. }
  372. if ($shown)
  373. echo '
  374. </ul>
  375. </div>';
  376. }
  377. // Show the member's signature?
  378. if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
  379. echo '
  380. <div class="signature">', $message['member']['signature'], '</div>';
  381. // Add an extra line at the bottom if we have labels enabled.
  382. if ($context['folder'] != 'sent' && !empty($context['currently_using_labels']) && $context['display_mode'] != 2)
  383. {
  384. echo '
  385. <div class="labels righttext">';
  386. // Add the label drop down box.
  387. if (!empty($context['currently_using_labels']))
  388. {
  389. echo '
  390. <select name="pm_actions[', $message['id'], ']" onchange="if (this.options[this.selectedIndex].value) form.submit();">
  391. <option value="">', $txt['pm_msg_label_title'], ':</option>
  392. <option value="" disabled="disabled">---------------</option>';
  393. // Are there any labels which can be added to this?
  394. if (!$message['fully_labeled'])
  395. {
  396. echo '
  397. <option value="" disabled="disabled">', $txt['pm_msg_label_apply'], ':</option>';
  398. foreach ($context['labels'] as $label)
  399. if (!isset($message['labels'][$label['id']]))
  400. echo '
  401. <option value="', $label['id'], '">&nbsp;', $label['name'], '</option>';
  402. }
  403. // ... and are there any that can be removed?
  404. if (!empty($message['labels']) && (count($message['labels']) > 1 || !isset($message['labels'][-1])))
  405. {
  406. echo '
  407. <option value="" disabled="disabled">', $txt['pm_msg_label_remove'], ':</option>';
  408. foreach ($message['labels'] as $label)
  409. echo '
  410. <option value="', $label['id'], '">&nbsp;', $label['name'], '</option>';
  411. }
  412. echo '
  413. </select>
  414. <noscript>
  415. <input type="submit" value="', $txt['pm_apply'], '" class="button_submit" />
  416. </noscript>';
  417. }
  418. echo '
  419. </div>';
  420. }
  421. echo '
  422. </div>
  423. <br class="clear" />
  424. </div>
  425. <div class="moderatorbar">
  426. </div>
  427. <span class="botslice"><span></span></span>
  428. </div>';
  429. }
  430. if (empty($context['display_mode']))
  431. echo '
  432. <div class="pagesection">
  433. <div class="floatleft">', $txt['pages'], ': ', $context['page_index'], '</div>
  434. <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>
  435. </div>';
  436. // Show a few buttons if we are in conversation mode and outputting the first message.
  437. elseif ($context['display_mode'] == 2 && isset($conversation_buttons))
  438. {
  439. echo '
  440. <div class="pagesection">';
  441. template_button_strip($conversation_buttons, 'right');
  442. echo '
  443. </div>';
  444. }
  445. echo '
  446. <br />';
  447. }
  448. // Individual messages = buttom list!
  449. if ($context['display_mode'] == 1)
  450. {
  451. template_subject_list();
  452. echo '<br />';
  453. }
  454. echo '
  455. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  456. </form>';
  457. }
  458. // Just list all the personal message subjects - to make templates easier.
  459. function template_subject_list()
  460. {
  461. global $context, $options, $settings, $modSettings, $txt, $scripturl;
  462. echo '
  463. <table width="100%" class="table_grid">
  464. <thead>
  465. <tr class="catbg">
  466. <th align="center" width="4%" class="first_th">
  467. <a href="', $scripturl, '?action=pm;view;f=', $context['folder'], ';start=', $context['start'], ';sort=', $context['sort_by'], ($context['sort_direction'] == 'up' ? '' : ';desc'), ($context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : ''), '"><img src="', $settings['images_url'], '/im_switch.gif" alt="', $txt['pm_change_view'], '" title="', $txt['pm_change_view'], '" width="16" height="16" /></a>
  468. </th>
  469. <th class="lefttext" width="22%">
  470. <a href="', $scripturl, '?action=pm;f=', $context['folder'], ';start=', $context['start'], ';sort=date', $context['sort_by'] == 'date' && $context['sort_direction'] == 'up' ? ';desc' : '', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '">', $txt['date'], $context['sort_by'] == 'date' ? ' <img src="' . $settings['images_url'] . '/sort_' . $context['sort_direction'] . '.gif" alt="" />' : '', '</a>
  471. </th>
  472. <th class="lefttext" width="46%">
  473. <a href="', $scripturl, '?action=pm;f=', $context['folder'], ';start=', $context['start'], ';sort=subject', $context['sort_by'] == 'subject' && $context['sort_direction'] == 'up' ? ';desc' : '', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '">', $txt['subject'], $context['sort_by'] == 'subject' ? ' <img src="' . $settings['images_url'] . '/sort_' . $context['sort_direction'] . '.gif" alt="" />' : '', '</a>
  474. </th>
  475. <th class="lefttext">
  476. <a href="', $scripturl, '?action=pm;f=', $context['folder'], ';start=', $context['start'], ';sort=name', $context['sort_by'] == 'name' && $context['sort_direction'] == 'up' ? ';desc' : '', $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', '">', ($context['from_or_to'] == 'from' ? $txt['from'] : $txt['to']), $context['sort_by'] == 'name' ? ' <img src="' . $settings['images_url'] . '/sort_' . $context['sort_direction'] . '.gif" alt="" />' : '', '</a>
  477. </th>
  478. <th align="center" width="4%" class="last_th">
  479. <input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />
  480. </th>
  481. </tr>
  482. </thead>
  483. <tbody>';
  484. if (!$context['show_delete'])
  485. echo '
  486. <tr class="windowbg2">
  487. <td colspan="5">', $txt['msg_alert_none'], '</td>
  488. </tr>';
  489. $next_alternate = false;
  490. while ($message = $context['get_pmessage']('subject'))
  491. {
  492. echo '
  493. <tr class="', $next_alternate ? 'windowbg' : 'windowbg2', '">
  494. <td align="center" width="4%">
  495. <script type="text/javascript"><!-- // --><![CDATA[
  496. currentLabels[', $message['id'], '] = {';
  497. if (!empty($message['labels']))
  498. {
  499. $first = true;
  500. foreach ($message['labels'] as $label)
  501. {
  502. echo $first ? '' : ',', '
  503. "', $label['id'], '": "', $label['name'], '"';
  504. $first = false;
  505. }
  506. }
  507. echo '
  508. };
  509. // ]]></script>
  510. ', $message['is_replied_to'] ? '<img src="' . $settings['images_url'] . '/icons/pm_replied.gif" style="margin-right: 4px;" alt="' . $txt['pm_replied'] . '" />' : '<img src="' . $settings['images_url'] . '/icons/pm_read.gif" style="margin-right: 4px;" alt="' . $txt['pm_read'] . '" />', '</td>
  511. <td>', $message['time'], '</td>
  512. <td>', ($context['display_mode'] != 0 && $context['current_pm'] == $message['id'] ? '<img src="' . $settings['images_url'] . '/selected.gif" 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'], '</a>', $message['is_unread'] ? '&nbsp;<img src="' . $settings['lang_images_url'] . '/new.gif" alt="' . $txt['new'] . '" />' : '', '</td>
  513. <td>', ($context['from_or_to'] == 'from' ? $message['member']['link'] : (empty($message['recipients']['to']) ? '' : implode(', ', $message['recipients']['to']))), '</td>
  514. <td align="center" 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>
  515. </tr>';
  516. $next_alternate = !$next_alternate;
  517. }
  518. echo '
  519. </tbody>
  520. </table>
  521. <div class="pagesection">
  522. <div class="floatleft">', $txt['pages'], ': ', $context['page_index'], '</div>
  523. <div class="floatright">&nbsp;';
  524. if ($context['show_delete'])
  525. {
  526. if (!empty($context['currently_using_labels']) && $context['folder'] != 'sent')
  527. {
  528. echo '
  529. <select name="pm_action" onchange="if (this.options[this.selectedIndex].value) this.form.submit();" onfocus="loadLabelChoices();">
  530. <option value="">', $txt['pm_sel_label_title'], ':</option>
  531. <option value="" disabled="disabled">---------------</option>';
  532. echo '
  533. <option value="" disabled="disabled">', $txt['pm_msg_label_apply'], ':</option>';
  534. foreach ($context['labels'] as $label)
  535. if ($label['id'] != $context['current_label_id'])
  536. echo '
  537. <option value="add_', $label['id'], '">&nbsp;', $label['name'], '</option>';
  538. echo '
  539. <option value="" disabled="disabled">', $txt['pm_msg_label_remove'], ':</option>';
  540. foreach ($context['labels'] as $label)
  541. echo '
  542. <option value="rem_', $label['id'], '">&nbsp;', $label['name'], '</option>';
  543. echo '
  544. </select>
  545. <noscript>
  546. <input type="submit" value="', $txt['pm_apply'], '" class="button_submit" />
  547. </noscript>';
  548. }
  549. echo '
  550. <input type="submit" name="del_selected" value="', $txt['quickmod_delete_selected'], '" onclick="if (!confirm(\'', $txt['delete_selected_confirm'], '\')) return false;" class="button_submit" />';
  551. }
  552. echo '
  553. </div>
  554. </div>';
  555. }
  556. function template_search()
  557. {
  558. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  559. echo '
  560. <form action="', $scripturl, '?action=pm;sa=search2" method="post" accept-charset="', $context['character_set'], '" name="searchform" id="searchform">
  561. <div class="cat_bar">
  562. <h3 class="catbg">', $txt['pm_search_title'], '</h3>
  563. </div>';
  564. if (!empty($context['search_errors']))
  565. {
  566. echo '
  567. <div class="errorbox">
  568. ', implode('<br />', $context['search_errors']['messages']), '
  569. </div>';
  570. }
  571. if ($context['simple_search'])
  572. {
  573. echo '
  574. <fieldset id="simple_search">
  575. <span class="upperframe"><span></span></span>
  576. <div class="roundframe">
  577. <div id="search_term_input">
  578. <strong>', $txt['pm_search_text'], ':</strong>
  579. <input type="text" name="search"', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' size="40" class="input_text" />
  580. <input type="submit" name="submit" value="', $txt['pm_search_go'], '" class="button_submit" />
  581. </div>
  582. <a href="', $scripturl, '?action=pm;sa=search;advanced" onclick="this.href += \';search=\' + escape(document.forms.searchform.search.value);">', $txt['pm_search_advanced'], '</a>
  583. <input type="hidden" name="advanced" value="0" />
  584. </div>
  585. <span class="lowerframe"><span></span></span>
  586. </fieldset>';
  587. }
  588. // Advanced search!
  589. else
  590. {
  591. echo '
  592. <fieldset id="advanced_search">
  593. <span class="upperframe"><span></span></span>
  594. <div class="roundframe">
  595. <input type="hidden" name="advanced" value="1" />
  596. <span class="enhanced">
  597. <strong>', $txt['pm_search_text'], ':</strong>
  598. <input type="text" name="search"', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' size="40" class="input_text" />
  599. <script type="text/javascript"><!-- // --><![CDATA[
  600. createEventListener(window);
  601. window.addEventListener("load", initSearch, false);
  602. // ]]></script>
  603. <select name="searchtype">
  604. <option value="1"', empty($context['search_params']['searchtype']) ? ' selected="selected"' : '', '>', $txt['pm_search_match_all'], '</option>
  605. <option value="2"', !empty($context['search_params']['searchtype']) ? ' selected="selected"' : '', '>', $txt['pm_search_match_any'], '</option>
  606. </select>
  607. </span>
  608. <dl id="search_options">
  609. <dt>', $txt['pm_search_user'], ':</dt>
  610. <dd><input type="text" name="userspec" value="', empty($context['search_params']['userspec']) ? '*' : $context['search_params']['userspec'], '" size="40" class="input_text" /></dd>
  611. <dt>', $txt['pm_search_order'], ':</dt>
  612. <dd>
  613. <select name="sort">
  614. <option value="relevance|desc">', $txt['pm_search_orderby_relevant_first'], '</option>
  615. <option value="id_pm|desc">', $txt['pm_search_orderby_recent_first'], '</option>
  616. <option value="id_pm|asc">', $txt['pm_search_orderby_old_first'], '</option>
  617. </select>
  618. </dd>
  619. <dt class="options">', $txt['pm_search_options'], ':</dt>
  620. <dd class="options">
  621. <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 />
  622. <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>
  623. </dd>
  624. <dt class="between">', $txt['pm_search_post_age'], ':</dt>
  625. <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>
  626. </dl>';
  627. if (!$context['currently_using_labels'])
  628. echo '
  629. <input type="submit" name="submit" value="', $txt['pm_search_go'], '" class="button_submit floatright" />';
  630. echo '
  631. <br class="clear" />
  632. </div>
  633. <span class="lowerframe"><span></span></span>
  634. </fieldset>';
  635. // Do we have some labels setup? If so offer to search by them!
  636. if ($context['currently_using_labels'])
  637. {
  638. echo '
  639. <fieldset class="labels">
  640. <span class="upperframe"><span></span></span>
  641. <div class="roundframe">
  642. <div class="title_bar">
  643. <h4 class="titlebg">
  644. <span class="ie6_header floatleft"><a href="javascript:void(0);" onclick="expandCollapseLabels(); return false;"><img src="', $settings['images_url'], '/expand.gif" id="expandLabelsIcon" alt="" /></a> <a href="javascript:void(0);" onclick="expandCollapseLabels(); return false;"><strong>', $txt['pm_search_choose_label'], '</strong></a></span>
  645. </h4>
  646. </div>
  647. <ul id="searchLabelsExpand" class="reset" ', $context['check_all'] ? 'style="display: none;"' : '', '>';
  648. foreach ($context['search_labels'] as $label)
  649. echo '
  650. <li>
  651. <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" />
  652. ', $label['name'], '</label>
  653. </li>';
  654. echo '
  655. </ul>
  656. <p>
  657. <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>
  658. <input type="submit" name="submit" value="', $txt['pm_search_go'], '" class="button_submit floatright" />
  659. </p><br class="clear" />
  660. </div>
  661. <span class="lowerframe"><span></span></span>
  662. </fieldset>';
  663. }
  664. }
  665. echo '
  666. </form>';
  667. }
  668. function template_search_results()
  669. {
  670. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  671. echo '
  672. <div class="cat_bar">
  673. <h3 class="catbg">', $txt['pm_search_results'], '</h3>
  674. </div>
  675. <div class="pagesection">
  676. <strong>', $txt['pages'], ':</strong> ', $context['page_index'], '
  677. </div>';
  678. // complete results ?
  679. if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages']))
  680. echo '
  681. <table width="100%" class="table_grid">
  682. <thead>
  683. <tr class="catbg">
  684. <th class="lefttext first_th" width="30%">', $txt['date'], '</th>
  685. <th class="lefttext" width="50%">', $txt['subject'], '</th>
  686. <th class="lefttext last_th" width="20%">', $txt['from'], '</th>
  687. </tr>
  688. </thead>
  689. <tbody>';
  690. $alternate = true;
  691. // Print each message out...
  692. foreach ($context['personal_messages'] as $message)
  693. {
  694. // We showing it all?
  695. if (!empty($context['search_params']['show_complete']))
  696. {
  697. echo '
  698. <div class="title_bar">
  699. <h3 class="titlebg">
  700. <span class="floatright">', $txt['search_on'], ': ', $message['time'], '</span>
  701. <span class="floatleft">', $message['counter'], '&nbsp;&nbsp;<a href="', $message['href'], '">', $message['subject'], '</a></span>
  702. </h3>
  703. </div>
  704. <div class="cat_bar">
  705. <h3 class="catbg">', $txt['from'], ': ', $message['member']['link'], ', ', $txt['to'], ': ';
  706. // Show the recipients.
  707. // @todo This doesn't deal with the sent item searching quite right for bcc.
  708. if (!empty($message['recipients']['to']))
  709. echo implode(', ', $message['recipients']['to']);
  710. // Otherwise, we're just going to say "some people"...
  711. elseif ($context['folder'] != 'sent')
  712. echo '(', $txt['pm_undisclosed_recipients'], ')';
  713. echo '
  714. </h3>
  715. </div>
  716. <div class="windowbg', $alternate ? '2': '', '">
  717. <span class="topslice"><span></span></span>
  718. <div class="content">
  719. ', $message['body'], '
  720. <p class="pm_reply righttext middletext">';
  721. if ($context['can_send_pm'])
  722. {
  723. $quote_button = create_button('quote.gif', 'reply_quote', 'reply_quote', 'align="middle"');
  724. $reply_button = create_button('im_reply.gif', 'reply', 'reply', 'align="middle"');
  725. // You can only reply if they are not a guest...
  726. if (!$message['member']['is_guest'])
  727. echo '
  728. <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'], '
  729. <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'];
  730. // This is for "forwarding" - even if the member is gone.
  731. else
  732. echo '
  733. <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'];
  734. }
  735. echo '
  736. </p>
  737. </div>
  738. <span class="botslice"><span></span></span>
  739. </div>';
  740. }
  741. // Otherwise just a simple list!
  742. else
  743. {
  744. // @todo No context at all of the search?
  745. echo '
  746. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '" valign="top">
  747. <td>', $message['time'], '</td>
  748. <td>', $message['link'], '</td>
  749. <td>', $message['member']['link'], '</td>
  750. </tr>';
  751. }
  752. $alternate = !$alternate;
  753. }
  754. // Finish off the page...
  755. if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages']))
  756. echo '
  757. </tbody>
  758. </table>';
  759. // No results?
  760. if (empty($context['personal_messages']))
  761. echo '
  762. <div class="windowbg">
  763. <span class="topslice"><span></span></span>
  764. <div class="content">
  765. <p class="centertext">', $txt['pm_search_none_found'], '</p>
  766. </div>
  767. <span class="botslice"><span></span></span>
  768. </div>';
  769. echo '
  770. <div class="pagesection">
  771. <strong>', $txt['pages'], ':</strong> ', $context['page_index'], '
  772. </div>';
  773. }
  774. function template_send()
  775. {
  776. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  777. // Show which messages were sent successfully and which failed.
  778. if (!empty($context['send_log']))
  779. {
  780. echo '
  781. <div class="cat_bar">
  782. <h3 class="catbg">', $txt['pm_send_report'], '</h3>
  783. </div>
  784. <div class="windowbg">
  785. <span class="topslice"><span></span></span>
  786. <div class="content">';
  787. if (!empty($context['send_log']['sent']))
  788. foreach ($context['send_log']['sent'] as $log_entry)
  789. echo '<span class="error">', $log_entry, '</span><br />';
  790. if (!empty($context['send_log']['failed']))
  791. foreach ($context['send_log']['failed'] as $log_entry)
  792. echo '<span class="error">', $log_entry, '</span><br />';
  793. echo '
  794. </div>
  795. <span class="botslice"><span></span></span>
  796. </div>
  797. <br />';
  798. }
  799. // Show the preview of the personal message.
  800. if (isset($context['preview_message']))
  801. echo '
  802. <div class="cat_bar">
  803. <h3 class="catbg">', $context['preview_subject'], '</h3>
  804. </div>
  805. <div class="windowbg">
  806. <span class="topslice"><span></span></span>
  807. <div class="content">
  808. ', $context['preview_message'], '
  809. </div>
  810. <span class="botslice"><span></span></span>
  811. </div>
  812. <br />';
  813. // Main message editing box.
  814. echo '
  815. <div class="cat_bar">
  816. <h3 class="catbg">
  817. <span class="ie6_header floatleft"><img src="', $settings['images_url'], '/icons/im_newmsg.gif" alt="', $txt['new_message'], '" title="', $txt['new_message'], '" />&nbsp;', $txt['new_message'], '</span>
  818. </h3>
  819. </div>';
  820. echo '
  821. <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\']);">
  822. <div>
  823. <span class="upperframe"><span></span></span>
  824. <div class="roundframe"><br class="clear" />';
  825. // If there were errors for sending the PM, show them.
  826. if (!empty($context['post_error']['messages']))
  827. {
  828. echo '
  829. <div class="errorbox">
  830. <strong>', $txt['error_while_submitting'], '</strong>
  831. <ul class="reset">';
  832. foreach ($context['post_error']['messages'] as $error)
  833. echo '
  834. <li class="error">', $error, '</li>';
  835. echo '
  836. </ul>
  837. </div>';
  838. }
  839. echo '
  840. <dl id="post_header">';
  841. // To and bcc. Include a button to search for members.
  842. echo '
  843. <dt>
  844. <span', (isset($context['post_error']['no_to']) || isset($context['post_error']['bad_to']) ? ' class="error"' : ''), '>', $txt['pm_to'], ':</span>
  845. </dt>';
  846. // Autosuggest will be added by the JavaScript later on.
  847. echo '
  848. <dd id="pm_to" class="clear_right">
  849. <input type="text" name="to" id="to_control" value="', $context['to_value'], '" tabindex="', $context['tabindex']++, '" size="40" style="width: 130px;" class="input_text" />';
  850. // A link to add BCC, only visible with JavaScript enabled.
  851. echo '
  852. <span class="smalltext" id="bcc_link_container" style="display: none;"></span>';
  853. // A div that'll contain the items found by the autosuggest.
  854. echo '
  855. <div id="to_item_list_container"></div>';
  856. echo '
  857. </dd>';
  858. // This BCC row will be hidden by default if JavaScript is enabled.
  859. echo '
  860. <dt class="clear_left" id="bcc_div">
  861. <span', (isset($context['post_error']['no_to']) || isset($context['post_error']['bad_bcc']) ? ' class="error"' : ''), '>', $txt['pm_bcc'], ':</span>
  862. </dt>
  863. <dd id="bcc_div2">
  864. <input type="text" name="bcc" id="bcc_control" value="', $context['bcc_value'], '" tabindex="', $context['tabindex']++, '" size="40" style="width: 130px;" class="input_text" />
  865. <div id="bcc_item_list_container"></div>
  866. </dd>';
  867. // The subject of the PM.
  868. echo '
  869. <dt class="clear_left">
  870. <span', (isset($context['post_error']['no_subject']) ? ' class="error"' : ''), '>', $txt['subject'], ':</span>
  871. </dt>
  872. <dd id="pm_subject">
  873. <input type="text" name="subject" value="', $context['subject'], '" tabindex="', $context['tabindex']++, '" size="60" maxlength="60" />
  874. </dd>
  875. </dl><hr class="clear" />';
  876. // Showing BBC?
  877. if ($context['show_bbc'])
  878. {
  879. echo '
  880. <div id="bbcBox_message"></div>';
  881. }
  882. // What about smileys?
  883. if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup']))
  884. echo '
  885. <div id="smileyBox_message"></div>';
  886. // Show BBC buttons, smileys and textbox.
  887. echo '
  888. ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message');
  889. // Require an image to be typed to save spamming?
  890. if ($context['require_verification'])
  891. {
  892. echo '
  893. <div class="post_verification">
  894. <strong>', $txt['pm_visual_verification_label'], ':</strong>
  895. ', template_control_verification($context['visual_verification_id'], 'all'), '
  896. </div>';
  897. }
  898. // Send, Preview, spellcheck buttons.
  899. echo '
  900. <p><label for="outbox"><input type="checkbox" name="outbox" id="outbox" value="1" tabindex="', $context['tabindex']++, '"', $context['copy_to_outbox'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['pm_save_outbox'], '</label></p>
  901. <p id="shortcuts" class="smalltext">
  902. ', isBrowser('is_firefox') ? $txt['shortcuts_firefox'] : $txt['shortcuts'], '
  903. </p>
  904. <p id="post_confirm_strip" class="righttext">
  905. ', template_control_richedit_buttons($context['post_box_name']), '
  906. </p>
  907. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  908. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
  909. <input type="hidden" name="replied_to" value="', !empty($context['quoted_message']['id']) ? $context['quoted_message']['id'] : 0, '" />
  910. <input type="hidden" name="pm_head" value="', !empty($context['quoted_message']['pm_head']) ? $context['quoted_message']['pm_head'] : 0, '" />
  911. <input type="hidden" name="f" value="', isset($context['folder']) ? $context['folder'] : '', '" />
  912. <input type="hidden" name="l" value="', isset($context['current_label_id']) ? $context['current_label_id'] : -1, '" />
  913. <br class="clear" />
  914. </div>
  915. <span class="lowerframe"><span></span></span>
  916. </div>
  917. </form>';
  918. // Show the message you're replying to.
  919. if ($context['reply'])
  920. echo '
  921. <br />
  922. <br />
  923. <div class="cat_bar">
  924. <h3 class="catbg">', $txt['subject'], ': ', $context['quoted_message']['subject'], '</h3>
  925. </div>
  926. <div class="windowbg2">
  927. <span class="topslice"><span></span></span>
  928. <div class="content">
  929. <div class="clear">
  930. <span class="smalltext floatright">', $txt['on'], ': ', $context['quoted_message']['time'], '</span>
  931. <strong>', $txt['from'], ': ', $context['quoted_message']['member']['name'], '</strong>
  932. </div><hr />
  933. ', $context['quoted_message']['body'], '
  934. </div>
  935. <span class="botslice"><span></span></span>
  936. </div><br class="clear" />';
  937. echo '
  938. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/PersonalMessage.js?fin20"></script>
  939. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/suggest.js?fin20"></script>
  940. <script type="text/javascript"><!-- // --><![CDATA[
  941. var oPersonalMessageSend = new smf_PersonalMessageSend({
  942. sSelf: \'oPersonalMessageSend\',
  943. sSessionId: \'', $context['session_id'], '\',
  944. sSessionVar: \'', $context['session_var'], '\',
  945. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  946. sToControlId: \'to_control\',
  947. aToRecipients: [';
  948. foreach ($context['recipients']['to'] as $i => $member)
  949. echo '
  950. {
  951. sItemId: ', JavaScriptEscape($member['id']), ',
  952. sItemName: ', JavaScriptEscape($member['name']), '
  953. }', $i == count($context['recipients']['to']) - 1 ? '' : ',';
  954. echo '
  955. ],
  956. aBccRecipients: [';
  957. foreach ($context['recipients']['bcc'] as $i => $member)
  958. echo '
  959. {
  960. sItemId: ', JavaScriptEscape($member['id']), ',
  961. sItemName: ', JavaScriptEscape($member['name']), '
  962. }', $i == count($context['recipients']['bcc']) - 1 ? '' : ',';
  963. echo '
  964. ],
  965. sBccControlId: \'bcc_control\',
  966. sBccDivId: \'bcc_div\',
  967. sBccDivId2: \'bcc_div2\',
  968. sBccLinkId: \'bcc_link\',
  969. sBccLinkContainerId: \'bcc_link_container\',
  970. bBccShowByDefault: ', empty($context['recipients']['bcc']) && empty($context['bcc_value']) ? 'false' : 'true', ',
  971. sShowBccLinkTemplate: ', JavaScriptEscape('
  972. <a href="#" id="bcc_link">' . $txt['make_bcc'] . '</a> <a href="' . $scripturl . '?action=helpadmin;help=pm_bcc" onclick="return reqWin(this.href);">(?)</a>'
  973. ), '
  974. });
  975. ';
  976. echo '
  977. // ]]></script>';
  978. }
  979. // This template asks the user whether they wish to empty out their folder/messages.
  980. function template_ask_delete()
  981. {
  982. global $context, $settings, $options, $scripturl, $modSettings, $txt;
  983. echo '
  984. <div class="cat_bar">
  985. <h3 class="catbg">', ($context['delete_all'] ? $txt['delete_message'] : $txt['delete_all']), '</h3>
  986. </div>
  987. <div class="windowbg">
  988. <span class="topslice"><span></span></span>
  989. <div class="content">
  990. <p>', $txt['delete_all_confirm'], '</p><br />
  991. <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>
  992. </div>
  993. <span class="botslice"><span></span></span>
  994. </div>';
  995. }
  996. // This template asks the user what messages they want to prune.
  997. function template_prune()
  998. {
  999. global $context, $settings, $options, $scripturl, $txt;
  1000. echo '
  1001. <form action="', $scripturl, '?action=pm;sa=prune" method="post" accept-charset="', $context['character_set'], '" onsubmit="return confirm(\'', $txt['pm_prune_warning'], '\');">
  1002. <div class="cat_bar">
  1003. <h3 class="catbg">', $txt['pm_prune'], '</h3>
  1004. </div>
  1005. <div class="windowbg">
  1006. <span class="topslice"><span></span></span>
  1007. <div class="content">
  1008. <p>', $txt['pm_prune_desc1'], ' <input type="text" name="age" size="3" value="14" class="input_text" /> ', $txt['pm_prune_desc2'], '</p>
  1009. <div class="righttext">
  1010. <input type="submit" value="', $txt['delete'], '" class="button_submit" />
  1011. </div>
  1012. </div>
  1013. <span class="botslice"><span></span></span>
  1014. </div>
  1015. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1016. </form>';
  1017. }
  1018. // Here we allow the user to setup labels, remove labels and change rules for labels (i.e, do quite a bit)
  1019. function template_labels()
  1020. {
  1021. global $context, $settings, $options, $scripturl, $txt;
  1022. echo '
  1023. <form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '">
  1024. <div class="cat_bar">
  1025. <h3 class="catbg">', $txt['pm_manage_labels'], '</h3>
  1026. </div>
  1027. <div class="description">
  1028. ', $txt['pm_labels_desc'], '
  1029. </div>
  1030. <table width="100%" class="table_grid">
  1031. <thead>
  1032. <tr class="catbg">
  1033. <th class="lefttext first_th">
  1034. ', $txt['pm_label_name'], '
  1035. </th>
  1036. <th class="centertext last_th" width="4%">';
  1037. if (count($context['labels']) > 2)
  1038. echo '
  1039. <input type="checkbox" class="input_check" onclick="invertAll(this, this.form);" />';
  1040. echo '
  1041. </th>
  1042. </tr>
  1043. </thead>
  1044. <tbody>';
  1045. if (count($context['labels']) < 2)
  1046. echo '
  1047. <tr class="windowbg2">
  1048. <td colspan="2" align="center">', $txt['pm_labels_no_exist'], '</td>
  1049. </tr>';
  1050. else
  1051. {
  1052. $alternate = true;
  1053. foreach ($context['labels'] as $label)
  1054. {
  1055. if ($label['id'] == -1)
  1056. continue;
  1057. echo '
  1058. <tr class="', $alternate ? 'windowbg2' : 'windowbg', '">
  1059. <td>
  1060. <input type="text" name="label_name[', $label['id'], ']" value="', $label['name'], '" size="30" maxlength="30" class="input_text" />
  1061. </td>
  1062. <td width="4%" align="center"><input type="checkbox" class="input_check" name="delete_label[', $label['id'], ']" /></td>
  1063. </tr>';
  1064. $alternate = !$alternate;
  1065. }
  1066. }
  1067. echo '
  1068. </tbody>
  1069. </table>';
  1070. if (!count($context['labels']) < 2)
  1071. echo '
  1072. <div class="padding righttext">
  1073. <input type="submit" name="save" value="', $txt['save'], '" class="button_submit" />
  1074. <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" onclick="return confirm(\'', $txt['pm_labels_delete'], '\');" class="button_submit" />
  1075. </div>';
  1076. echo '
  1077. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1078. </form>
  1079. <form action="', $scripturl, '?action=pm;sa=manlabels" method="post" accept-charset="', $context['character_set'], '" style="margin-top: 1ex;">
  1080. <div class="cat_bar">
  1081. <h3 class="catbg">', $txt['pm_label_add_new'], '</h3>
  1082. </div>
  1083. <div class="windowbg">
  1084. <span class="topslice"><span></span></span>
  1085. <div class="content">
  1086. <dl class="settings">
  1087. <dt>
  1088. <strong><label for="add_label">', $txt['pm_label_name'], '</label>:</strong>
  1089. </dt>
  1090. <dd>
  1091. <input type="text" id="add_label" name="label" value="" size="30" maxlength="30" class="input_text" />
  1092. </dd>
  1093. </dl>
  1094. <div class="righttext">
  1095. <input type="submit" name="add" value="', $txt['pm_label_add_new'], '" class="button_submit" />
  1096. </div>
  1097. </div>
  1098. <span class="botslice"><span></span></span>
  1099. </div>
  1100. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1101. </form><br />';
  1102. }
  1103. // Template for reporting a personal message.
  1104. function template_report_message()
  1105. {
  1106. global $context, $settings, $options, $txt, $scripturl;
  1107. echo '
  1108. <form action="', $scripturl, '?action=pm;sa=report;l=', $context['current_label_id'], '" method="post" accept-charset="', $context['character_set'], '">
  1109. <input type="hidden" name="pmsg" value="', $context['pm_id'], '" />
  1110. <div class="cat_bar">
  1111. <h3 class="catbg">', $txt['pm_report_title'], '</h3>
  1112. </div>
  1113. <div class="description">
  1114. ', $txt['pm_report_desc'], '
  1115. </div>
  1116. <div class="windowbg">
  1117. <span class="topslice"><span></span></span>
  1118. <div class="content">
  1119. <dl class="settings">';
  1120. // If there is more than one admin on the forum, allow the user to choose the one they want to direct to.
  1121. // @todo Why?
  1122. if ($context['admin_count'] > 1)
  1123. {
  1124. echo '
  1125. <dt>
  1126. <strong>', $txt['pm_report_admins'], ':</strong>
  1127. </dt>
  1128. <dd>
  1129. <select name="ID_ADMIN">
  1130. <option value="0">', $txt['pm_report_all_admins'], '</option>';
  1131. foreach ($context['admins'] as $id => $name)
  1132. echo '
  1133. <option value="', $id, '">', $name, '</option>';
  1134. echo '
  1135. </select>
  1136. </dd>';
  1137. }
  1138. echo '
  1139. <dt>
  1140. <strong>', $txt['pm_report_reason'], ':</strong>
  1141. </dt>
  1142. <dd>
  1143. <textarea name="reason" rows="4" cols="70" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 80%; min-width: 80%' : 'width: 80%') . ';"></textarea>
  1144. </dd>
  1145. </dl>
  1146. <div class="righttext">
  1147. <input type="submit" name="report" value="', $txt['pm_report_message'], '" class="button_submit" />
  1148. </div>
  1149. </div>
  1150. <span class="botslice"><span></span></span>
  1151. </div>
  1152. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1153. </form>';
  1154. }
  1155. // Little template just to say "Yep, it's been submitted"
  1156. function template_report_message_complete()
  1157. {
  1158. global $context, $settings, $options, $txt, $scripturl;
  1159. echo '
  1160. <div class="cat_bar">
  1161. <h3 class="catbg">', $txt['pm_report_title'], '</h3>
  1162. </div>
  1163. <div class="windowbg">
  1164. <span class="topslice"><span></span></span>
  1165. <div class="content">
  1166. <p>', $txt['pm_report_done'], '</p>
  1167. <a href="', $scripturl, '?action=pm;l=', $context['current_label_id'], '">', $txt['pm_report_return'], '</a>
  1168. </div>
  1169. <span class="botslice"><span></span></span>
  1170. </div>';
  1171. }
  1172. // Manage rules.
  1173. function template_rules()
  1174. {
  1175. global $context, $settings, $options, $txt, $scripturl;
  1176. echo '
  1177. <form action="', $scripturl, '?action=pm;sa=manrules" method="post" accept-charset="', $context['character_set'], '" name="manRules" id="manrules">
  1178. <div class="cat_bar">
  1179. <h3 class="catbg">', $txt['pm_manage_rules'], '</h3>
  1180. </div>
  1181. <div class="description">
  1182. ', $txt['pm_manage_rules_desc'], '
  1183. </div>
  1184. <table width="100%" class="table_grid">
  1185. <thead>
  1186. <tr class="catbg">
  1187. <th class="lefttext first_th">
  1188. ', $txt['pm_rule_title'], '
  1189. </th>
  1190. <th width="4%" class="centertext last_th">';
  1191. if (!empty($context['rules']))
  1192. echo '
  1193. <input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />';
  1194. echo '
  1195. </th>
  1196. </tr>
  1197. </thead>
  1198. <tbody>';
  1199. if (empty($context['rules']))
  1200. echo '
  1201. <tr class="windowbg2">
  1202. <td colspan="2" align="center">
  1203. ', $txt['pm_rules_none'], '
  1204. </td>
  1205. </tr>';
  1206. $alternate = false;
  1207. foreach ($context['rules'] as $rule)
  1208. {
  1209. echo '
  1210. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '">
  1211. <td>
  1212. <a href="', $scripturl, '?action=pm;sa=manrules;add;rid=', $rule['id'], '">', $rule['name'], '</a>
  1213. </td>
  1214. <td width="4%" align="center">
  1215. <input type="checkbox" name="delrule[', $rule['id'], ']" class="input_check" />
  1216. </td>
  1217. </tr>';
  1218. $alternate = !$alternate;
  1219. }
  1220. echo '
  1221. </tbody>
  1222. </table>
  1223. <div class="righttext">
  1224. [<a href="', $scripturl, '?action=pm;sa=manrules;add;rid=0">', $txt['pm_add_rule'], '</a>]';
  1225. if (!empty($context['rules']))
  1226. echo '
  1227. [<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>]';
  1228. if (!empty($context['rules']))
  1229. echo '
  1230. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1231. <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" onclick="return confirm(\'', $txt['pm_js_delete_rule_confirm'], '\');" class="button_submit smalltext" />';
  1232. echo '
  1233. </div>
  1234. </form>';
  1235. }
  1236. // Template for adding/editing a rule.
  1237. function template_add_rule()
  1238. {
  1239. global $context, $settings, $options, $txt, $scripturl;
  1240. echo '
  1241. <script type="text/javascript"><!-- // --><![CDATA[
  1242. var criteriaNum = 0;
  1243. var actionNum = 0;
  1244. var groups = new Array()
  1245. var labels = new Array()';
  1246. foreach ($context['groups'] as $id => $title)
  1247. echo '
  1248. groups[', $id, '] = "', addslashes($title), '";';
  1249. foreach ($context['labels'] as $label)
  1250. if ($label['id'] != -1)
  1251. echo '
  1252. labels[', ($label['id'] + 1), '] = "', addslashes($label['name']), '";';
  1253. echo '
  1254. function addCriteriaOption()
  1255. {
  1256. if (criteriaNum == 0)
  1257. {
  1258. for (var i = 0; i < document.forms.addrule.elements.length; i++)
  1259. if (document.forms.addrule.elements[i].id.substr(0, 8) == "ruletype")
  1260. criteriaNum++;
  1261. }
  1262. criteriaNum++
  1263. 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>';
  1264. foreach ($context['groups'] as $id => $group)
  1265. echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>';
  1266. echo '<\' + \'/select><\' + \'/span><span id="criteriaAddHere"><\' + \'/span>\');
  1267. }
  1268. function addActionOption()
  1269. {
  1270. if (actionNum == 0)
  1271. {
  1272. for (var i = 0; i < document.forms.addrule.elements.length; i++)
  1273. if (document.forms.addrule.elements[i].id.substr(0, 7) == "acttype")
  1274. actionNum++;
  1275. }
  1276. actionNum++
  1277. 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>';
  1278. foreach ($context['labels'] as $label)
  1279. if ($label['id'] != -1)
  1280. echo '<option value="', ($label['id'] + 1), '">', addslashes($label['name']), '<\' + \'/option>';
  1281. echo '<\' + \'/select><\' + \'/span><span id="actionAddHere"><\' + \'/span>\');
  1282. }
  1283. // Rebuild the rule description!
  1284. function rebuildRuleDesc()
  1285. {
  1286. // Start with nothing.
  1287. var text = "";
  1288. var joinText = "";
  1289. var actionText = "";
  1290. var hadBuddy = false;
  1291. var foundCriteria = false;
  1292. var foundAction = false;
  1293. var curNum, curVal, curDef;
  1294. for (var i = 0; i < document.forms.addrule.elements.length; i++)
  1295. {
  1296. if (document.forms.addrule.elements[i].id.substr(0, 8) == "ruletype")
  1297. {
  1298. if (foundCriteria)
  1299. joinText = document.getElementById("logic").value == \'and\' ? ', JavaScriptEscape(' ' . $txt['pm_readable_and'] . ' '), ' : ', JavaScriptEscape(' ' . $txt['pm_readable_or'] . ' '), ';
  1300. else
  1301. joinText = \'\';
  1302. foundCriteria = true;
  1303. curNum = document.forms.addrule.elements[i].id.match(/\d+/);
  1304. curVal = document.forms.addrule.elements[i].value;
  1305. if (curVal == "gid")
  1306. curDef = document.getElementById("ruledefgroup" + curNum).value.php_htmlspecialchars();
  1307. else if (curVal != "bud")
  1308. curDef = document.getElementById("ruledef" + curNum).value.php_htmlspecialchars();
  1309. else
  1310. curDef = "";
  1311. // What type of test is this?
  1312. if (curVal == "mid" && curDef)
  1313. text += joinText + ', JavaScriptEscape($txt['pm_readable_member']), '.replace("{MEMBER}", curDef);
  1314. else if (curVal == "gid" && curDef && groups[curDef])
  1315. text += joinText + ', JavaScriptEscape($txt['pm_readable_group']), '.replace("{GROUP}", groups[curDef]);
  1316. else if (curVal == "sub" && curDef)
  1317. text += joinText + ', JavaScriptEscape($txt['pm_readable_subject']), '.replace("{SUBJECT}", curDef);
  1318. else if (curVal == "msg" && curDef)
  1319. text += joinText + ', JavaScriptEscape($txt['pm_readable_body']), '.replace("{BODY}", curDef);
  1320. else if (curVal == "bud" && !hadBuddy)
  1321. {
  1322. text += joinText + ', JavaScriptEscape($txt['pm_readable_buddy']), ';
  1323. hadBuddy = true;
  1324. }
  1325. }
  1326. if (document.forms.addrule.elements[i].id.substr(0, 7) == "acttype")
  1327. {
  1328. if (foundAction)
  1329. joinText = ', JavaScriptEscape(' ' . $txt['pm_readable_and'] . ' '), ';
  1330. else
  1331. joinText = "";
  1332. foundAction = true;
  1333. curNum = document.forms.addrule.elements[i].id.match(/\d+/);
  1334. curVal = document.forms.addrule.elements[i].value;
  1335. if (curVal == "lab")
  1336. curDef = document.getElementById("labdef" + curNum).value.php_htmlspecialchars();
  1337. else
  1338. curDef = "";
  1339. // Now pick the actions.
  1340. if (curVal == "lab" && curDef && labels[curDef])
  1341. actionText += joinText + ', JavaScriptEscape($txt['pm_readable_label']), '.replace("{LABEL}", labels[curDef]);
  1342. else if (curVal == "del")
  1343. actionText += joinText + ', JavaScriptEscape($txt['pm_readable_delete']), ';
  1344. }
  1345. }
  1346. // If still nothing make it default!
  1347. if (text == "" || !foundCriteria)
  1348. text = "', $txt['pm_rule_not_defined'], '";
  1349. else
  1350. {
  1351. if (actionText != "")
  1352. text += ', JavaScriptEscape(' ' . $txt['pm_readable_then'] . ' '), ' + actionText;
  1353. text = ', JavaScriptEscape($txt['pm_readable_start']), ' + text + ', JavaScriptEscape($txt['pm_readable_end']), ';
  1354. }
  1355. // Set the actual HTML!
  1356. setInnerHTML(document.getElementById("ruletext"), text);
  1357. }
  1358. // ]]></script>';
  1359. echo '
  1360. <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">
  1361. <div class="cat_bar">
  1362. <h3 class="catbg">', $context['rid'] == 0 ? $txt['pm_add_rule'] : $txt['pm_edit_rule'], '</h3>
  1363. </div>
  1364. <div class="windowbg">
  1365. <span class="topslice"><span></span></span>
  1366. <div class="content">
  1367. <dl class="addrules">
  1368. <dt class="floatleft">
  1369. <strong>', $txt['pm_rule_name'], ':</strong><br />
  1370. <span class="smalltext">', $txt['pm_rule_name_desc'], '</span>
  1371. </dt>
  1372. <dd class="floatleft">
  1373. <input type="text" name="rule_name" value="', empty($context['rule']['name']) ? $txt['pm_rule_name_default'] : $context['rule']['name'], '" size="50" class="input_text" />
  1374. </dd>
  1375. </dl>
  1376. <fieldset>
  1377. <legend>', $txt['pm_rule_criteria'], '</legend>';
  1378. // Add a dummy criteria to allow expansion for none js users.
  1379. $context['rule']['criteria'][] = array('t' => '', 'v' => '');
  1380. // For each criteria print it out.
  1381. $isFirst = true;
  1382. foreach ($context['rule']['criteria'] as $k => $criteria)
  1383. {
  1384. if (!$isFirst && $criteria['t'] == '')
  1385. echo '<div id="removeonjs1">';
  1386. elseif (!$isFirst)
  1387. echo '<br />';
  1388. echo '
  1389. <select name="ruletype[', $k, ']" id="ruletype', $k, '" onchange="updateRuleDef(', $k, '); rebuildRuleDesc();">
  1390. <option value="">', $txt['pm_rule_criteria_pick'], ':</option>
  1391. <option value="mid" ', $criteria['t'] == 'mid' ? 'selected="selected"' : '', '>', $txt['pm_rule_mid'], '</option>
  1392. <option value="gid" ', $criteria['t'] == 'gid' ? 'selected="selected"' : '', '>', $txt['pm_rule_gid'], '</option>
  1393. <option value="sub" ', $criteria['t'] == 'sub' ? 'selected="selected"' : '', '>', $txt['pm_rule_sub'], '</option>
  1394. <option value="msg" ', $criteria['t'] == 'msg' ? 'selected="selected"' : '', '>', $txt['pm_rule_msg'], '</option>
  1395. <option value="bud" ', $criteria['t'] == 'bud' ? 'selected="selected"' : '', '>', $txt['pm_rule_bud'], '</option>
  1396. </select>
  1397. <span id="defdiv', $k, '" ', !in_array($criteria['t'], array('gid', 'bud')) ? '' : 'style="display: none;"', '>
  1398. <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" />
  1399. </span>
  1400. <span id="defseldiv', $k, '" ', $criteria['t'] == 'gid' ? '' : 'style="display: none;"', '>
  1401. <select name="ruledefgroup[', $k, ']" id="ruledefgroup', $k, '" onchange="rebuildRuleDesc();">
  1402. <option value="">', $txt['pm_rule_sel_group'], '</option>';
  1403. foreach ($context['groups'] as $id => $group)
  1404. echo '
  1405. <option value="', $id, '" ', $criteria['t'] == 'gid' && $criteria['v'] == $id ? 'selected="selected"' : '', '>', $group, '</option>';
  1406. echo '
  1407. </select>
  1408. </span>';
  1409. // If this is the dummy we add a means to hide for non js users.
  1410. if ($isFirst)
  1411. $isFirst = false;
  1412. elseif ($criteria['t'] == '')
  1413. echo '</div>';
  1414. }
  1415. echo '
  1416. <span id="criteriaAddHere"></span><br />
  1417. <a href="#" onclick="addCriteriaOption(); return false;" id="addonjs1" style="display: none;">(', $txt['pm_rule_criteria_add'], ')</a>
  1418. <br /><br />
  1419. ', $txt['pm_rule_logic'], ':
  1420. <select name="rule_logic" id="logic" onchange="rebuildRuleDesc();">
  1421. <option value="and" ', $context['rule']['logic'] == 'and' ? 'selected="selected"' : '', '>', $txt['pm_rule_logic_and'], '</option>
  1422. <option value="or" ', $context['rule']['logic'] == 'or' ? 'selected="selected"' : '', '>', $txt['pm_rule_logic_or'], '</option>
  1423. </select>
  1424. </fieldset>
  1425. <fieldset>
  1426. <legend>', $txt['pm_rule_actions'], '</legend>';
  1427. // As with criteria - add a dummy action for "expansion".
  1428. $context['rule']['actions'][] = array('t' => '', 'v' => '');
  1429. // Print each action.
  1430. $isFirst = true;
  1431. foreach ($context['rule']['actions'] as $k => $action)
  1432. {
  1433. if (!$isFirst && $action['t'] == '')
  1434. echo '<div id="removeonjs2">';
  1435. elseif (!$isFirst)
  1436. echo '<br />';
  1437. echo '
  1438. <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();">
  1439. <option value="">', $txt['pm_rule_sel_action'] , ':</option>
  1440. <option value="lab" ', $action['t'] == 'lab' ? 'selected="selected"' : '', '>', $txt['pm_rule_label'] , '</option>
  1441. <option value="del" ', $action['t'] == 'del' ? 'selected="selected"' : '', '>', $txt['pm_rule_delete'] , '</option>
  1442. </select>
  1443. <span id="labdiv', $k, '">
  1444. <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();">
  1445. <option value="">', $txt['pm_rule_sel_label'], '</option>';
  1446. foreach ($context['labels'] as $label)
  1447. if ($label['id'] != -1)
  1448. echo '
  1449. <option value="', ($label['id'] + 1), '" ', $action['t'] == 'lab' && $action['v'] == $label['id'] ? 'selected="selected"' : '', '>', $label['name'], '</option>';
  1450. echo '
  1451. </select>
  1452. </span>';
  1453. if ($isFirst)
  1454. $isFirst = false;
  1455. elseif ($action['t'] == '')
  1456. echo '
  1457. </div>';
  1458. }
  1459. echo '
  1460. <span id="actionAddHere"></span><br />
  1461. <a href="#" onclick="addActionOption(); return false;" id="addonjs2" style="display: none;">(', $txt['pm_rule_add_action'], ')</a>
  1462. </fieldset>
  1463. </div>
  1464. <span class="botslice"><span></span></span>
  1465. </div><br class="clear" />
  1466. <div class="cat_bar">
  1467. <h3 class="catbg">', $txt['pm_rule_description'], '</h3>
  1468. </div>
  1469. <div class="information">
  1470. <div id="ruletext">', $txt['pm_rule_js_disabled'], '</div>
  1471. </div>
  1472. <div class="righttext">
  1473. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  1474. <input type="submit" name="save" value="', $txt['pm_rule_save'], '" class="button_submit" />
  1475. </div>
  1476. </form>';
  1477. // Now setup all the bits!
  1478. echo '
  1479. <script type="text/javascript"><!-- // --><![CDATA[';
  1480. foreach ($context['rule']['criteria'] as $k => $c)
  1481. echo '
  1482. updateRuleDef(', $k, ');';
  1483. foreach ($context['rule']['actions'] as $k => $c)
  1484. echo '
  1485. updateActionDef(', $k, ');';
  1486. echo '
  1487. rebuildRuleDesc();';
  1488. // If this isn't a new rule and we have JS enabled remove the JS compatibility stuff.
  1489. if ($context['rid'])
  1490. echo '
  1491. document.getElementById("removeonjs1").style.display = "none";
  1492. document.getElementById("removeonjs2").style.display = "none";';
  1493. echo '
  1494. document.getElementById("addonjs1").style.display = "";
  1495. document.getElementById("addonjs2").style.display = "";';
  1496. echo '
  1497. // ]]></script>';
  1498. }
  1499. ?>