Profile.template.php 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines http://www.simplemachines.org
  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. // Template for the profile side bar - goes before any other profile template.
  13. function template_profile_above()
  14. {
  15. global $context, $settings, $scripturl, $modSettings, $txt;
  16. echo '
  17. <script src="', $settings['default_theme_url'], '/scripts/profile.js"></script>';
  18. // Prevent Chrome from auto completing fields when viewing/editing other members profiles
  19. if (isBrowser('is_chrome') && !$context['user']['is_owner'])
  20. echo '
  21. <script><!-- // --><![CDATA[
  22. disableAutoComplete();
  23. // ]]></script>';
  24. // If an error occurred while trying to save previously, give the user a clue!
  25. echo '
  26. ', template_error_message();
  27. // If the profile was update successfully, let the user know this.
  28. if (!empty($context['profile_updated']))
  29. echo '
  30. <div class="infobox">
  31. ', $context['profile_updated'], '
  32. </div>';
  33. }
  34. // Template for closing off table started in profile_above.
  35. function template_profile_below()
  36. {
  37. }
  38. // Tempate for showing off the spiffy popup of the menu
  39. function template_profile_popup()
  40. {
  41. global $context, $scripturl;
  42. // Unlike almost every other template, this is designed to be included into the HTML directly via $().load()
  43. echo '
  44. <div class="profile_user_info">';
  45. // Firstly, an avatar.
  46. if (!empty($context['user']['avatar']))
  47. echo '
  48. <a href="', $scripturl, '?action=profile" class="avatar">', $context['user']['avatar']['image'], '</a>';
  49. // Then a couple of bits and pieces that might be interesting
  50. echo '
  51. <ol>
  52. <li class="profile_username"><a href="', $scripturl, '?action=profile;u=', $context['user']['id'], '">', $context['user']['name'], '</a></li>
  53. <li class="profile_group">', $context['member']['group'], '</li>
  54. </ol>
  55. <br class="clear">';
  56. echo '
  57. </div>
  58. <div class="profile_user_links">
  59. <ol>';
  60. $menu_context = &$context[$context['profile_menu_name']];
  61. foreach ($context['profile_items'] as $item)
  62. {
  63. $area = &$menu_context['sections'][$item['menu']]['areas'][$item['area']];
  64. $item_url = (isset($item['url']) ? $item['url'] : (isset($area['url']) ? $area['url'] : $menu_context['base_url'] . ';area=' . $item['area'])) . $menu_context['extra_parameters'];
  65. echo '
  66. <li>
  67. ', $area['icon'], '<a href="', $item_url, '">', !empty($item['title']) ? $item['title'] : $area['label'], '</a>
  68. </li>';
  69. }
  70. echo '
  71. </ol>
  72. <br class="clear">
  73. </div>';
  74. }
  75. function template_alerts_popup()
  76. {
  77. global $context, $txt, $scripturl;
  78. // Unlike almost every other template, this is designed to be included into the HTML directly via $().load()
  79. echo '
  80. <div class="alert_bar">
  81. <div class="alerts_opts floatright">
  82. <a href="' . $scripturl . '?action=profile;area=notification;sa=markread;', $context['session_var'], '=', $context['session_id'], '" onclick="return markAlertsRead(this)">', $txt['mark_alerts_read'], '</a>
  83. | <a href="', $scripturl, '?action=profile;area=notification;sa=alerts">', $txt['alert_settings'], '</a>
  84. </div>
  85. <div class="alerts_box floatleft">
  86. <a href="', $scripturl, '?action=pm">', $txt['all_alerts'], '</a>
  87. </div>
  88. </div>
  89. <div class="alerts_unread">';
  90. if (empty($context['unread_alerts']))
  91. {
  92. template_alerts_all_read();
  93. }
  94. else
  95. {
  96. foreach ($context['unread_alerts'] as $id_alert => $details)
  97. {
  98. echo '
  99. <div class="unread">
  100. <div class="avatar floatleft">', !empty($details['sender']) ? $details['sender']['avatar']['image'] : '', '</div>
  101. <div class="details floatleft">
  102. ', !empty($details['icon']) ? $details['icon'] : '', $details['text'], ' - ', $details['time'], '
  103. </div>
  104. <br class="clear">
  105. </div>';
  106. }
  107. }
  108. echo '
  109. </div>
  110. <script><!-- // --><![CDATA[
  111. function markAlertsRead(obj) {
  112. ajax_indicator(true);
  113. $.get(
  114. obj.href,
  115. function(data) {
  116. ajax_indicator(false);
  117. $("#alerts_menu_top span.amt").remove();
  118. $("#alerts_menu div.alerts_unread").html(data);
  119. }
  120. );
  121. return false;
  122. }
  123. // ]]></script>';
  124. }
  125. function template_alerts_all_read()
  126. {
  127. global $txt;
  128. echo '<div class="no_unread">', $txt['alerts_no_unread'], '</div>';
  129. }
  130. // This template displays users details without any option to edit them.
  131. function template_summary()
  132. {
  133. global $context, $settings, $scripturl, $modSettings, $txt;
  134. // Display the basic information about the user
  135. echo '
  136. <div id="profileview" class="flow_auto">
  137. <div id="basicinfo">
  138. <div class="windowbg">
  139. <div class="content flow_auto">
  140. <div class="username">
  141. <h4>', $context['member']['name'], '<span class="position">', (!empty($context['member']['group']) ? $context['member']['group'] : $context['member']['post_group']), '</span></h4>
  142. </div>
  143. ', $context['member']['avatar']['image'], '
  144. <ul class="reset">';
  145. // @TODO fix the <ul> when no fields are visible
  146. // What about if we allow email only via the forum??
  147. if ($context['member']['show_email'] === 'yes' || $context['member']['show_email'] === 'no_through_forum' || $context['member']['show_email'] === 'yes_permission_override' && $context['can_send_email'])
  148. echo '
  149. <li><a href="', $scripturl, '?action=emailuser;sa=email;uid=', $context['member']['id'], '" title="', $context['member']['show_email'] == 'yes' || $context['member']['show_email'] == 'yes_permission_override' ? $context['member']['email'] : '', '" rel="nofollow"><span class="generic_icons mail" title="' . $txt['email'] . '"></span></a></li>';
  150. // Don't show an icon if they haven't specified a website.
  151. if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website']))
  152. echo '
  153. <li><a href="', $context['member']['website']['url'], '" title="' . $context['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<span class="generic_icons www" title="' . $context['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';
  154. // Are there any custom profile fields for the summary?
  155. if (!empty($context['custom_fields']))
  156. {
  157. foreach ($context['custom_fields'] as $field)
  158. if (($field['placement'] == 1 || empty($field['output_html'])) && !empty($field['value']))
  159. echo '
  160. <li class="custom_field">', $field['output_html'], '</li>';
  161. }
  162. echo '
  163. ', !isset($context['disabled_fields']['icq']) && !empty($context['member']['icq']['link']) ? '<li>' . $context['member']['icq']['link'] . '</li>' : '', '
  164. ', !isset($context['disabled_fields']['skype']) && !empty($context['member']['skype']['link']) ? '<li>' . $context['member']['skype']['link'] . '</li>' : '', '
  165. ', !isset($context['disabled_fields']['aim']) && !empty($context['member']['aim']['link']) ? '<li>' . $context['member']['aim']['link'] . '</li>' : '', '
  166. ', !isset($context['disabled_fields']['yim']) && !empty($context['member']['yim']['link']) ? '<li>' . $context['member']['yim']['link'] . '</li>' : '', '
  167. </ul>
  168. <span id="userstatus">', $context['can_send_pm'] ? '<a href="' . $context['member']['online']['href'] . '" title="' . $context['member']['online']['text'] . '" rel="nofollow">' : '', $settings['use_image_buttons'] ? '<img src="' . $context['member']['online']['image_href'] . '" alt="' . $context['member']['online']['text'] . '" class="centericon">' : $context['member']['online']['label'], $context['can_send_pm'] ? '</a>' : '', $settings['use_image_buttons'] ? '<span class="smalltext"> ' . $context['member']['online']['label'] . '</span>' : '';
  169. // Can they add this member as a buddy?
  170. if (!empty($context['can_have_buddy']) && !$context['user']['is_owner'])
  171. echo '
  172. <br><a href="', $scripturl, '?action=buddy;u=', $context['id_member'], ';', $context['session_var'], '=', $context['session_id'], '">[', $txt['buddy_' . ($context['member']['is_buddy'] ? 'remove' : 'add')], ']</a>';
  173. echo '
  174. </span>';
  175. echo '
  176. <p id="infolinks">';
  177. if (!$context['user']['is_owner'] && $context['can_send_pm'])
  178. echo '
  179. <a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], '">', $txt['profile_sendpm_short'], '</a><br>';
  180. echo '
  181. <a href="', $scripturl, '?action=profile;area=showposts;u=', $context['id_member'], '">', $txt['showPosts'], '</a><br>';
  182. if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled']))
  183. echo '
  184. <a href="', $scripturl, '?action=profile;area=showdrafts;u=', $context['id_member'], '">', $txt['drafts_show'], '</a><br>';
  185. echo '
  186. <a href="', $scripturl, '?action=profile;area=statistics;u=', $context['id_member'], '">', $txt['statPanel'], '</a>
  187. </p>';
  188. echo '
  189. </div>
  190. </div>
  191. </div>
  192. <div id="detailedinfo">
  193. <div class="windowbg2">
  194. <div class="content">
  195. <dl>';
  196. if ($context['user']['is_owner'] || $context['user']['is_admin'])
  197. echo '
  198. <dt>', $txt['username'], ': </dt>
  199. <dd>', $context['member']['username'], '</dd>';
  200. if (!isset($context['disabled_fields']['posts']))
  201. echo '
  202. <dt>', $txt['profile_posts'], ': </dt>
  203. <dd>', $context['member']['posts'], ' (', $context['member']['posts_per_day'], ' ', $txt['posts_per_day'], ')</dd>';
  204. if ($context['can_send_email'])
  205. {
  206. // Only show the email address fully if it's not hidden - and we reveal the email.
  207. if ($context['member']['show_email'] == 'yes')
  208. echo '
  209. <dt>', $txt['email'], ': </dt>
  210. <dd><a href="', $scripturl, '?action=emailuser;sa=email;uid=', $context['member']['id'], '">', $context['member']['email'], '</a></dd>';
  211. // ... Or if the one looking at the profile is an admin they can see it anyway.
  212. elseif ($context['member']['show_email'] == 'yes_permission_override')
  213. echo '
  214. <dt>', $txt['email'], ': </dt>
  215. <dd><em><a href="', $scripturl, '?action=emailuser;sa=email;uid=', $context['member']['id'], '">', $context['member']['email'], '</a></em></dd>';
  216. }
  217. if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title']))
  218. echo '
  219. <dt>', $txt['custom_title'], ': </dt>
  220. <dd>', $context['member']['title'], '</dd>';
  221. if (!empty($context['member']['blurb']))
  222. echo '
  223. <dt>', $txt['personal_text'], ': </dt>
  224. <dd>', $context['member']['blurb'], '</dd>';
  225. // If karma enabled show the members karma.
  226. if ($modSettings['karmaMode'] == '1')
  227. echo '
  228. <dt>', $modSettings['karmaLabel'], ' </dt>
  229. <dd>', ($context['member']['karma']['good'] - $context['member']['karma']['bad']), '</dd>';
  230. elseif ($modSettings['karmaMode'] == '2')
  231. echo '
  232. <dt>', $modSettings['karmaLabel'], ' </dt>
  233. <dd>+', $context['member']['karma']['good'], '/-', $context['member']['karma']['bad'], '</dd>';
  234. if (!isset($context['disabled_fields']['gender']) && !empty($context['member']['gender']['name']))
  235. echo '
  236. <dt>', $txt['gender'], ': </dt>
  237. <dd>', $context['member']['gender']['name'], '</dd>';
  238. echo '
  239. <dt>', $txt['age'], ':</dt>
  240. <dd>', $context['member']['age'] . ($context['member']['today_is_birthday'] ? ' &nbsp; <img src="' . $settings['images_url'] . '/cake.png" alt="">' : ''), '</dd>';
  241. if (!isset($context['disabled_fields']['location']) && !empty($context['member']['location']))
  242. echo '
  243. <dt>', $txt['location'], ':</dt>
  244. <dd>', $context['member']['location'], '</dd>';
  245. echo '
  246. </dl>';
  247. // Any custom fields for standard placement?
  248. if (!empty($context['custom_fields']))
  249. {
  250. $shown = false;
  251. foreach ($context['custom_fields'] as $field)
  252. {
  253. if ($field['placement'] != 0 || empty($field['output_html']))
  254. continue;
  255. if (empty($shown))
  256. {
  257. echo '
  258. <dl>';
  259. $shown = true;
  260. }
  261. echo '
  262. <dt>', $field['name'], ':</dt>
  263. <dd>', $field['output_html'], '</dd>';
  264. }
  265. if (!empty($shown))
  266. echo '
  267. </dl>';
  268. }
  269. echo '
  270. <dl class="noborder">';
  271. // Can they view/issue a warning?
  272. if ($context['can_view_warning'] && $context['member']['warning'])
  273. {
  274. echo '
  275. <dt>', $txt['profile_warning_level'], ': </dt>
  276. <dd>
  277. <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=', ($context['can_issue_warning'] && !$context['user']['is_owner'] ? 'issuewarning' : 'viewwarning') , '">', $context['member']['warning'], '%</a>';
  278. // Can we provide information on what this means?
  279. if (!empty($context['warning_status']))
  280. echo '
  281. <span class="smalltext">(', $context['warning_status'], ')</span>';
  282. echo '
  283. </dd>';
  284. }
  285. // Is this member requiring activation and/or banned?
  286. if (!empty($context['activate_message']) || !empty($context['member']['bans']))
  287. {
  288. // If the person looking at the summary has permission, and the account isn't activated, give the viewer the ability to do it themselves.
  289. if (!empty($context['activate_message']))
  290. echo '
  291. <dt class="clear"><span class="alert">', $context['activate_message'], '</span>&nbsp;(<a href="', $context['activate_link'], '"', ($context['activate_type'] == 4 ? ' onclick="return confirm(\'' . $txt['profileConfirm'] . '\');"' : ''), '>', $context['activate_link_text'], '</a>)</dt>';
  292. // If the current member is banned, show a message and possibly a link to the ban.
  293. if (!empty($context['member']['bans']))
  294. {
  295. echo '
  296. <dt class="clear"><span class="alert">', $txt['user_is_banned'], '</span>&nbsp;[<a href="#" onclick="document.getElementById(\'ban_info\').style.display = document.getElementById(\'ban_info\').style.display == \'none\' ? \'\' : \'none\';return false;">' . $txt['view_ban'] . '</a>]</dt>
  297. <dt class="clear" id="ban_info" style="display: none;">
  298. <strong>', $txt['user_banned_by_following'], ':</strong>';
  299. foreach ($context['member']['bans'] as $ban)
  300. echo '
  301. <br><span class="smalltext">', $ban['explanation'], '</span>';
  302. echo '
  303. </dt>';
  304. }
  305. }
  306. echo '
  307. <dt>', $txt['date_registered'], ': </dt>
  308. <dd>', $context['member']['registered'], '</dd>';
  309. // If the person looking is allowed, they can check the members IP address and hostname.
  310. if ($context['can_see_ip'])
  311. {
  312. if (!empty($context['member']['ip']))
  313. echo '
  314. <dt>', $txt['ip'], ': </dt>
  315. <dd><a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['member']['ip'], ';u=', $context['member']['id'], '">', $context['member']['ip'], '</a></dd>';
  316. if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip']))
  317. echo '
  318. <dt>', $txt['hostname'], ': </dt>
  319. <dd>', $context['member']['hostname'], '</dd>';
  320. }
  321. echo '
  322. <dt>', $txt['local_time'], ':</dt>
  323. <dd>', $context['member']['local_time'], '</dd>';
  324. if (!empty($modSettings['userLanguage']) && !empty($context['member']['language']))
  325. echo '
  326. <dt>', $txt['language'], ':</dt>
  327. <dd>', $context['member']['language'], '</dd>';
  328. if ($context['member']['online']['is_online'])
  329. echo '
  330. <dt>', $txt['lastLoggedIn'], ': </dt>
  331. <dd>', $context['member']['last_login'], (!empty($context['member']['is_hidden']) ? ' (' . $txt['hidden'] . ')' : ''), '</dd>';
  332. echo '
  333. </dl>';
  334. // Are there any custom profile fields for the summary?
  335. if (!empty($context['custom_fields']))
  336. {
  337. $shown = false;
  338. foreach ($context['custom_fields'] as $field)
  339. {
  340. if ($field['placement'] != 2 || empty($field['output_html']))
  341. continue;
  342. if (empty($shown))
  343. {
  344. $shown = true;
  345. echo '
  346. <div class="custom_fields_above_signature">
  347. <ul class="reset nolist">';
  348. }
  349. echo '
  350. <li>', $field['output_html'], '</li>';
  351. }
  352. if ($shown)
  353. echo '
  354. </ul>
  355. </div>';
  356. }
  357. // Show the users signature.
  358. if ($context['signature_enabled'] && !empty($context['member']['signature']))
  359. echo '
  360. <div class="signature">
  361. <h5>', $txt['signature'], ':</h5>
  362. ', $context['member']['signature'], '
  363. </div>';
  364. echo '
  365. </div>
  366. </div>
  367. </div>
  368. <div class="clear"></div>
  369. </div>';
  370. }
  371. // Template for showing all the posts of the user, in chronological order.
  372. function template_showPosts()
  373. {
  374. global $context, $scripturl, $modSettings, $txt;
  375. echo '
  376. <div class="cat_bar">
  377. <h3 class="catbg">
  378. ', (!isset($context['attachments']) && empty($context['is_topics']) ? $txt['showMessages'] : (!empty($context['is_topics']) ? $txt['showTopics'] : $txt['showAttachments'])), ' - ', $context['member']['name'], '
  379. </h3>
  380. </div>', !empty($context['page_index']) ? '
  381. <div class="pagesection">
  382. <div class="pagelinks">' . $context['page_index'] . '</div>
  383. </div>' : '';
  384. // Are we displaying posts or attachments?
  385. if (!isset($context['attachments']))
  386. {
  387. // For every post to be displayed, give it its own div, and show the important details of the post.
  388. foreach ($context['posts'] as $post)
  389. {
  390. echo '
  391. <div class="', $post['alternate'] == 0 ? 'windowbg2' : 'windowbg', ' core_posts">
  392. <div class="content">
  393. <div class="counter">', $post['counter'], '</div>
  394. <div class="topic_details">
  395. <h5><strong><a href="', $scripturl, '?board=', $post['board']['id'], '.0">', $post['board']['name'], '</a> / <a href="', $scripturl, '?topic=', $post['topic'], '.', $post['start'], '#msg', $post['id'], '">', $post['subject'], '</a></strong></h5>
  396. <span class="smalltext">', $post['time'], '</span>
  397. </div>
  398. <div class="list_posts">';
  399. if (!$post['approved'])
  400. echo '
  401. <div class="approve_post">
  402. <em>', $txt['post_awaiting_approval'], '</em>
  403. </div>';
  404. echo '
  405. ', $post['body'], '
  406. </div>';
  407. if ($post['can_reply'] || $post['can_mark_notify'] || $post['can_delete'])
  408. echo '
  409. <div class="floatright">
  410. <ul class="reset smalltext quickbuttons">';
  411. // If they *can* reply?
  412. if ($post['can_reply'])
  413. echo '
  414. <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '" class="reply_button"><span>', $txt['reply'], '</span></a></li>';
  415. // If they *can* quote?
  416. if ($post['can_quote'])
  417. echo '
  418. <li><a href="', $scripturl . '?action=post;topic=', $post['topic'], '.', $post['start'], ';quote=', $post['id'], '" class="quote_button"><span>', $txt['quote_action'], '</span></a></li>';
  419. // Can we request notification of topics?
  420. if ($post['can_mark_notify'])
  421. echo '
  422. <li><a href="', $scripturl, '?action=notify;topic=', $post['topic'], '.', $post['start'], '" class="notify_button"><span>', $txt['notify'], '</span></a></li>';
  423. // How about... even... remove it entirely?!
  424. if ($post['can_delete'])
  425. echo '
  426. <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';profile;u=', $context['member']['id'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');" class="remove_button"><span>', $txt['remove'], '</span></a></li>';
  427. if ($post['can_reply'] || $post['can_mark_notify'] || $post['can_delete'])
  428. echo '
  429. </ul>
  430. </div>';
  431. echo '
  432. </div>
  433. </div>';
  434. }
  435. }
  436. else
  437. template_show_list('attachments');
  438. // No posts? Just end with a informative message.
  439. if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts'])))
  440. echo '
  441. <div class="windowbg2 core_posts">
  442. <div class="content">
  443. ', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), '
  444. </div>
  445. </div>
  446. </div>';
  447. // Show more page numbers.
  448. if (!empty($context['page_index']))
  449. echo '
  450. <div class="pagesection" style="margin-bottom: 0;">
  451. <div class="pagelinks">', $context['page_index'], '</div>
  452. </div>';
  453. }
  454. // Template for showing all the drafts of the user.
  455. function template_showDrafts()
  456. {
  457. global $context, $settings, $scripturl, $modSettings, $txt;
  458. echo '
  459. <div class="cat_bar">
  460. <h3 class="catbg">
  461. ', $txt['drafts'], ' - ', $context['member']['name'], '
  462. </h3>
  463. </div>', !empty($context['page_index']) ? '
  464. <div class="pagesection">
  465. <div class="pagelinks">' . $context['page_index'] . '</div>
  466. </div>' : '';
  467. // No drafts? Just show an informative message.
  468. if (empty($context['drafts']))
  469. echo '
  470. <div class="tborder windowbg2 padding centertext">
  471. ', $txt['draft_none'], '
  472. </div>';
  473. else
  474. {
  475. // For every draft to be displayed, give it its own div, and show the important details of the draft.
  476. foreach ($context['drafts'] as $draft)
  477. {
  478. echo '
  479. <div class="topic">
  480. <div class="', $draft['alternate'] == 0 ? 'windowbg2' : 'windowbg', ' core_posts">
  481. <div class="content">
  482. <div class="counter">', $draft['counter'], '</div>
  483. <div class="topic_details">
  484. <h5><strong><a href="', $scripturl, '?board=', $draft['board']['id'], '.0">', $draft['board']['name'], '</a> / ', $draft['topic']['link'], '</strong> &nbsp; &nbsp;';
  485. if (!empty($draft['sticky']))
  486. echo '<span class="generic_icons sticky" title="', $txt['sticky_topic'], '"></span>';
  487. if (!empty($draft['locked']))
  488. echo '<span class="generic_icons lock" title="', $txt['locked_topic'], '"></span>';
  489. echo '
  490. </h5>
  491. <span class="smalltext">&#171;&nbsp;<strong>', $txt['on'], ':</strong> ', $draft['time'], '&nbsp;&#187;</span>
  492. </div>
  493. <div class="list_posts">
  494. ', $draft['body'], '
  495. </div>
  496. </div>
  497. <div class="floatright">
  498. <ul class="reset smalltext quickbuttons">
  499. <li><a href="', $scripturl, '?action=post;', (empty($draft['topic']['id']) ? 'board=' . $draft['board']['id'] : 'topic=' . $draft['topic']['id']), '.0;id_draft=', $draft['id_draft'], '" class="reply_button"><span>', $txt['draft_edit'], '</span></a></li>
  500. <li><a href="', $scripturl, '?action=profile;u=', $context['member']['id'], ';area=showdrafts;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>
  501. </ul>
  502. </div>
  503. </div>
  504. </div>';
  505. }
  506. }
  507. // Show page numbers.
  508. echo '
  509. <div class="pagesection" style="margin-bottom: 0;">
  510. <div class="pagelinks">', $context['page_index'], '</div>
  511. </div>';
  512. }
  513. // Template for showing all the buddies of the current user.
  514. function template_editBuddies()
  515. {
  516. global $context, $settings, $scripturl, $modSettings, $txt;
  517. $disabled_fields = isset($modSettings['disabled_profile_fields']) ? array_flip(explode(',', $modSettings['disabled_profile_fields'])) : array();
  518. $buddy_fields = array('icq', 'aim', 'yim', 'skype');
  519. if (!empty($context['saved_successful']))
  520. echo '
  521. <div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>';
  522. elseif (!empty($context['saved_failed']))
  523. echo '
  524. <div class="errorbox">', $context['saved_failed'], '</div>';
  525. echo '
  526. <div class="generic_list_wrapper" id="edit_buddies">
  527. <div class="cat_bar">
  528. <h3 class="catbg">
  529. <span class="stats_icon people icon"></span>', $txt['editBuddies'], '
  530. </h3>
  531. </div>
  532. <table border="0" cellspacing="1" cellpadding="4" class="table_grid" align="center">
  533. <tr class="catbg">
  534. <th class="first_th" scope="col" width="20%">', $txt['name'], '</th>
  535. <th scope="col">', $txt['status'], '</th>';
  536. if ($context['can_send_email'])
  537. echo '
  538. <th scope="col">', $txt['email'], '</th>';
  539. // don't show them if they are disabled
  540. foreach ($buddy_fields as $key => $column)
  541. {
  542. if (!isset($disabled_fields[$column]))
  543. echo '
  544. <th scope="col">', $txt[$column], '</th>';
  545. }
  546. echo '
  547. <th class="last_th" scope="col"></th>
  548. </tr>';
  549. // If they don't have any buddies don't list them!
  550. if (empty($context['buddies']))
  551. echo '
  552. <tr class="windowbg2">
  553. <td colspan="8" align="center"><strong>', $txt['no_buddies'], '</strong></td>
  554. </tr>';
  555. // Now loop through each buddy showing info on each.
  556. $alternate = false;
  557. foreach ($context['buddies'] as $buddy)
  558. {
  559. echo '
  560. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '">
  561. <td>', $buddy['link'], '</td>
  562. <td align="center"><a href="', $buddy['online']['href'], '"><img src="', $buddy['online']['image_href'], '" alt="', $buddy['online']['text'], '" title="', $buddy['online']['text'], '"></a></td>';
  563. if ($context['can_send_email'])
  564. echo '
  565. <td align="center">', ($buddy['show_email'] == 'no' ? '' : '<a href="' . $scripturl . '?action=emailuser;sa=email;uid=' . $buddy['id'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $buddy['name'] . '"></span></a>'), '</td>';
  566. // If these are off, don't show them
  567. foreach ($buddy_fields as $key => $column)
  568. {
  569. if (!isset($disabled_fields[$column]))
  570. echo '
  571. <td align="center">', $buddy[$column]['link'], '</td>';
  572. }
  573. echo '
  574. <td align="center"><a href="', $scripturl, '?action=profile;area=lists;sa=buddies;u=', $context['id_member'], ';remove=', $buddy['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons delete" title="', $txt['buddy_remove'], '"></span></a></td>
  575. </tr>';
  576. $alternate = !$alternate;
  577. }
  578. echo '
  579. </table>
  580. </div>';
  581. // Add a new buddy?
  582. echo '
  583. <form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=buddies" method="post" accept-charset="', $context['character_set'], '">
  584. <div class="tborder add_buddy">
  585. <div class="cat_bar">
  586. <h3 class="catbg">', $txt['buddy_add'], '</h3>
  587. </div>
  588. <div class="roundframe">
  589. <dl class="settings">
  590. <dt>
  591. <label for="new_buddy"><strong>', $txt['who_member'], ':</strong></label>
  592. </dt>
  593. <dd>
  594. <input type="text" name="new_buddy" id="new_buddy" size="30" class="input_text">
  595. <input type="submit" value="', $txt['buddy_add_button'], '" class="button_submit floatnone">
  596. </dd>
  597. </dl>';
  598. if (!empty($context['token_check']))
  599. echo '
  600. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  601. echo '
  602. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  603. </div>
  604. </div>
  605. </form>
  606. <script src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  607. <script><!-- // --><![CDATA[
  608. var oAddBuddySuggest = new smc_AutoSuggest({
  609. sSelf: \'oAddBuddySuggest\',
  610. sSessionId: smf_session_id,
  611. sSessionVar: smf_session_var,
  612. sSuggestId: \'new_buddy\',
  613. sControlId: \'new_buddy\',
  614. sSearchType: \'member\',
  615. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  616. bItemList: false
  617. });
  618. // ]]></script>';
  619. }
  620. // Template for showing the ignore list of the current user.
  621. function template_editIgnoreList()
  622. {
  623. global $context, $settings, $scripturl, $modSettings, $txt;
  624. if (!empty($context['saved_successful']))
  625. echo '
  626. <div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>';
  627. elseif (!empty($context['saved_failed']))
  628. echo '
  629. <div class="errorbox">', $context['saved_failed'], '</div>';
  630. echo '
  631. <div class="generic_list_wrapper" id="edit_buddies">
  632. <div class="cat_bar">
  633. <h3 class="catbg">
  634. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">', $txt['editIgnoreList'], '
  635. </h3>
  636. </div>
  637. <table border="0" cellspacing="1" cellpadding="4" class="table_grid" align="center">
  638. <tr class="catbg">
  639. <th class="first_th" scope="col" width="20%">', $txt['name'], '</th>
  640. <th scope="col">', $txt['status'], '</th>';
  641. if ($context['can_send_email'])
  642. echo '
  643. <th scope="col">', $txt['email'], '</th>';
  644. echo '
  645. <th scope="col">', $txt['icq'], '</th>
  646. <th scope="col">', $txt['aim'], '</th>
  647. <th scope="col">', $txt['yim'], '</th>
  648. <th scope="col">', $txt['skype'], '</th>
  649. <th class="last_th" scope="col"></th>
  650. </tr>';
  651. // If they don't have anyone on their ignore list, don't list it!
  652. if (empty($context['ignore_list']))
  653. echo '
  654. <tr class="windowbg2">
  655. <td colspan="8" align="center"><strong>', $txt['no_ignore'], '</strong></td>
  656. </tr>';
  657. // Now loop through each buddy showing info on each.
  658. $alternate = false;
  659. foreach ($context['ignore_list'] as $member)
  660. {
  661. echo '
  662. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '">
  663. <td>', $member['link'], '</td>
  664. <td align="center"><a href="', $member['online']['href'], '"><img src="', $member['online']['image_href'], '" alt="', $member['online']['text'], '" title="', $member['online']['text'], '"></a></td>';
  665. if ($context['can_send_email'])
  666. echo '
  667. <td align="center">', ($member['show_email'] == 'no' ? '' : '<a href="' . $scripturl . '?action=emailuser;sa=email;uid=' . $member['id'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $member['name'] . '"></span></a>'), '</td>';
  668. echo '
  669. <td align="center">', $member['icq']['link'], '</td>
  670. <td align="center">', $member['aim']['link'], '</td>
  671. <td align="center">', $member['yim']['link'], '</td>
  672. <td align="center">', $member['skype']['link'], '</td>
  673. <td align="center"><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore;remove=', $member['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons delete" title="', $txt['ignore_remove'], '"></span></a></td>
  674. </tr>';
  675. $alternate = !$alternate;
  676. }
  677. echo '
  678. </table>
  679. </div>';
  680. // Add to the ignore list?
  681. echo '
  682. <form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore" method="post" accept-charset="', $context['character_set'], '">
  683. <div class="tborder add_buddy">
  684. <div class="cat_bar">
  685. <h3 class="catbg">', $txt['ignore_add'], '</h3>
  686. </div>
  687. <div class="roundframe">
  688. <dl class="settings">
  689. <dt>
  690. <label for="new_buddy"><strong>', $txt['who_member'], ':</strong></label>
  691. </dt>
  692. <dd>
  693. <input type="text" name="new_ignore" id="new_ignore" size="25" class="input_text">
  694. </dd>
  695. </dl>';
  696. if (!empty($context['token_check']))
  697. echo '
  698. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  699. echo '
  700. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  701. <input type="submit" value="', $txt['ignore_add_button'], '" class="button_submit">
  702. </div>
  703. </div>
  704. </form>
  705. <script src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  706. <script><!-- // --><![CDATA[
  707. var oAddIgnoreSuggest = new smc_AutoSuggest({
  708. sSelf: \'oAddIgnoreSuggest\',
  709. sSessionId: \'', $context['session_id'], '\',
  710. sSessionVar: \'', $context['session_var'], '\',
  711. sSuggestId: \'new_ignore\',
  712. sControlId: \'new_ignore\',
  713. sSearchType: \'member\',
  714. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  715. bItemList: false
  716. });
  717. // ]]></script>';
  718. }
  719. // This template shows an admin information on a users IP addresses used and errors attributed to them.
  720. function template_trackActivity()
  721. {
  722. global $context, $scripturl, $txt;
  723. // The first table shows IP information about the user.
  724. echo '
  725. <div class="generic_list_wrapper">
  726. <div class="cat_bar">
  727. <h3 class="catbg">', $txt['view_ips_by'], ' ', $context['member']['name'], '</h3>
  728. </div>';
  729. // The last IP the user used.
  730. echo '
  731. <div id="tracking" class="windowbg2">
  732. <div class="content">
  733. <dl class="noborder">
  734. <dt>', $txt['most_recent_ip'], ':
  735. ', (empty($context['last_ip2']) ? '' : '<br>
  736. <span class="smalltext">(<a href="' . $scripturl . '?action=helpadmin;help=whytwoip" onclick="return reqOverlayDiv(this.href);">' . $txt['why_two_ip_address'] . '</a>)</span>'), '
  737. </dt>
  738. <dd>
  739. <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>';
  740. // Second address detected?
  741. if (!empty($context['last_ip2']))
  742. echo '
  743. , <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>';
  744. echo '
  745. </dd>';
  746. // Lists of IP addresses used in messages / error messages.
  747. echo '
  748. <dt>', $txt['ips_in_messages'], ':</dt>
  749. <dd>
  750. ', (count($context['ips']) > 0 ? implode(', ', $context['ips']) : '(' . $txt['none'] . ')'), '
  751. </dd>
  752. <dt>', $txt['ips_in_errors'], ':</dt>
  753. <dd>
  754. ', (count($context['ips']) > 0 ? implode(', ', $context['error_ips']) : '(' . $txt['none'] . ')'), '
  755. </dd>';
  756. // List any members that have used the same IP addresses as the current member.
  757. echo '
  758. <dt>', $txt['members_in_range'], ':</dt>
  759. <dd>
  760. ', (count($context['members_in_range']) > 0 ? implode(', ', $context['members_in_range']) : '(' . $txt['none'] . ')'), '
  761. </dd>
  762. </dl>
  763. </div>
  764. </div>
  765. </div>
  766. <br>';
  767. // Show the track user list.
  768. template_show_list('track_user_list');
  769. }
  770. // The template for trackIP, allowing the admin to see where/who a certain IP has been used.
  771. function template_trackIP()
  772. {
  773. global $context, $scripturl, $txt;
  774. // This function always defaults to the last IP used by a member but can be set to track any IP.
  775. // The first table in the template gives an input box to allow the admin to enter another IP to track.
  776. echo '
  777. <div class="tborder">
  778. <div class="cat_bar">
  779. <h3 class="catbg">', $txt['trackIP'], '</h3>
  780. </div>
  781. <div class="roundframe">
  782. <form action="', $context['base_url'], '" method="post" accept-charset="', $context['character_set'], '">
  783. <dl class="settings">
  784. <dt>
  785. <label for="searchip"><strong>', $txt['enter_ip'], ':</strong></label>
  786. </dt>
  787. <dd>
  788. <input type="text" name="searchip" value="', $context['ip'], '" class="input_text">
  789. </dd>
  790. </dl>
  791. <input type="submit" value="', $txt['trackIP'], '" class="button_submit">
  792. </form>
  793. </div>
  794. </div>
  795. <br>
  796. <div class="generic_list_wrapper">';
  797. // The table inbetween the first and second table shows links to the whois server for every region.
  798. if ($context['single_ip'])
  799. {
  800. echo '
  801. <div class="cat_bar">
  802. <h3 class="catbg">', $txt['whois_title'], ' ', $context['ip'], '</h3>
  803. </div>
  804. <div class="windowbg2">
  805. <div class="padding">';
  806. foreach ($context['whois_servers'] as $server)
  807. echo '
  808. <a href="', $server['url'], '" target="_blank" class="new_win"', isset($context['auto_whois_server']) && $context['auto_whois_server']['name'] == $server['name'] ? ' style="font-weight: bold;"' : '', '>', $server['name'], '</a><br>';
  809. echo '
  810. </div>
  811. </div>';
  812. }
  813. // The second table lists all the members who have been logged as using this IP address.
  814. echo '
  815. <div class="cat_bar">
  816. <h3 class="catbg">', $txt['members_from_ip'], ' ', $context['ip'], '</h3>
  817. </div>';
  818. if (empty($context['ips']))
  819. echo '
  820. <p class="windowbg2 description"><em>', $txt['no_members_from_ip'], '</em></p>';
  821. else
  822. {
  823. echo '
  824. <table class="table_grid" cellspacing="0">
  825. <thead>
  826. <tr class="catbg">
  827. <th class="first_th" scope="col">', $txt['ip_address'], '</th>
  828. <th class="last_th" scope="col">', $txt['display_name'], '</th>
  829. </tr>
  830. </thead>
  831. <tbody>';
  832. // Loop through each of the members and display them.
  833. foreach ($context['ips'] as $ip => $memberlist)
  834. echo '
  835. <tr>
  836. <td class="windowbg2"><a href="', $context['base_url'], ';searchip=', $ip, '">', $ip, '</a></td>
  837. <td class="windowbg2">', implode(', ', $memberlist), '</td>
  838. </tr>';
  839. echo '
  840. </tbody>
  841. </table>';
  842. }
  843. echo '
  844. </div>
  845. <br>';
  846. template_show_list('track_message_list');
  847. echo '<br>';
  848. template_show_list('track_user_list');
  849. }
  850. function template_showPermissions()
  851. {
  852. global $context, $settings, $scripturl, $txt;
  853. echo '
  854. <div class="cat_bar">
  855. <h3 class="catbg">
  856. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">', $txt['showPermissions'], '
  857. </h3>
  858. </div>';
  859. if ($context['member']['has_all_permissions'])
  860. {
  861. echo '
  862. <p class="description">', $txt['showPermissions_all'], '</p>';
  863. }
  864. else
  865. {
  866. echo '
  867. <p class="description">',$txt['showPermissions_help'],'</p>
  868. <div id="permissions" class="flow_hidden">';
  869. if (!empty($context['no_access_boards']))
  870. {
  871. echo '
  872. <div class="cat_bar">
  873. <h3 class="catbg">', $txt['showPermissions_restricted_boards'], '</h3>
  874. </div>
  875. <div class="windowbg smalltext">
  876. <div class="content">', $txt['showPermissions_restricted_boards_desc'], ':<br>';
  877. foreach ($context['no_access_boards'] as $no_access_board)
  878. echo '
  879. <a href="', $scripturl, '?board=', $no_access_board['id'], '.0">', $no_access_board['name'], '</a>', $no_access_board['is_last'] ? '' : ', ';
  880. echo '
  881. </div>
  882. </div>';
  883. }
  884. // General Permissions section.
  885. echo '
  886. <div class="tborder">
  887. <div class="cat_bar">
  888. <h3 class="catbg">', $txt['showPermissions_general'], '</h3>
  889. </div>';
  890. if (!empty($context['member']['permissions']['general']))
  891. {
  892. echo '
  893. <table class="table_grid" cellspacing="0">
  894. <thead>
  895. <tr class="titlebg">
  896. <th class="lefttext first_th" scope="col" width="50%">', $txt['showPermissions_permission'], '</th>
  897. <th class="lefttext last_th" scope="col" width="50%">', $txt['showPermissions_status'], '</th>
  898. </tr>
  899. </thead>
  900. <tbody>';
  901. foreach ($context['member']['permissions']['general'] as $permission)
  902. {
  903. echo '
  904. <tr>
  905. <td class="windowbg" title="', $permission['id'], '">
  906. ', $permission['is_denied'] ? '<del>' . $permission['name'] . '</del>' : $permission['name'], '
  907. </td>
  908. <td class="windowbg2 smalltext">';
  909. if ($permission['is_denied'])
  910. echo '
  911. <span class="alert">', $txt['showPermissions_denied'], ':&nbsp;', implode(', ', $permission['groups']['denied']),'</span>';
  912. else
  913. echo '
  914. ', $txt['showPermissions_given'], ':&nbsp;', implode(', ', $permission['groups']['allowed']);
  915. echo '
  916. </td>
  917. </tr>';
  918. }
  919. echo '
  920. </tbody>
  921. </table>
  922. </div><br>';
  923. }
  924. else
  925. echo '
  926. <p class="windowbg2 description">', $txt['showPermissions_none_general'], '</p>';
  927. // Board permission section.
  928. echo '
  929. <div class="tborder">
  930. <form action="' . $scripturl . '?action=profile;u=', $context['id_member'], ';area=permissions#board_permissions" method="post" accept-charset="', $context['character_set'], '">
  931. <div class="cat_bar">
  932. <h3 class="catbg">
  933. <a id="board_permissions"></a>', $txt['showPermissions_select'], ':
  934. <select name="board" onchange="if (this.options[this.selectedIndex].value) this.form.submit();">
  935. <option value="0"', $context['board'] == 0 ? ' selected' : '', '>', $txt['showPermissions_global'], '&nbsp;</option>';
  936. if (!empty($context['boards']))
  937. echo '
  938. <option value="" disabled>---------------------------</option>';
  939. // Fill the box with any local permission boards.
  940. foreach ($context['boards'] as $board)
  941. echo '
  942. <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['name'], ' (', $board['profile_name'], ')</option>';
  943. echo '
  944. </select>
  945. </h3>
  946. </div>
  947. </form>';
  948. if (!empty($context['member']['permissions']['board']))
  949. {
  950. echo '
  951. <table class="table_grid" cellspacing="0">
  952. <thead>
  953. <tr class="titlebg">
  954. <th class="lefttext first_th" scope="col" width="50%">', $txt['showPermissions_permission'], '</th>
  955. <th class="lefttext last_th" scope="col" width="50%">', $txt['showPermissions_status'], '</th>
  956. </tr>
  957. </thead>
  958. <tbody>';
  959. foreach ($context['member']['permissions']['board'] as $permission)
  960. {
  961. echo '
  962. <tr>
  963. <td class="windowbg" title="', $permission['id'], '">
  964. ', $permission['is_denied'] ? '<del>' . $permission['name'] . '</del>' : $permission['name'], '
  965. </td>
  966. <td class="windowbg2 smalltext">';
  967. if ($permission['is_denied'])
  968. {
  969. echo '
  970. <span class="alert">', $txt['showPermissions_denied'], ':&nbsp;', implode(', ', $permission['groups']['denied']), '</span>';
  971. }
  972. else
  973. {
  974. echo '
  975. ', $txt['showPermissions_given'], ': &nbsp;', implode(', ', $permission['groups']['allowed']);
  976. }
  977. echo '
  978. </td>
  979. </tr>';
  980. }
  981. echo '
  982. </tbody>
  983. </table>';
  984. }
  985. else
  986. echo '
  987. <p class="windowbg2 description">', $txt['showPermissions_none_board'], '</p>';
  988. echo '
  989. </div>
  990. </div>';
  991. }
  992. }
  993. // Template for user statistics, showing graphs and the like.
  994. function template_statPanel()
  995. {
  996. global $context, $scripturl, $modSettings, $txt;
  997. // First, show a few text statistics such as post/topic count.
  998. echo '
  999. <div id="profileview">
  1000. <div id="generalstats">
  1001. <div class="windowbg2">
  1002. <div class="content">
  1003. <dl>
  1004. <dt>', $txt['statPanel_total_time_online'], ':</dt>
  1005. <dd>', $context['time_logged_in'], '</dd>
  1006. <dt>', $txt['statPanel_total_posts'], ':</dt>
  1007. <dd>', $context['num_posts'], ' ', $txt['statPanel_posts'], '</dd>
  1008. <dt>', $txt['statPanel_total_topics'], ':</dt>
  1009. <dd>', $context['num_topics'], ' ', $txt['statPanel_topics'], '</dd>
  1010. <dt>', $txt['statPanel_users_polls'], ':</dt>
  1011. <dd>', $context['num_polls'], ' ', $txt['statPanel_polls'], '</dd>
  1012. <dt>', $txt['statPanel_users_votes'], ':</dt>
  1013. <dd>', $context['num_votes'], ' ', $txt['statPanel_votes'], '</dd>
  1014. </dl>
  1015. </div>
  1016. </div>
  1017. </div>';
  1018. // This next section draws a graph showing what times of day they post the most.
  1019. echo '
  1020. <div id="activitytime" class="flow_hidden">
  1021. <div class="cat_bar">
  1022. <h3 class="catbg">
  1023. <span class="stats_icon history"></span>', $txt['statPanel_activityTime'], '
  1024. </h3>
  1025. </div>
  1026. <div class="windowbg2">
  1027. <div class="content">';
  1028. // If they haven't post at all, don't draw the graph.
  1029. if (empty($context['posts_by_time']))
  1030. echo '
  1031. <span class="centertext">', $txt['statPanel_noPosts'], '</span>';
  1032. // Otherwise do!
  1033. else
  1034. {
  1035. echo '
  1036. <ul class="activity_stats flow_hidden">';
  1037. // The labels.
  1038. foreach ($context['posts_by_time'] as $time_of_day)
  1039. {
  1040. echo '
  1041. <li', $time_of_day['is_last'] ? ' class="last"' : '', '>
  1042. <div class="bar" style="padding-top: ', ((int) (100 - $time_of_day['relative_percent'])), 'px;" title="', sprintf($txt['statPanel_activityTime_posts'], $time_of_day['posts'], $time_of_day['posts_percent']), '">
  1043. <div style="height: ', (int) $time_of_day['relative_percent'], 'px;">
  1044. <span>', sprintf($txt['statPanel_activityTime_posts'], $time_of_day['posts'], $time_of_day['posts_percent']), '</span>
  1045. </div>
  1046. </div>
  1047. <span class="stats_hour">', $time_of_day['hour_format'], '</span>
  1048. </li>';
  1049. }
  1050. echo '
  1051. </ul>';
  1052. }
  1053. echo '
  1054. <span class="clear">
  1055. </div>
  1056. </div>
  1057. </div>';
  1058. // Two columns with the most popular boards by posts and activity (activity = users posts / total posts).
  1059. echo '
  1060. <div class="flow_hidden">
  1061. <div id="popularposts">
  1062. <div class="cat_bar">
  1063. <h3 class="catbg">
  1064. <span class="stats_icon replies"></span>', $txt['statPanel_topBoards'], '
  1065. </h3>
  1066. </div>
  1067. <div class="windowbg2">
  1068. <div class="content">';
  1069. if (empty($context['popular_boards']))
  1070. echo '
  1071. <span class="centertext">', $txt['statPanel_noPosts'], '</span>';
  1072. else
  1073. {
  1074. echo '
  1075. <dl>';
  1076. // Draw a bar for every board.
  1077. foreach ($context['popular_boards'] as $board)
  1078. {
  1079. echo '
  1080. <dt>', $board['link'], '</dt>
  1081. <dd>
  1082. <div class="profile_pie" style="background-position: -', ((int) ($board['posts_percent'] / 5) * 20), 'px 0;" title="', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '">
  1083. ', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
  1084. </div>
  1085. <span>', empty($context['hide_num_posts']) ? $board['posts'] : '', '</span>
  1086. </dd>';
  1087. }
  1088. echo '
  1089. </dl>';
  1090. }
  1091. echo '
  1092. </div>
  1093. </div>
  1094. </div>';
  1095. echo '
  1096. <div id="popularactivity">
  1097. <div class="cat_bar">
  1098. <h3 class="catbg">
  1099. <span class="stats_icon replies"></span>', $txt['statPanel_topBoardsActivity'], '
  1100. </h3>
  1101. </div>
  1102. <div class="windowbg2">
  1103. <div class="content">';
  1104. if (empty($context['board_activity']))
  1105. echo '
  1106. <span>', $txt['statPanel_noPosts'], '</span>';
  1107. else
  1108. {
  1109. echo '
  1110. <dl>';
  1111. // Draw a bar for every board.
  1112. foreach ($context['board_activity'] as $activity)
  1113. {
  1114. echo '
  1115. <dt>', $activity['link'], '</dt>
  1116. <dd>
  1117. <div class="profile_pie" style="background-position: -', ((int) ($activity['percent'] / 5) * 20), 'px 0;" title="', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '">
  1118. ', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
  1119. </div>
  1120. <span>', $activity['percent'], '%</span>
  1121. </dd>';
  1122. }
  1123. echo '
  1124. </dl>';
  1125. }
  1126. echo '
  1127. </div>
  1128. </div>
  1129. </div>
  1130. </div>';
  1131. echo '
  1132. </div>';
  1133. }
  1134. // Template for editing profile options.
  1135. function template_edit_options()
  1136. {
  1137. global $context, $settings, $scripturl, $modSettings, $txt;
  1138. // The main header!
  1139. echo '
  1140. <form action="', (!empty($context['profile_custom_submit_url']) ? $context['profile_custom_submit_url'] : $scripturl . '?action=profile;area=' . $context['menu_item_selected'] . ';u=' . $context['id_member']), '" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator" enctype="multipart/form-data" onsubmit="return checkProfileSubmit();">
  1141. <div class="cat_bar">
  1142. <h3 class="catbg">
  1143. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">';
  1144. // Don't say "Profile" if this isn't the profile...
  1145. if (!empty($context['profile_header_text']))
  1146. echo '
  1147. ', $context['profile_header_text'];
  1148. else
  1149. echo '
  1150. ', $txt['profile'];
  1151. echo '
  1152. </h3>
  1153. </div>';
  1154. // Have we some description?
  1155. if ($context['page_desc'])
  1156. echo '
  1157. <p class="description">', $context['page_desc'], '</p>';
  1158. echo '
  1159. <div class="windowbg2">
  1160. <div class="content">';
  1161. // Any bits at the start?
  1162. if (!empty($context['profile_prehtml']))
  1163. echo '
  1164. <div>', $context['profile_prehtml'], '</div>';
  1165. if (!empty($context['profile_fields']))
  1166. echo '
  1167. <dl>';
  1168. // Start the big old loop 'of love.
  1169. $lastItem = 'hr';
  1170. foreach ($context['profile_fields'] as $key => $field)
  1171. {
  1172. // We add a little hack to be sure we never get more than one hr in a row!
  1173. if ($lastItem == 'hr' && $field['type'] == 'hr')
  1174. continue;
  1175. $lastItem = $field['type'];
  1176. if ($field['type'] == 'hr')
  1177. {
  1178. echo '
  1179. </dl>
  1180. <hr width="100%" size="1" class="hrcolor clear">
  1181. <dl>';
  1182. }
  1183. elseif ($field['type'] == 'callback')
  1184. {
  1185. if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func']))
  1186. {
  1187. $callback_func = 'template_profile_' . $field['callback_func'];
  1188. $callback_func();
  1189. }
  1190. }
  1191. else
  1192. {
  1193. echo '
  1194. <dt>
  1195. <strong', !empty($field['is_error']) ? ' class="error"' : '', '>', $field['type'] !== 'label' ? '<label for="' . $key . '">' : '', $field['label'], $field['type'] !== 'label' ? '</label>' : '', '</strong>';
  1196. // Does it have any subtext to show?
  1197. if (!empty($field['subtext']))
  1198. echo '
  1199. <br>
  1200. <span class="smalltext">', $field['subtext'], '</span>';
  1201. echo '
  1202. </dt>
  1203. <dd>';
  1204. // Want to put something infront of the box?
  1205. if (!empty($field['preinput']))
  1206. echo '
  1207. ', $field['preinput'];
  1208. // What type of data are we showing?
  1209. if ($field['type'] == 'label')
  1210. echo '
  1211. ', $field['value'];
  1212. // Maybe it's a text box - very likely!
  1213. elseif (in_array($field['type'], array('int', 'float', 'text', 'password')))
  1214. echo '
  1215. <input type="', $field['type'] == 'password' ? 'password' : 'text', '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" ', $field['input_attr'], ' class="input_', $field['type'] == 'password' ? 'password' : 'text', '">';
  1216. // You "checking" me out? ;)
  1217. elseif ($field['type'] == 'check')
  1218. echo '
  1219. <input type="hidden" name="', $key, '" value="0"><input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" class="input_check" ', $field['input_attr'], '>';
  1220. // Always fun - select boxes!
  1221. elseif ($field['type'] == 'select')
  1222. {
  1223. echo '
  1224. <select name="', $key, '" id="', $key, '">';
  1225. if (isset($field['options']))
  1226. {
  1227. // Is this some code to generate the options?
  1228. if (!is_array($field['options']))
  1229. $field['options'] = eval($field['options']);
  1230. // Assuming we now have some!
  1231. if (is_array($field['options']))
  1232. foreach ($field['options'] as $value => $name)
  1233. echo '
  1234. <option value="', $value, '"', $value == $field['value'] ? ' selected' : '', '>', $name, '</option>';
  1235. }
  1236. echo '
  1237. </select>';
  1238. }
  1239. // Something to end with?
  1240. if (!empty($field['postinput']))
  1241. echo '
  1242. ', $field['postinput'];
  1243. echo '
  1244. </dd>';
  1245. }
  1246. }
  1247. if (!empty($context['profile_fields']))
  1248. echo '
  1249. </dl>';
  1250. // Are there any custom profile fields - if so print them!
  1251. if (!empty($context['custom_fields']))
  1252. {
  1253. if ($lastItem != 'hr')
  1254. echo '
  1255. <hr width="100%" size="1" class="hrcolor clear">';
  1256. echo '
  1257. <dl>';
  1258. foreach ($context['custom_fields'] as $field)
  1259. {
  1260. echo '
  1261. <dt>
  1262. <strong>', $field['name'], ': </strong><br>
  1263. <span class="smalltext">', $field['desc'], '</span>
  1264. </dt>
  1265. <dd>
  1266. ', $field['input_html'], '
  1267. </dd>';
  1268. }
  1269. echo '
  1270. </dl>';
  1271. }
  1272. // Any closing HTML?
  1273. if (!empty($context['profile_posthtml']))
  1274. echo '
  1275. <div>', $context['profile_posthtml'], '</div>';
  1276. // Only show the password box if it's actually needed.
  1277. if ($context['require_password'])
  1278. echo '
  1279. <dl>
  1280. <dt>
  1281. <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '><label for="oldpasswrd">', $txt['current_password'], ': </label></strong><br>
  1282. <span class="smalltext">', $txt['required_security_reasons'], '</span>
  1283. </dt>
  1284. <dd>
  1285. <input type="password" name="oldpasswrd" id="oldpasswrd" size="20" style="margin-right: 4ex;" class="input_password">
  1286. </dd>
  1287. </dl>';
  1288. // The button shouldn't say "Change profile" unless we're changing the profile...
  1289. if (!empty($context['submit_button_text']))
  1290. echo '
  1291. <input type="submit" name="save" value="', $context['submit_button_text'], '" class="button_submit">';
  1292. else
  1293. echo '
  1294. <input type="submit" name="save" value="', $txt['change_profile'], '" class="button_submit">';
  1295. if (!empty($context['token_check']))
  1296. echo '
  1297. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  1298. echo '
  1299. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  1300. <input type="hidden" name="u" value="', $context['id_member'], '">
  1301. <input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
  1302. </div>
  1303. </div>
  1304. </form>';
  1305. // Some javascript!
  1306. echo '
  1307. <script><!-- // --><![CDATA[
  1308. function checkProfileSubmit()
  1309. {';
  1310. // If this part requires a password, make sure to give a warning.
  1311. if ($context['require_password'])
  1312. echo '
  1313. // Did you forget to type your password?
  1314. if (document.forms.creator.oldpasswrd.value == "")
  1315. {
  1316. alert("', $txt['required_security_reasons'], '");
  1317. return false;
  1318. }';
  1319. // Any onsubmit javascript?
  1320. if (!empty($context['profile_onsubmit_javascript']))
  1321. echo '
  1322. ', $context['profile_javascript'];
  1323. echo '
  1324. }';
  1325. // Any totally custom stuff?
  1326. if (!empty($context['profile_javascript']))
  1327. echo '
  1328. ', $context['profile_javascript'];
  1329. echo '
  1330. // ]]></script>';
  1331. // Any final spellchecking stuff?
  1332. if (!empty($context['show_spellchecking']))
  1333. echo '
  1334. <form name="spell_form" id="spell_form" method="post" accept-charset="', $context['character_set'], '" target="spellWindow" action="', $scripturl, '?action=spellcheck"><input type="hidden" name="spellstring" value=""></form>';
  1335. }
  1336. // Personal Message settings.
  1337. function template_profile_pm_settings()
  1338. {
  1339. global $context, $scripturl, $modSettings, $txt;
  1340. echo '
  1341. <dt>
  1342. <label for="pm_prefs">', $txt['pm_display_mode'], ':</label>
  1343. </dt>
  1344. <dd>
  1345. <select name="pm_prefs" id="pm_prefs">
  1346. <option value="0"', $context['display_mode'] == 0 ? ' selected' : '', '>', $txt['pm_display_mode_all'], '</option>
  1347. <option value="1"', $context['display_mode'] == 1 ? ' selected' : '', '>', $txt['pm_display_mode_one'], '</option>
  1348. <option value="2"', $context['display_mode'] == 2 ? ' selected' : '', '>', $txt['pm_display_mode_linked'], '</option>
  1349. </select>
  1350. </dd>
  1351. <dt>
  1352. <label for="view_newest_pm_first">', $txt['recent_pms_at_top'], '</label>
  1353. </dt>
  1354. <dd>
  1355. <input type="hidden" name="default_options[view_newest_pm_first]" value="0">
  1356. <input type="checkbox" name="default_options[view_newest_pm_first]" id="view_newest_pm_first" value="1"', !empty($context['member']['options']['view_newest_pm_first']) ? ' checked' : '', ' class="input_check">
  1357. </dd>
  1358. </dl>
  1359. <hr>
  1360. <dl>
  1361. <dt>
  1362. <label for="pm_receive_from">', $txt['pm_receive_from'], '</label>
  1363. </dt>
  1364. <dd>
  1365. <select name="pm_receive_from" id="pm_receive_from">
  1366. <option value="0"', empty($context['receive_from']) || (empty($modSettings['enable_buddylist']) && $context['receive_from'] < 3) ? ' selected' : '', '>', $txt['pm_receive_from_everyone'], '</option>';
  1367. if (!empty($modSettings['enable_buddylist']))
  1368. echo '
  1369. <option value="1"', !empty($context['receive_from']) && $context['receive_from'] == 1 ? ' selected' : '', '>', $txt['pm_receive_from_ignore'], '</option>
  1370. <option value="2"', !empty($context['receive_from']) && $context['receive_from'] == 2 ? ' selected' : '', '>', $txt['pm_receive_from_buddies'], '</option>';
  1371. echo '
  1372. <option value="3"', !empty($context['receive_from']) && $context['receive_from'] > 2 ? ' selected' : '', '>', $txt['pm_receive_from_admins'], '</option>
  1373. </select>
  1374. </dd>
  1375. <dt>
  1376. <label for="pm_email_notify">', $txt['email_notify'], '</label>
  1377. </dt>
  1378. <dd>
  1379. <select name="pm_email_notify" id="pm_email_notify">
  1380. <option value="0"', empty($context['send_email']) ? ' selected' : '', '>', $txt['email_notify_never'], '</option>
  1381. <option value="1"', !empty($context['send_email']) && ($context['send_email'] == 1 || (empty($modSettings['enable_buddylist']) && $context['send_email'] > 1)) ? ' selected' : '', '>', $txt['email_notify_always'], '</option>';
  1382. if (!empty($modSettings['enable_buddylist']))
  1383. echo '
  1384. <option value="2"', !empty($context['send_email']) && $context['send_email'] > 1 ? ' selected' : '', '>', $txt['email_notify_buddies'], '</option>';
  1385. echo '
  1386. </select>
  1387. </dd>
  1388. <dt>
  1389. <label for="popup_messages">', $txt['popup_messages'], '</label>
  1390. </dt>
  1391. <dd>
  1392. <input type="hidden" name="default_options[popup_messages]" value="0">
  1393. <input type="checkbox" name="default_options[popup_messages]" id="popup_messages" value="1"', !empty($context['member']['options']['popup_messages']) ? ' checked' : '', ' class="input_check">
  1394. </dd>
  1395. </dl>
  1396. <hr>
  1397. <dl>
  1398. <dt>
  1399. <label for="pm_remove_inbox_label">', $txt['pm_remove_inbox_label'], '</label>
  1400. </dt>
  1401. <dd>
  1402. <input type="hidden" name="default_options[pm_remove_inbox_label]" value="0">
  1403. <input type="checkbox" name="default_options[pm_remove_inbox_label]" id="pm_remove_inbox_label" value="1"', !empty($context['member']['options']['pm_remove_inbox_label']) ? ' checked' : '', ' class="input_check">
  1404. </dd>';
  1405. }
  1406. // Template for showing theme settings. Note: template_options() actually adds the theme specific options.
  1407. function template_profile_theme_settings()
  1408. {
  1409. global $context, $scripturl, $modSettings, $txt;
  1410. echo '
  1411. <dt>
  1412. <label for="show_children">', $txt['show_children'], '</label>
  1413. </dt>
  1414. <dd>
  1415. <input type="hidden" name="default_options[show_children]" value="0">
  1416. <input type="checkbox" name="default_options[show_children]" id="show_children" value="1"', !empty($context['member']['options']['show_children']) ? ' checked' : '', ' class="input_check">
  1417. </dd>
  1418. <dt>
  1419. <label for="show_no_avatars">', $txt['show_no_avatars'], '</label>
  1420. </dt>
  1421. <dd>
  1422. <input type="hidden" name="default_options[show_no_avatars]" value="0">
  1423. <input type="checkbox" name="default_options[show_no_avatars]" id="show_no_avatars" value="1"', !empty($context['member']['options']['show_no_avatars']) ? ' checked' : '', ' class="input_check">
  1424. </dd>
  1425. <dt>
  1426. <label for="show_no_signatures">', $txt['show_no_signatures'], '</label>
  1427. </dt>
  1428. <dd>
  1429. <input type="hidden" name="default_options[show_no_signatures]" value="0">
  1430. <input type="checkbox" name="default_options[show_no_signatures]" id="show_no_signatures" value="1"', !empty($context['member']['options']['show_no_signatures']) ? ' checked' : '', ' class="input_check">
  1431. </dd>';
  1432. if (!empty($modSettings['allow_no_censored']))
  1433. echo '
  1434. <dt>
  1435. <label for="show_no_censored">' . $txt['show_no_censored'] . '</label>
  1436. </dt>
  1437. <dd>
  1438. <input type="hidden" name="default_options[show_no_censored]" value="0">
  1439. <input type="checkbox" name="default_options[show_no_censored]" id="show_no_censored" value="1"' . (!empty($context['member']['options']['show_no_censored']) ? ' checked' : '') . ' class="input_check">
  1440. </dd>';
  1441. echo '
  1442. <dt>
  1443. <label for="return_to_post">', $txt['return_to_post'], '</label>
  1444. </dt>
  1445. <dd>
  1446. <input type="hidden" name="default_options[return_to_post]" value="0">
  1447. <input type="checkbox" name="default_options[return_to_post]" id="return_to_post" value="1"', !empty($context['member']['options']['return_to_post']) ? ' checked' : '', ' class="input_check">
  1448. </dd>';
  1449. if (!empty($modSettings['enable_buddylist']))
  1450. echo '
  1451. <dt>
  1452. <label for="posts_apply_ignore_list">', $txt['posts_apply_ignore_list'], '</label>
  1453. </dt>
  1454. <dd>
  1455. <input type="hidden" name="default_options[posts_apply_ignore_list]" value="0">
  1456. <input type="checkbox" name="default_options[posts_apply_ignore_list]" id="posts_apply_ignore_list" value="1"', !empty($context['member']['options']['posts_apply_ignore_list']) ? ' checked' : '', ' class="input_check">
  1457. </dd>';
  1458. echo '
  1459. <dt>
  1460. <label for="view_newest_first">', $txt['recent_posts_at_top'], '</label>
  1461. </dt>
  1462. <dd>
  1463. <input type="hidden" name="default_options[view_newest_first]" value="0">
  1464. <input type="checkbox" name="default_options[view_newest_first]" id="view_newest_first" value="1"', !empty($context['member']['options']['view_newest_first']) ? ' checked' : '', ' class="input_check">
  1465. </dd>';
  1466. // Choose WYSIWYG settings?
  1467. if (empty($modSettings['disable_wysiwyg']))
  1468. echo '
  1469. <dt>
  1470. <label for="wysiwyg_default">', $txt['wysiwyg_default'], '</label>
  1471. </dt>
  1472. <dd>
  1473. <input type="hidden" name="default_options[wysiwyg_default]" value="0">
  1474. <input type="checkbox" name="default_options[wysiwyg_default]" id="wysiwyg_default" value="1"', !empty($context['member']['options']['wysiwyg_default']) ? ' checked' : '', ' class="input_check">
  1475. </dd>';
  1476. if (empty($modSettings['disableCustomPerPage']))
  1477. {
  1478. echo '
  1479. <dt>
  1480. <label for="topics_per_page">', $txt['topics_per_page'], '</label>
  1481. </dt>
  1482. <dd>
  1483. <select name="default_options[topics_per_page]" id="topics_per_page">
  1484. <option value="0"', empty($context['member']['options']['topics_per_page']) ? ' selected' : '', '>', $txt['per_page_default'], ' (', $modSettings['defaultMaxTopics'], ')</option>
  1485. <option value="5"', !empty($context['member']['options']['topics_per_page']) && $context['member']['options']['topics_per_page'] == 5 ? ' selected' : '', '>5</option>
  1486. <option value="10"', !empty($context['member']['options']['topics_per_page']) && $context['member']['options']['topics_per_page'] == 10 ? ' selected' : '', '>10</option>
  1487. <option value="25"', !empty($context['member']['options']['topics_per_page']) && $context['member']['options']['topics_per_page'] == 25 ? ' selected' : '', '>25</option>
  1488. <option value="50"', !empty($context['member']['options']['topics_per_page']) && $context['member']['options']['topics_per_page'] == 50 ? ' selected' : '', '>50</option>
  1489. </select>
  1490. </dd>
  1491. <dt>
  1492. <label for="messages_per_page">', $txt['messages_per_page'], '</label>
  1493. </dt>
  1494. <dd>
  1495. <select name="default_options[messages_per_page]" id="messages_per_page">
  1496. <option value="0"', empty($context['member']['options']['messages_per_page']) ? ' selected' : '', '>', $txt['per_page_default'], ' (', $modSettings['defaultMaxMessages'], ')</option>
  1497. <option value="5"', !empty($context['member']['options']['messages_per_page']) && $context['member']['options']['messages_per_page'] == 5 ? ' selected' : '', '>5</option>
  1498. <option value="10"', !empty($context['member']['options']['messages_per_page']) && $context['member']['options']['messages_per_page'] == 10 ? ' selected' : '', '>10</option>
  1499. <option value="25"', !empty($context['member']['options']['messages_per_page']) && $context['member']['options']['messages_per_page'] == 25 ? ' selected' : '', '>25</option>
  1500. <option value="50"', !empty($context['member']['options']['messages_per_page']) && $context['member']['options']['messages_per_page'] == 50 ? ' selected' : '', '>50</option>
  1501. </select>
  1502. </dd>';
  1503. }
  1504. if (!empty($modSettings['cal_enabled']))
  1505. echo '
  1506. <dt>
  1507. <label for="calendar_start_day">', $txt['calendar_start_day'], ':</label>
  1508. </dt>
  1509. <dd>
  1510. <select name="default_options[calendar_start_day]" id="calendar_start_day">
  1511. <option value="0"', empty($context['member']['options']['calendar_start_day']) ? ' selected' : '', '>', $txt['days'][0], '</option>
  1512. <option value="1"', !empty($context['member']['options']['calendar_start_day']) && $context['member']['options']['calendar_start_day'] == 1 ? ' selected' : '', '>', $txt['days'][1], '</option>
  1513. <option value="6"', !empty($context['member']['options']['calendar_start_day']) && $context['member']['options']['calendar_start_day'] == 6 ? ' selected' : '', '>', $txt['days'][6], '</option>
  1514. </select>
  1515. </dd>';
  1516. if ((!empty($modSettings['drafts_post_enabled']) || !empty($modSettings['drafts_pm_enabled'])) && !empty($modSettings['drafts_autosave_enabled']))
  1517. echo '
  1518. <dt>
  1519. <label for="drafts_autosave_enabled">', $txt['drafts_autosave_enabled'], '</label>
  1520. </dt>
  1521. <dd>
  1522. <input type="hidden" name="default_options[drafts_autosave_enabled]" value="0">
  1523. <label for="drafts_autosave_enabled"><input type="checkbox" name="default_options[drafts_autosave_enabled]" id="drafts_autosave_enabled" value="1"', !empty($context['member']['options']['drafts_autosave_enabled']) ? ' checked' : '', ' class="input_check"></label>
  1524. </dd>';
  1525. if ((!empty($modSettings['drafts_post_enabled']) || !empty($modSettings['drafts_pm_enabled'])) && !empty($modSettings['drafts_show_saved_enabled']))
  1526. echo '
  1527. <dt>
  1528. <label for="drafts_show_saved_enabled">', $txt['drafts_show_saved_enabled'], '</label>
  1529. </dt>
  1530. <dd>
  1531. <input type="hidden" name="default_options[drafts_show_saved_enabled]" value="0">
  1532. <label for="drafts_show_saved_enabled"><input type="checkbox" name="default_options[drafts_show_saved_enabled]" id="drafts_show_saved_enabled" value="1"', !empty($context['member']['options']['drafts_show_saved_enabled']) ? ' checked' : '', ' class="input_check"></label>
  1533. </dd>';
  1534. echo '
  1535. <dt>
  1536. <label for="use_editor_quick_reply">', $txt['use_editor_quick_reply'], '</label>
  1537. </dt>
  1538. <dd>
  1539. <input type="hidden" name="default_options[use_editor_quick_reply]" value="0">
  1540. <label for="use_editor_quick_reply"><input type="checkbox" name="default_options[use_editor_quick_reply]" id="use_editor_quick_reply" value="1"', !empty($context['member']['options']['use_editor_quick_reply']) ? ' checked' : '', ' class="input_check"></label>
  1541. </dd>
  1542. <dt>
  1543. <label for="display_quick_mod">', $txt['display_quick_mod'], '</label>
  1544. </dt>
  1545. <dd>
  1546. <select name="default_options[display_quick_mod]" id="display_quick_mod">
  1547. <option value="0"', empty($context['member']['options']['display_quick_mod']) ? ' selected' : '', '>', $txt['display_quick_mod_none'], '</option>
  1548. <option value="1"', !empty($context['member']['options']['display_quick_mod']) && $context['member']['options']['display_quick_mod'] == 1 ? ' selected' : '', '>', $txt['display_quick_mod_check'], '</option>
  1549. <option value="2"', !empty($context['member']['options']['display_quick_mod']) && $context['member']['options']['display_quick_mod'] != 1 ? ' selected' : '', '>', $txt['display_quick_mod_image'], '</option>
  1550. </select>
  1551. </dd>';
  1552. }
  1553. function template_alert_configuration()
  1554. {
  1555. global $context, $settings, $txt, $scripturl, $modSettings;
  1556. echo '
  1557. <div class="cat_bar">
  1558. <h3 class="catbg">
  1559. ', $txt['alert_prefs'], '
  1560. </h3>
  1561. </div>
  1562. <p class="description">', $txt['alert_prefs_desc'], '</p>
  1563. <form action="', $scripturl, '?action=profile;area=notification;sa=alerts" id="admin_form_wrapper" method="post" accept-charset="', $context['character_set'], '" id="notify_options" class="flow_hidden">
  1564. <div class="title_bar">
  1565. <h3 class="titlebg">
  1566. ', $txt['notification_general'], '
  1567. </h3>
  1568. </div>
  1569. <div class="windowbg2">
  1570. <div class="content">
  1571. <dl class="settings">';
  1572. // Allow notification on announcements to be disabled?
  1573. if (!empty($modSettings['allow_disableAnnounce']))
  1574. echo '
  1575. <dt>
  1576. <label for="notify_announcements">', $txt['notify_important_email'], '</label>
  1577. </dt>
  1578. <dd>
  1579. <input type="hidden" name="notify_announcements" value="0">
  1580. <input type="checkbox" id="notify_announcements" name="notify_announcements"', !empty($context['member']['notify_announcements']) ? ' checked' : '', ' class="input_check">
  1581. </dd>';
  1582. // More notification options.
  1583. echo '
  1584. <dt>
  1585. <label for="auto_notify">', $txt['auto_notify'], '</label>
  1586. </dt>
  1587. <dd>
  1588. <input type="hidden" name="default_options[auto_notify]" value="0">
  1589. <input type="checkbox" id="auto_notify" name="default_options[auto_notify]" value="1"', !empty($context['member']['options']['auto_notify']) ? ' checked' : '', ' class="input_check">
  1590. </dd>';
  1591. if (empty($modSettings['disallow_sendBody']))
  1592. echo '
  1593. <dt>
  1594. <label for="notify_send_body">', $txt['notify_send_body'], '</label>
  1595. </dt>
  1596. <dd>
  1597. <input type="hidden" name="notify_send_body" value="0">
  1598. <input type="checkbox" id="notify_send_body" name="notify_send_body"', !empty($context['member']['notify_send_body']) ? ' checked' : '', ' class="input_check">
  1599. </dd>';
  1600. echo '
  1601. <dt>
  1602. <label for="notify_regularity">', $txt['notify_regularity'], ':</label>
  1603. </dt>
  1604. <dd>
  1605. <select name="notify_regularity" id="notify_regularity">
  1606. <option value="0"', $context['member']['notify_regularity'] == 0 ? ' selected' : '', '>', $txt['notify_regularity_instant'], '</option>
  1607. <option value="1"', $context['member']['notify_regularity'] == 1 ? ' selected' : '', '>', $txt['notify_regularity_first_only'], '</option>
  1608. <option value="2"', $context['member']['notify_regularity'] == 2 ? ' selected' : '', '>', $txt['notify_regularity_daily'], '</option>
  1609. <option value="3"', $context['member']['notify_regularity'] == 3 ? ' selected' : '', '>', $txt['notify_regularity_weekly'], '</option>
  1610. </select>
  1611. </dd>
  1612. <dt>
  1613. <label for="notify_types">', $txt['notify_send_types'], ':</label>
  1614. </dt>
  1615. <dd>
  1616. <select name="notify_types" id="notify_types">
  1617. <option value="1"', $context['member']['notify_types'] == 1 ? ' selected' : '', '>', $txt['notify_send_type_everything'], '</option>
  1618. <option value="2"', $context['member']['notify_types'] == 2 ? ' selected' : '', '>', $txt['notify_send_type_everything_own'], '</option>
  1619. <option value="3"', $context['member']['notify_types'] == 3 ? ' selected' : '', '>', $txt['notify_send_type_only_replies'], '</option>
  1620. <option value="4"', $context['member']['notify_types'] == 4 ? ' selected' : '', '>', $txt['notify_send_type_nothing'], '</option>
  1621. </select>
  1622. </dd>
  1623. </dl>
  1624. </div>
  1625. </div>
  1626. <div class="title_bar">
  1627. <h3 class="titlebg">
  1628. ', $txt['notify_what_how'], '
  1629. </h3>
  1630. </div>
  1631. <table class="table_grid" style="width: 100%">
  1632. <tr class="titlebg">
  1633. <td></td>
  1634. <td>', $txt['receive_alert'], '</td>
  1635. <td>', $txt['receive_mail'], '</td>
  1636. </tr>';
  1637. $use_bg2 = true;
  1638. foreach ($context['alert_types'] as $alert_group => $alerts)
  1639. {
  1640. echo '
  1641. <tr class="catbg">
  1642. <th colspan="3">
  1643. ', $txt['alert_group_' . $alert_group];
  1644. if (isset($context['alert_group_options'][$alert_group]))
  1645. {
  1646. foreach ($context['alert_group_options'][$alert_group] as $opts)
  1647. {
  1648. echo '
  1649. <div class="smalltext">';
  1650. $label = $txt['alert_opt_' . $opts[1]];
  1651. $label_pos = isset($opts['label']) ? $opts['label'] : '';
  1652. if ($label_pos == 'before')
  1653. echo '
  1654. <label for="opt_', $opts[1], '">', $label, '</label>';
  1655. $this_value = isset($context['alert_prefs'][$opts[1]]) ? $context['alert_prefs'][$opts[1]] : 0;
  1656. switch ($opts[0])
  1657. {
  1658. case 'check':
  1659. echo '
  1660. <input type="checkbox" name="opt_', $opts[1], '" id="opt_', $opts[1], '"', $this_value ? ' checked' : '', '>';
  1661. break;
  1662. case 'select':
  1663. echo '
  1664. <select name="opt_', $opts[1], '" id="opt_', $opts[1], '">';
  1665. foreach ($opts['opts'] as $k => $v)
  1666. echo '
  1667. <option value="', $k, '"', $this_value == $k ? ' selected' : '', '>', $v, '</option>';
  1668. echo '
  1669. </select>';
  1670. break;
  1671. }
  1672. if ($label_pos == 'after')
  1673. echo '
  1674. <label for="opt_', $opts[1], '">', $label, '</label>';
  1675. echo '
  1676. </div>';
  1677. }
  1678. }
  1679. echo '
  1680. </th>
  1681. </tr>';
  1682. foreach ($alerts as $alert_id => $alert_details)
  1683. {
  1684. echo '
  1685. <tr class="windowbg', $use_bg2 ? '2' : '', '">
  1686. <td>', $txt['alert_' . $alert_id], isset($alert_details['help']) ? '<a href="' . $scripturl . '?action=helpadmin;help=' . $alert_details['help'] . '" onclick="return reqOverlayDiv(this.href);" class="help floatright"><img src="' . $settings['images_url'] . '/helptopics.png" alt="' . $txt['help'] . '" title="' . $txt['help'] . '">' : '', '</td>';
  1687. foreach ($context['alert_bits'] as $type => $bitmask)
  1688. {
  1689. echo '
  1690. <td class="centercol">';
  1691. $this_value = isset($context['alert_prefs'][$alert_id]) ? $context['alert_prefs'][$alert_id] : 0;
  1692. switch ($alert_details[$type])
  1693. {
  1694. case 'always':
  1695. echo '
  1696. <input type="checkbox" checked disabled>';
  1697. break;
  1698. case 'yes':
  1699. echo '
  1700. <input type="checkbox" name="', $type, '_', $alert_id, '"', ($this_value & $bitmask) ? ' checked' : '', '>';
  1701. break;
  1702. case 'never':
  1703. echo '
  1704. <input type="checkbox" disabled>';
  1705. break;
  1706. }
  1707. echo '
  1708. </td>';
  1709. }
  1710. echo '
  1711. </tr>';
  1712. $use_bg2 = !$use_bg2;
  1713. }
  1714. }
  1715. echo '
  1716. </table>
  1717. <br>
  1718. <div>
  1719. <input id="notify_submit" type="submit" name="notify_submit" value="', $txt['notify_save'], '" class="button_submit">
  1720. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">', !empty($context['token_check']) ? '
  1721. <input type="hidden" name="' . $context[$context['token_check'] . '_token_var'] . '" value="' . $context[$context['token_check'] . '_token'] . '">' : '', '
  1722. <input type="hidden" name="u" value="', $context['id_member'], '">
  1723. <input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
  1724. </div>
  1725. </form>
  1726. <br>';
  1727. }
  1728. function template_alert_notifications_topics()
  1729. {
  1730. global $txt;
  1731. // The main containing header.
  1732. echo '
  1733. <div class="cat_bar">
  1734. <h3 class="catbg">
  1735. ', $txt['watched_topics'], '
  1736. </h3>
  1737. </div>
  1738. <p class="description">', $txt['watched_topics_desc'], '</p>
  1739. <br>';
  1740. template_show_list('topic_notification_list');
  1741. }
  1742. function template_alert_notifications_boards()
  1743. {
  1744. global $txt;
  1745. echo '
  1746. <div class="cat_bar">
  1747. <h3 class="catbg">
  1748. ', $txt['watched_boards'], '
  1749. </h3>
  1750. </div>
  1751. <p class="description">', $txt['watched_boards_desc'], '</p>
  1752. <br>';
  1753. template_show_list('board_notification_list');
  1754. }
  1755. // Template for choosing group membership.
  1756. function template_groupMembership()
  1757. {
  1758. global $context, $settings, $scripturl, $modSettings, $txt;
  1759. // The main containing header.
  1760. echo '
  1761. <form action="', $scripturl, '?action=profile;area=groupmembership;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator">
  1762. <div class="cat_bar">
  1763. <h3 class="catbg">
  1764. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">', $txt['profile'], '
  1765. </h3>
  1766. </div>
  1767. <p class="description">', $txt['groupMembership_info'], '</p>';
  1768. // Do we have an update message?
  1769. if (!empty($context['update_message']))
  1770. echo '
  1771. <div class="infobox">
  1772. ', $context['update_message'], '.
  1773. </div>';
  1774. // Requesting membership to a group?
  1775. if (!empty($context['group_request']))
  1776. {
  1777. echo '
  1778. <div class="groupmembership">
  1779. <div class="cat_bar">
  1780. <h3 class="catbg">', $txt['request_group_membership'], '</h3>
  1781. </div>
  1782. <div class="roundframe">
  1783. ', $txt['request_group_membership_desc'], ':
  1784. <textarea name="reason" rows="4" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 99%; min-width: 99%' : 'width: 99%') . ';"></textarea>
  1785. <div class="righttext" style="margin: 0.5em 0.5% 0 0.5%;">
  1786. <input type="hidden" name="gid" value="', $context['group_request']['id'], '">
  1787. <input type="submit" name="req" value="', $txt['submit_request'], '" class="button_submit">
  1788. </div>
  1789. </div>
  1790. </div>';
  1791. }
  1792. else
  1793. {
  1794. echo '
  1795. <table border="0" cellspacing="0" cellpadding="4" class="table_grid">
  1796. <thead>
  1797. <tr class="catbg">
  1798. <th class="first_th" scope="col" ', $context['can_edit_primary'] ? ' colspan="2"' : '', '>', $txt['current_membergroups'], '</th>
  1799. <th class="last_th" scope="col"></th>
  1800. </tr>
  1801. </thead>
  1802. <tbody>';
  1803. $alternate = true;
  1804. foreach ($context['groups']['member'] as $group)
  1805. {
  1806. echo '
  1807. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '" id="primdiv_', $group['id'], '">';
  1808. if ($context['can_edit_primary'])
  1809. echo '
  1810. <td width="4%">
  1811. <input type="radio" name="primary" id="primary_', $group['id'], '" value="', $group['id'], '"', $group['is_primary'] ? ' checked' : '', ' onclick="highlightSelected(\'primdiv_' . $group['id'] . '\');"', $group['can_be_primary'] ? '' : ' disabled', ' class="input_radio">
  1812. </td>';
  1813. echo '
  1814. <td>
  1815. <label for="primary_', $group['id'], '"><strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '</label>
  1816. </td>
  1817. <td width="15%" class="righttext">';
  1818. // Can they leave their group?
  1819. if ($group['can_leave'])
  1820. echo '
  1821. <a href="' . $scripturl . '?action=profile;save;u=' . $context['id_member'] . ';area=groupmembership;' . $context['session_var'] . '=' . $context['session_id'] . ';gid=' . $group['id'] . ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '">' . $txt['leave_group'] . '</a>';
  1822. echo '
  1823. </td>
  1824. </tr>';
  1825. $alternate = !$alternate;
  1826. }
  1827. echo '
  1828. </tbody>
  1829. </table>';
  1830. if ($context['can_edit_primary'])
  1831. echo '
  1832. <div class="padding righttext">
  1833. <input type="submit" value="', $txt['make_primary'], '" class="button_submit">
  1834. </div>';
  1835. // Any groups they can join?
  1836. if (!empty($context['groups']['available']))
  1837. {
  1838. echo '
  1839. <br>
  1840. <table border="0" cellspacing="0" cellpadding="4" class="table_grid">
  1841. <thead>
  1842. <tr class="catbg">
  1843. <th class="first_th" scope="col">
  1844. ', $txt['available_groups'], '
  1845. </th>
  1846. <th class="last_th" scope="col"></th>
  1847. </tr>
  1848. </thead>
  1849. <tbody>';
  1850. $alternate = true;
  1851. foreach ($context['groups']['available'] as $group)
  1852. {
  1853. echo '
  1854. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '">
  1855. <td>
  1856. <strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '
  1857. </td>
  1858. <td width="15%" class="lefttext">';
  1859. if ($group['type'] == 3)
  1860. echo '
  1861. <a href="', $scripturl, '?action=profile;save;u=', $context['id_member'], ';area=groupmembership;', $context['session_var'], '=', $context['session_id'], ';gid=', $group['id'], ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '">', $txt['join_group'], '</a>';
  1862. elseif ($group['type'] == 2 && $group['pending'])
  1863. echo '
  1864. ', $txt['approval_pending'];
  1865. elseif ($group['type'] == 2)
  1866. echo '
  1867. <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=groupmembership;request=', $group['id'], '">', $txt['request_group'], '</a>';
  1868. // <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  1869. echo '
  1870. </td>
  1871. </tr>';
  1872. $alternate = !$alternate;
  1873. }
  1874. echo '
  1875. </tbody>
  1876. </table>';
  1877. }
  1878. // Javascript for the selector stuff.
  1879. echo '
  1880. <script><!-- // --><![CDATA[
  1881. var prevClass = "";
  1882. var prevDiv = "";
  1883. function highlightSelected(box)
  1884. {
  1885. if (prevClass != "")
  1886. {
  1887. prevDiv.className = prevClass;
  1888. }
  1889. prevDiv = document.getElementById(box);
  1890. prevClass = prevDiv.className;
  1891. prevDiv.className = "highlight2";
  1892. }';
  1893. if (isset($context['groups']['member'][$context['primary_group']]))
  1894. echo '
  1895. highlightSelected("primdiv_' . $context['primary_group'] . '");';
  1896. echo '
  1897. // ]]></script>';
  1898. }
  1899. if (!empty($context['token_check']))
  1900. echo '
  1901. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  1902. echo '
  1903. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  1904. <input type="hidden" name="u" value="', $context['id_member'], '">
  1905. </form>';
  1906. }
  1907. function template_ignoreboards()
  1908. {
  1909. global $context, $txt, $settings, $scripturl;
  1910. // The main containing header.
  1911. echo '
  1912. <form action="', $scripturl, '?action=profile;area=ignoreboards;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator">
  1913. <div class="cat_bar">
  1914. <h3 class="catbg">
  1915. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">', $txt['profile'], '
  1916. </h3>
  1917. </div>
  1918. <p class="description">', $txt['ignoreboards_info'], '</p>
  1919. <div class="windowbg2">
  1920. <div class="content flow_hidden">
  1921. <ul class="ignoreboards floatleft">';
  1922. $i = 0;
  1923. $limit = ceil($context['num_boards'] / 2);
  1924. foreach ($context['categories'] as $category)
  1925. {
  1926. if ($i == $limit)
  1927. {
  1928. echo '
  1929. </ul>
  1930. <ul class="ignoreboards floatright">';
  1931. $i++;
  1932. }
  1933. echo '
  1934. <li class="category">
  1935. <a href="javascript:void(0);" onclick="selectBoards([', implode(', ', $category['child_ids']), '], \'creator\'); return false;">', $category['name'], '</a>
  1936. <ul>';
  1937. foreach ($category['boards'] as $board)
  1938. {
  1939. if ($i == $limit)
  1940. echo '
  1941. </ul>
  1942. </li>
  1943. </ul>
  1944. <ul class="ignoreboards floatright">
  1945. <li class="category">
  1946. <ul>';
  1947. echo '
  1948. <li class="board" style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;">
  1949. <label for="ignore_brd', $board['id'], '"><input type="checkbox" id="ignore_brd', $board['id'], '" name="ignore_brd[', $board['id'], ']" value="', $board['id'], '"', $board['selected'] ? ' checked' : '', ' class="input_check"> ', $board['name'], '</label>
  1950. </li>';
  1951. $i++;
  1952. }
  1953. echo '
  1954. </ul>
  1955. </li>';
  1956. }
  1957. echo '
  1958. </ul>';
  1959. // Show the standard "Save Settings" profile button.
  1960. template_profile_save();
  1961. echo '
  1962. </div>
  1963. </div>
  1964. </form>
  1965. <br>';
  1966. }
  1967. // Simple load some theme variables common to several warning templates.
  1968. function template_load_warning_variables()
  1969. {
  1970. global $modSettings, $context;
  1971. $context['warningBarWidth'] = 200;
  1972. // Setup the colors - this is a little messy for theming.
  1973. $context['colors'] = array(
  1974. 0 => 'green',
  1975. $modSettings['warning_watch'] => 'darkgreen',
  1976. $modSettings['warning_moderate'] => 'orange',
  1977. $modSettings['warning_mute'] => 'red',
  1978. );
  1979. // Work out the starting color.
  1980. $context['current_color'] = $context['colors'][0];
  1981. foreach ($context['colors'] as $limit => $color)
  1982. if ($context['member']['warning'] >= $limit)
  1983. $context['current_color'] = $color;
  1984. }
  1985. // Show all warnings of a user?
  1986. function template_viewWarning()
  1987. {
  1988. global $context, $txt, $scripturl, $settings;
  1989. template_load_warning_variables();
  1990. echo '
  1991. <div class="cat_bar">
  1992. <h3 class="catbg">
  1993. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">
  1994. ', sprintf($txt['profile_viewwarning_for_user'], $context['member']['name']), '
  1995. </h3>
  1996. </div>
  1997. <p class="description">', $txt['viewWarning_help'], '</p>
  1998. <div class="windowbg">
  1999. <div class="content">
  2000. <dl class="settings">
  2001. <dt>
  2002. <strong>', $txt['profile_warning_name'], ':</strong>
  2003. </dt>
  2004. <dd>
  2005. ', $context['member']['name'], '
  2006. </dd>
  2007. <dt>
  2008. <strong>', $txt['profile_warning_level'], ':</strong>
  2009. </dt>
  2010. <dd>
  2011. <div>
  2012. <div>
  2013. <div style="font-size: 8pt; height: 12pt; width: ', $context['warningBarWidth'], 'px; border: 1px solid black; background-color: white; padding: 1px; position: relative;">
  2014. <div id="warning_text" style="padding-top: 1pt; width: 100%; z-index: 2; color: black; position: absolute; text-align: center; font-weight: bold;">', $context['member']['warning'], '%</div>
  2015. <div id="warning_progress" style="width: ', $context['member']['warning'], '%; height: 12pt; z-index: 1; background-color: ', $context['current_color'], ';">&nbsp;</div>
  2016. </div>
  2017. </div>
  2018. </div>
  2019. </dd>';
  2020. // There's some impact of this?
  2021. if (!empty($context['level_effects'][$context['current_level']]))
  2022. echo '
  2023. <dt>
  2024. <strong>', $txt['profile_viewwarning_impact'], ':</strong>
  2025. </dt>
  2026. <dd>
  2027. ', $context['level_effects'][$context['current_level']], '
  2028. </dd>';
  2029. echo '
  2030. </dl>
  2031. </div>
  2032. </div>';
  2033. template_show_list('view_warnings');
  2034. }
  2035. // Show a lovely interface for issuing warnings.
  2036. function template_issueWarning()
  2037. {
  2038. global $context, $settings, $scripturl, $modSettings, $txt;
  2039. template_load_warning_variables();
  2040. echo '
  2041. <script><!-- // --><![CDATA[
  2042. function setWarningBarPos(curEvent, isMove, changeAmount)
  2043. {
  2044. barWidth = ', $context['warningBarWidth'], ';
  2045. // Are we passing the amount to change it by?
  2046. if (changeAmount)
  2047. {
  2048. if (document.getElementById(\'warning_level\').value == \'SAME\')
  2049. percent = ', $context['member']['warning'], ' + changeAmount;
  2050. else
  2051. percent = parseInt(document.getElementById(\'warning_level\').value) + changeAmount;
  2052. }
  2053. // If not then it\'s a mouse thing.
  2054. else
  2055. {
  2056. if (!curEvent)
  2057. var curEvent = window.event;
  2058. // If it\'s a movement check the button state first!
  2059. if (isMove)
  2060. {
  2061. if (!curEvent.button || curEvent.button != 1)
  2062. return false
  2063. }
  2064. // Get the position of the container.
  2065. contain = document.getElementById(\'warning_contain\');
  2066. position = 0;
  2067. while (contain != null)
  2068. {
  2069. position += contain.offsetLeft;
  2070. contain = contain.offsetParent;
  2071. }
  2072. // Where is the mouse?
  2073. if (curEvent.pageX)
  2074. {
  2075. mouse = curEvent.pageX;
  2076. }
  2077. else
  2078. {
  2079. mouse = curEvent.clientX;
  2080. mouse += document.documentElement.scrollLeft != "undefined" ? document.documentElement.scrollLeft : document.body.scrollLeft;
  2081. }
  2082. // Is this within bounds?
  2083. if (mouse < position || mouse > position + barWidth)
  2084. return;
  2085. percent = Math.round(((mouse - position) / barWidth) * 100);
  2086. // Round percent to the nearest 5 - by kinda cheating!
  2087. percent = Math.round(percent / 5) * 5;
  2088. }
  2089. // What are the limits?
  2090. minLimit = ', $context['min_allowed'], ';
  2091. maxLimit = ', $context['max_allowed'], ';
  2092. percent = Math.max(percent, minLimit);
  2093. percent = Math.min(percent, maxLimit);
  2094. size = barWidth * (percent/100);
  2095. setInnerHTML(document.getElementById(\'warning_text\'), percent + "%");
  2096. document.getElementById(\'warning_text\').innerHTML = percent + "%";
  2097. document.getElementById(\'warning_level\').value = percent;
  2098. document.getElementById(\'warning_progress\').style.width = size + "px";
  2099. // Get the right color.
  2100. color = "black"';
  2101. foreach ($context['colors'] as $limit => $color)
  2102. echo '
  2103. if (percent >= ', $limit, ')
  2104. color = "', $color, '";';
  2105. echo '
  2106. document.getElementById(\'warning_progress\').style.backgroundColor = color;
  2107. // Also set the right effect.
  2108. effectText = "";';
  2109. foreach ($context['level_effects'] as $limit => $text)
  2110. echo '
  2111. if (percent >= ', $limit, ')
  2112. effectText = "', $text, '";';
  2113. echo '
  2114. setInnerHTML(document.getElementById(\'cur_level_div\'), effectText);
  2115. }
  2116. // Disable notification boxes as required.
  2117. function modifyWarnNotify()
  2118. {
  2119. disable = !document.getElementById(\'warn_notify\').checked;
  2120. document.getElementById(\'warn_sub\').disabled = disable;
  2121. document.getElementById(\'warn_body\').disabled = disable;
  2122. document.getElementById(\'warn_temp\').disabled = disable;
  2123. document.getElementById(\'new_template_link\').style.display = disable ? \'none\' : \'\';
  2124. document.getElementById(\'preview_button\').style.display = disable ? \'none\' : \'\';
  2125. }
  2126. function changeWarnLevel(amount)
  2127. {
  2128. setWarningBarPos(false, false, amount);
  2129. }
  2130. // Warn template.
  2131. function populateNotifyTemplate()
  2132. {
  2133. index = document.getElementById(\'warn_temp\').value;
  2134. if (index == -1)
  2135. return false;
  2136. // Otherwise see what we can do...';
  2137. foreach ($context['notification_templates'] as $k => $type)
  2138. echo '
  2139. if (index == ', $k, ')
  2140. document.getElementById(\'warn_body\').value = "', strtr($type['body'], array('"' => "'", "\n" => '\\n', "\r" => '')), '";';
  2141. echo '
  2142. }
  2143. // ]]></script>';
  2144. echo '
  2145. <form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=issuewarning" method="post" class="flow_hidden" accept-charset="', $context['character_set'], '">
  2146. <div class="cat_bar">
  2147. <h3 class="catbg">
  2148. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">
  2149. ', $context['user']['is_owner'] ? $txt['profile_warning_level'] : $txt['profile_issue_warning'], '
  2150. </h3>
  2151. </div>';
  2152. if (!$context['user']['is_owner'])
  2153. echo '
  2154. <p class="description">', $txt['profile_warning_desc'], '</p>';
  2155. echo '
  2156. <div class="windowbg">
  2157. <div class="content">
  2158. <dl class="settings">';
  2159. if (!$context['user']['is_owner'])
  2160. echo '
  2161. <dt>
  2162. <strong>', $txt['profile_warning_name'], ':</strong>
  2163. </dt>
  2164. <dd>
  2165. <strong>', $context['member']['name'], '</strong>
  2166. </dd>';
  2167. echo '
  2168. <dt>
  2169. <strong>', $txt['profile_warning_level'], ':</strong>';
  2170. // Is there only so much they can apply?
  2171. if ($context['warning_limit'])
  2172. echo '
  2173. <br><span class="smalltext">', sprintf($txt['profile_warning_limit_attribute'], $context['warning_limit']), '</span>';
  2174. echo '
  2175. </dt>
  2176. <dd>
  2177. <div id="warndiv1" style="display: none;">
  2178. <div>
  2179. <span class="floatleft" style="padding: 0 0.5em"><a href="#" onclick="changeWarnLevel(-5); return false;">[-]</a></span>
  2180. <div class="floatleft" id="warning_contain" style="font-size: 8pt; height: 12pt; width: ', $context['warningBarWidth'], 'px; border: 1px solid black; background-color: white; padding: 1px; position: relative;" onmousedown="setWarningBarPos(event, true);" onmousemove="setWarningBarPos(event, true);" onclick="setWarningBarPos(event);">
  2181. <div id="warning_text" style="padding-top: 1pt; width: 100%; z-index: 2; color: black; position: absolute; text-align: center; font-weight: bold;">', $context['member']['warning'], '%</div>
  2182. <div id="warning_progress" style="width: ', $context['member']['warning'], '%; height: 12pt; z-index: 1; background-color: ', $context['current_color'], ';">&nbsp;</div>
  2183. </div>
  2184. <span class="floatleft" style="padding: 0 0.5em"><a href="#" onclick="changeWarnLevel(5); return false;">[+]</a></span>
  2185. <div class="clear_left smalltext">', $txt['profile_warning_impact'], ': <span id="cur_level_div">', $context['level_effects'][$context['current_level']], '</span></div>
  2186. </div>
  2187. <input type="hidden" name="warning_level" id="warning_level" value="SAME">
  2188. </div>
  2189. <div id="warndiv2">
  2190. <input type="text" name="warning_level_nojs" size="6" maxlength="4" value="', $context['member']['warning'], '" class="input_text">&nbsp;', $txt['profile_warning_max'], '
  2191. <div class="smalltext">', $txt['profile_warning_impact'], ':<br>';
  2192. // For non-javascript give a better list.
  2193. foreach ($context['level_effects'] as $limit => $effect)
  2194. echo '
  2195. ', sprintf($txt['profile_warning_effect_text'], $limit, $effect), '<br>';
  2196. echo '
  2197. </div>
  2198. </div>
  2199. </dd>';
  2200. if (!$context['user']['is_owner'])
  2201. {
  2202. echo '
  2203. <dt>
  2204. <strong>', $txt['profile_warning_reason'], ':</strong><br>
  2205. <span class="smalltext">', $txt['profile_warning_reason_desc'], '</span>
  2206. </dt>
  2207. <dd>
  2208. <input type="text" name="warn_reason" id="warn_reason" value="', $context['warning_data']['reason'], '" size="50" style="width: 80%;" class="input_text">
  2209. </dd>
  2210. </dl>
  2211. <hr>
  2212. <div id="box_preview"', !empty($context['warning_data']['body_preview']) ? '' : ' style="display:none"', '>
  2213. <dl class="settings">
  2214. <dt>
  2215. <strong>', $txt['preview'] , '</strong>
  2216. </dt>
  2217. <dd id="body_preview">
  2218. ', !empty($context['warning_data']['body_preview']) ? $context['warning_data']['body_preview'] : '', '
  2219. </dd>
  2220. </dl>
  2221. <hr>
  2222. </div>
  2223. <dl class="settings">
  2224. <dt>
  2225. <strong><label for="warn_notify">', $txt['profile_warning_notify'], ':</label></strong>
  2226. </dt>
  2227. <dd>
  2228. <input type="checkbox" name="warn_notify" id="warn_notify" onclick="modifyWarnNotify();"', $context['warning_data']['notify'] ? ' checked' : '', ' class="input_check">
  2229. </dd>
  2230. <dt>
  2231. <strong><label for="warn_sub">', $txt['profile_warning_notify_subject'], ':</label></strong>
  2232. </dt>
  2233. <dd>
  2234. <input type="text" name="warn_sub" id="warn_sub" value="', empty($context['warning_data']['notify_subject']) ? $txt['profile_warning_notify_template_subject'] : $context['warning_data']['notify_subject'], '" size="50" style="width: 80%;" class="input_text">
  2235. </dd>
  2236. <dt>
  2237. <strong><label for="warn_temp">', $txt['profile_warning_notify_body'], ':</label></strong>
  2238. </dt>
  2239. <dd>
  2240. <select name="warn_temp" id="warn_temp" disabled onchange="populateNotifyTemplate();" style="font-size: x-small;">
  2241. <option value="-1">', $txt['profile_warning_notify_template'], '</option>
  2242. <option value="-1">------------------------------</option>';
  2243. foreach ($context['notification_templates'] as $id_template => $template)
  2244. echo '
  2245. <option value="', $id_template, '">', $template['title'], '</option>';
  2246. echo '
  2247. </select>
  2248. <span class="smalltext" id="new_template_link" style="display: none;">[<a href="', $scripturl, '?action=moderate;area=warnings;sa=templateedit;tid=0" target="_blank" class="new_win">', $txt['profile_warning_new_template'], '</a>]</span><br>
  2249. <textarea name="warn_body" id="warn_body" cols="40" rows="8" style="min-width: 50%; max-width: 99%;">', $context['warning_data']['notify_body'], '</textarea>
  2250. </dd>';
  2251. }
  2252. echo '
  2253. </dl>
  2254. <div class="righttext">';
  2255. if (!empty($context['token_check']))
  2256. echo '
  2257. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  2258. echo '
  2259. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  2260. <input type="button" name="preview" id="preview_button" value="', $txt['preview'], '" class="button_submit">
  2261. <input type="submit" name="save" value="', $context['user']['is_owner'] ? $txt['change_profile'] : $txt['profile_warning_issue'], '" class="button_submit">
  2262. </div>
  2263. </div>
  2264. </div>
  2265. </form>';
  2266. // Previous warnings?
  2267. template_show_list('view_warnings');
  2268. // Do our best to get pretty javascript enabled.
  2269. echo '
  2270. <script><!-- // --><![CDATA[
  2271. document.getElementById(\'warndiv1\').style.display = "";
  2272. document.getElementById(\'preview_button\').style.display = "none";
  2273. document.getElementById(\'warndiv2\').style.display = "none";';
  2274. if (!$context['user']['is_owner'])
  2275. echo '
  2276. modifyWarnNotify();
  2277. $(document).ready(function() {
  2278. $("#preview_button").click(function() {
  2279. return ajax_getTemplatePreview();
  2280. });
  2281. });
  2282. function ajax_getTemplatePreview ()
  2283. {
  2284. $.ajax({
  2285. type: "POST",
  2286. url: "' . $scripturl . '?action=xmlhttp;sa=previews;xml",
  2287. data: {item: "warning_preview", title: $("#warn_sub").val(), body: $("#warn_body").val(), issuing: true},
  2288. context: document.body,
  2289. success: function(request){
  2290. $("#box_preview").css({display:""});
  2291. $("#body_preview").html($(request).find(\'body\').text());
  2292. if ($(request).find("error").text() != \'\')
  2293. {
  2294. $("#profile_error").css({display:""});
  2295. var errors_html = \'<ul class="list_errors" class="reset">\';
  2296. var errors = $(request).find(\'error\').each(function() {
  2297. errors_html += \'<li>\' + $(this).text() + \'</li>\';
  2298. });
  2299. errors_html += \'</ul>\';
  2300. $("#profile_error").html(errors_html);
  2301. }
  2302. else
  2303. {
  2304. $("#profile_error").css({display:"none"});
  2305. $("#error_list").html(\'\');
  2306. }
  2307. return false;
  2308. },
  2309. });
  2310. return false;
  2311. }';
  2312. echo '
  2313. // ]]></script>';
  2314. }
  2315. // Template to show for deleting a users account - now with added delete post capability!
  2316. function template_deleteAccount()
  2317. {
  2318. global $context, $settings, $scripturl, $txt;
  2319. // The main containing header.
  2320. echo '
  2321. <form action="', $scripturl, '?action=profile;area=deleteaccount;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator">
  2322. <div class="cat_bar">
  2323. <h3 class="catbg">
  2324. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">', $txt['deleteAccount'], '
  2325. </h3>
  2326. </div>';
  2327. // If deleting another account give them a lovely info box.
  2328. if (!$context['user']['is_owner'])
  2329. echo '
  2330. <p class="information">', $txt['deleteAccount_desc'], '</p>';
  2331. echo '
  2332. <div class="windowbg2">
  2333. <div class="content">';
  2334. // If they are deleting their account AND the admin needs to approve it - give them another piece of info ;)
  2335. if ($context['needs_approval'])
  2336. echo '
  2337. <div class="errorbox">', $txt['deleteAccount_approval'], '</div>';
  2338. // If the user is deleting their own account warn them first - and require a password!
  2339. if ($context['user']['is_owner'])
  2340. {
  2341. echo '
  2342. <div class="alert">', $txt['own_profile_confirm'], '</div>
  2343. <div>
  2344. <strong', (isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : ''), '>', $txt['current_password'], ': </strong>
  2345. <input type="password" name="oldpasswrd" size="20" class="input_password">&nbsp;&nbsp;&nbsp;&nbsp;
  2346. <input type="submit" value="', $txt['yes'], '" class="button_submit">';
  2347. if (!empty($context['token_check']))
  2348. echo '
  2349. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  2350. echo '
  2351. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  2352. <input type="hidden" name="u" value="', $context['id_member'], '">
  2353. <input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
  2354. </div>';
  2355. }
  2356. // Otherwise an admin doesn't need to enter a password - but they still get a warning - plus the option to delete lovely posts!
  2357. else
  2358. {
  2359. echo '
  2360. <div class="alert">', $txt['deleteAccount_warning'], '</div>';
  2361. // Only actually give these options if they are kind of important.
  2362. if ($context['can_delete_posts'])
  2363. echo '
  2364. <div>
  2365. <label for="deletePosts"><input type="checkbox" name="deletePosts" id="deletePosts" value="1" class="input_check"> ', $txt['deleteAccount_posts'], ':</label>
  2366. <select name="remove_type">
  2367. <option value="posts">', $txt['deleteAccount_all_posts'], '</option>
  2368. <option value="topics">', $txt['deleteAccount_topics'], '</option>
  2369. </select>
  2370. </div>';
  2371. echo '
  2372. <div>
  2373. <label for="deleteAccount"><input type="checkbox" name="deleteAccount" id="deleteAccount" value="1" class="input_check" onclick="if (this.checked) return confirm(\'', $txt['deleteAccount_confirm'], '\');"> ', $txt['deleteAccount_member'], '.</label>
  2374. </div>
  2375. <div>
  2376. <input type="submit" value="', $txt['delete'], '" class="button_submit">';
  2377. if (!empty($context['token_check']))
  2378. echo '
  2379. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  2380. echo '
  2381. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  2382. <input type="hidden" name="u" value="', $context['id_member'], '">
  2383. <input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
  2384. </div>';
  2385. }
  2386. echo '
  2387. </div>
  2388. </div>
  2389. <br>
  2390. </form>';
  2391. }
  2392. // Template for the password box/save button stuck at the bottom of every profile page.
  2393. function template_profile_save()
  2394. {
  2395. global $context, $txt;
  2396. echo '
  2397. <hr width="100%" size="1" class="hrcolor clear">';
  2398. // Only show the password box if it's actually needed.
  2399. if ($context['require_password'])
  2400. echo '
  2401. <dl>
  2402. <dt>
  2403. <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '>', $txt['current_password'], ': </strong><br>
  2404. <span class="smalltext">', $txt['required_security_reasons'], '</span>
  2405. </dt>
  2406. <dd>
  2407. <input type="password" name="oldpasswrd" size="20" style="margin-right: 4ex;" class="input_password">
  2408. </dd>
  2409. </dl>';
  2410. echo '
  2411. <div class="righttext">';
  2412. if (!empty($context['token_check']))
  2413. echo '
  2414. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  2415. echo '
  2416. <input type="submit" value="', $txt['change_profile'], '" class="button_submit">
  2417. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  2418. <input type="hidden" name="u" value="', $context['id_member'], '">
  2419. <input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
  2420. </div>';
  2421. }
  2422. // Small template for showing an error message upon a save problem in the profile.
  2423. function template_error_message()
  2424. {
  2425. global $context, $txt;
  2426. echo '
  2427. <div class="errorbox" ', empty($context['post_errors']) ? 'style="display:none" ' : '', 'id="profile_error">';
  2428. if (!empty($context['post_errors']))
  2429. {
  2430. echo '
  2431. <span>', !empty($context['custom_error_title']) ? $context['custom_error_title'] : $txt['profile_errors_occurred'], ':</span>
  2432. <ul id="list_errors">';
  2433. // Cycle through each error and display an error message.
  2434. foreach ($context['post_errors'] as $error)
  2435. echo '
  2436. <li>', isset($txt['profile_error_' . $error]) ? $txt['profile_error_' . $error] : $error, '</li>';
  2437. echo '
  2438. </ul>';
  2439. }
  2440. echo '
  2441. </div>';
  2442. }
  2443. // Display a load of drop down selectors for allowing the user to change group.
  2444. function template_profile_group_manage()
  2445. {
  2446. global $context, $txt, $scripturl;
  2447. echo '
  2448. <dt>
  2449. <strong>', $txt['primary_membergroup'], ': </strong><br>
  2450. <span class="smalltext">[<a href="', $scripturl, '?action=helpadmin;help=moderator_why_missing" onclick="return reqOverlayDiv(this.href);">', $txt['moderator_why_missing'], '</a>]</span>
  2451. </dt>
  2452. <dd>
  2453. <select name="id_group" ', ($context['user']['is_owner'] && $context['member']['group_id'] == 1 ? 'onchange="if (this.value != 1 &amp;&amp; !confirm(\'' . $txt['deadmin_confirm'] . '\')) this.value = 1;"' : ''), '>';
  2454. // Fill the select box with all primary member groups that can be assigned to a member.
  2455. foreach ($context['member_groups'] as $member_group)
  2456. if (!empty($member_group['can_be_primary']))
  2457. echo '
  2458. <option value="', $member_group['id'], '"', $member_group['is_primary'] ? ' selected' : '', '>
  2459. ', $member_group['name'], '
  2460. </option>';
  2461. echo '
  2462. </select>
  2463. </dd>
  2464. <dt>
  2465. <strong>', $txt['additional_membergroups'], ':</strong>
  2466. </dt>
  2467. <dd>
  2468. <span id="additional_groupsList">
  2469. <input type="hidden" name="additional_groups[]" value="0">';
  2470. // For each membergroup show a checkbox so members can be assigned to more than one group.
  2471. foreach ($context['member_groups'] as $member_group)
  2472. if ($member_group['can_be_additional'])
  2473. echo '
  2474. <label for="additional_groups-', $member_group['id'], '"><input type="checkbox" name="additional_groups[]" value="', $member_group['id'], '" id="additional_groups-', $member_group['id'], '"', $member_group['is_additional'] ? ' checked' : '', ' class="input_check"> ', $member_group['name'], '</label><br>';
  2475. echo '
  2476. </span>
  2477. <a href="javascript:void(0);" onclick="document.getElementById(\'additional_groupsList\').style.display = \'block\'; document.getElementById(\'additional_groupsLink\').style.display = \'none\'; return false;" id="additional_groupsLink" style="display: none;">', $txt['additional_membergroups_show'], '</a>
  2478. <script><!-- // --><![CDATA[
  2479. document.getElementById("additional_groupsList").style.display = "none";
  2480. document.getElementById("additional_groupsLink").style.display = "";
  2481. // ]]></script>
  2482. </dd>';
  2483. }
  2484. // Callback function for entering a birthdate!
  2485. function template_profile_birthdate()
  2486. {
  2487. global $txt, $context;
  2488. // Just show the pretty box!
  2489. echo '
  2490. <dt>
  2491. <strong>', $txt['dob'], ':</strong><br>
  2492. <span class="smalltext">', $txt['dob_year'], ' - ', $txt['dob_month'], ' - ', $txt['dob_day'], '</span>
  2493. </dt>
  2494. <dd>
  2495. <input type="text" name="bday3" size="4" maxlength="4" value="', $context['member']['birth_date']['year'], '" class="input_text"> -
  2496. <input type="text" name="bday1" size="2" maxlength="2" value="', $context['member']['birth_date']['month'], '" class="input_text"> -
  2497. <input type="text" name="bday2" size="2" maxlength="2" value="', $context['member']['birth_date']['day'], '" class="input_text">
  2498. </dd>';
  2499. }
  2500. // Show the signature editing box?
  2501. function template_profile_signature_modify()
  2502. {
  2503. global $txt, $context, $settings, $scripturl;
  2504. echo '
  2505. <dt id="current_signature" style="display:none">
  2506. <strong>', $txt['current_signature'], ':</strong>
  2507. </dt>
  2508. <dd id="current_signature_display" style="display:none">
  2509. <hr>
  2510. </dd>';
  2511. echo '
  2512. <dt id="preview_signature" style="display:none">
  2513. <strong>', $txt['signature_preview'], ':</strong>
  2514. </dt>
  2515. <dd id="preview_signature_display" style="display:none">
  2516. <hr>
  2517. </dd>';
  2518. echo '
  2519. <dt>
  2520. <strong>', $txt['signature'], ':</strong><br>
  2521. <span class="smalltext">', $txt['sig_info'], '</span><br>
  2522. <br>';
  2523. if ($context['show_spellchecking'])
  2524. echo '
  2525. <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'creator\', \'signature\');" class="button_submit">';
  2526. echo '
  2527. </dt>
  2528. <dd>
  2529. <textarea class="editor" onkeyup="calcCharLeft();" id="signature" name="signature" rows="5" cols="50" style="min-width: 50%; max-width: 99%;">', $context['member']['signature'], '</textarea><br>';
  2530. // If there is a limit at all!
  2531. if (!empty($context['signature_limits']['max_length']))
  2532. echo '
  2533. <span class="smalltext">', sprintf($txt['max_sig_characters'], $context['signature_limits']['max_length']), ' <span id="signatureLeft">', $context['signature_limits']['max_length'], '</span></span><br>';
  2534. if (!empty($context['show_preview_button']))
  2535. echo '
  2536. <input type="submit" name="preview_signature" id="preview_button" value="', $txt['preview_signature'], '" class="button_submit">';
  2537. if ($context['signature_warning'])
  2538. echo '
  2539. <span class="smalltext">', $context['signature_warning'], '</span>';
  2540. // Load the spell checker?
  2541. if ($context['show_spellchecking'])
  2542. echo '
  2543. <script src="', $settings['default_theme_url'], '/scripts/spellcheck.js"></script>';
  2544. // Some javascript used to count how many characters have been used so far in the signature.
  2545. echo '
  2546. <script><!-- // --><![CDATA[
  2547. var maxLength = ', $context['signature_limits']['max_length'], ';
  2548. $(document).ready(function() {
  2549. calcCharLeft();
  2550. $("#preview_button").click(function() {
  2551. return ajax_getSignaturePreview(true);
  2552. });
  2553. });
  2554. // ]]></script>
  2555. </dd>';
  2556. }
  2557. function template_profile_avatar_select()
  2558. {
  2559. global $context, $txt, $modSettings;
  2560. // Start with the upper menu
  2561. echo '
  2562. <dt>
  2563. <strong id="personal_picture"><label for="avatar_upload_box">', $txt['personal_picture'], '</label></strong>
  2564. <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_none" value="none"' . ($context['member']['avatar']['choice'] == 'none' ? ' checked' : '') . ' class="input_radio"><label for="avatar_choice_none"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['no_avatar'] . '</label><br>
  2565. ', !empty($context['member']['avatar']['allow_server_stored']) ? '<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_server_stored" value="server_stored"' . ($context['member']['avatar']['choice'] == 'server_stored' ? ' checked' : '') . ' class="input_radio"><label for="avatar_choice_server_stored"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['choose_avatar_gallery'] . '</label><br>' : '', '
  2566. ', !empty($context['member']['avatar']['allow_external']) ? '<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_external" value="external"' . ($context['member']['avatar']['choice'] == 'external' ? ' checked' : '') . ' class="input_radio"><label for="avatar_choice_external"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['my_own_pic'] . '</label><br>' : '', '
  2567. ', !empty($context['member']['avatar']['allow_upload']) ? '<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_upload" value="upload"' . ($context['member']['avatar']['choice'] == 'upload' ? ' checked' : '') . ' class="input_radio"><label for="avatar_choice_upload"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['avatar_will_upload'] . '</label>' : '', '
  2568. </dt>
  2569. <dd>';
  2570. // If users are allowed to choose avatars stored on the server show selection boxes to choice them from.
  2571. if (!empty($context['member']['avatar']['allow_server_stored']))
  2572. {
  2573. echo '
  2574. <div id="avatar_server_stored">
  2575. <div>
  2576. <select name="cat" id="cat" size="10" onchange="changeSel(\'\');" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');">';
  2577. // This lists all the file catergories.
  2578. foreach ($context['avatars'] as $avatar)
  2579. echo '
  2580. <option value="', $avatar['filename'] . ($avatar['is_dir'] ? '/' : ''), '"', ($avatar['checked'] ? ' selected' : ''), '>', $avatar['name'], '</option>';
  2581. echo '
  2582. </select>
  2583. </div>
  2584. <div>
  2585. <select name="file" id="file" size="10" style="display: none;" onchange="showAvatar()" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');" disabled><option></option></select>
  2586. </div>
  2587. <div><img name="avatar" id="avatar" src="', !empty($context['member']['avatar']['allow_external']) && $context['member']['avatar']['choice'] == 'external' ? $context['member']['avatar']['external'] : $modSettings['avatar_url'] . '/blank.png', '" alt="Do Nothing"></div>
  2588. <script><!-- // --><![CDATA[
  2589. var files = ["' . implode('", "', $context['avatar_list']) . '"];
  2590. var avatar = document.getElementById("avatar");
  2591. var cat = document.getElementById("cat");
  2592. var selavatar = "' . $context['avatar_selected'] . '";
  2593. var avatardir = "' . $modSettings['avatar_url'] . '/";
  2594. var size = avatar.alt.substr(3, 2) + " " + avatar.alt.substr(0, 2) + String.fromCharCode(117, 98, 116);
  2595. var file = document.getElementById("file");
  2596. var maxHeight = ', !empty($modSettings['avatar_max_height_external']) ? $modSettings['avatar_max_height_external'] : 0, ';
  2597. var maxWidth = ', !empty($modSettings['avatar_max_width_external']) ? $modSettings['avatar_max_width_external'] : 0, ';
  2598. if (avatar.src.indexOf("blank.png") > -1)
  2599. changeSel(selavatar);
  2600. else
  2601. previewExternalAvatar(avatar.src)
  2602. // ]]></script>
  2603. </div>';
  2604. }
  2605. // If the user can link to an off server avatar, show them a box to input the address.
  2606. if (!empty($context['member']['avatar']['allow_external']))
  2607. {
  2608. echo '
  2609. <div id="avatar_external">
  2610. <div class="smalltext">', $txt['avatar_by_url'], '</div>', !empty($modSettings['avatar_action_too_large']) && $modSettings['avatar_action_too_large'] == 'option_download_and_resize' ? template_max_size('external') : '', '
  2611. <input type="text" name="userpicpersonal" size="45" value="', $context['member']['avatar']['external'], '" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'external\');" onchange="if (typeof(previewExternalAvatar) != \'undefined\') previewExternalAvatar(this.value);" class="input_text">
  2612. </div>';
  2613. }
  2614. // If the user is able to upload avatars to the server show them an upload box.
  2615. if (!empty($context['member']['avatar']['allow_upload']))
  2616. {
  2617. echo '
  2618. <div id="avatar_upload">
  2619. <input type="file" size="44" name="attachment" id="avatar_upload_box" value="" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'upload\');" class="input_file">', template_max_size('upload'), '
  2620. ', ($context['member']['avatar']['id_attach'] > 0 ? '<br><img src="' . $context['member']['avatar']['href'] . (strpos($context['member']['avatar']['href'], '?') === false ? '?' : '&amp;') . 'time=' . time() . '" alt=""><input type="hidden" name="id_attach" value="' . $context['member']['avatar']['id_attach'] . '">' : ''), '
  2621. </div>';
  2622. }
  2623. echo '
  2624. <script><!-- // --><![CDATA[
  2625. ', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "' . ($context['member']['avatar']['choice'] == 'server_stored' ? '' : 'none') . '";' : '', '
  2626. ', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "' . ($context['member']['avatar']['choice'] == 'external' ? '' : 'none') . '";' : '', '
  2627. ', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "' . ($context['member']['avatar']['choice'] == 'upload' ? '' : 'none') . '";' : '', '
  2628. function swap_avatar(type)
  2629. {
  2630. switch(type.id)
  2631. {
  2632. case "avatar_choice_server_stored":
  2633. ', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "";' : '', '
  2634. ', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
  2635. ', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
  2636. break;
  2637. case "avatar_choice_external":
  2638. ', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
  2639. ', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "";' : '', '
  2640. ', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
  2641. break;
  2642. case "avatar_choice_upload":
  2643. ', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
  2644. ', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
  2645. ', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "";' : '', '
  2646. break;
  2647. case "avatar_choice_none":
  2648. ', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
  2649. ', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
  2650. ', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
  2651. break;
  2652. }
  2653. }
  2654. // ]]></script>
  2655. </dd>';
  2656. }
  2657. // This is just a really little helper to avoid duplicating code unnecessarily
  2658. function template_max_size($type)
  2659. {
  2660. global $modSettings, $txt;
  2661. $w = !empty($modSettings['avatar_max_width_' . $type]) ? comma_format($modSettings['avatar_max_width_' . $type]) : 0;
  2662. $h = !empty($modSettings['avatar_max_height_' . $type]) ? comma_format($modSettings['avatar_max_height_' . $type]) : 0;
  2663. $suffix = (!empty($w) ? 'w' : '') . (!empty($h) ? 'h' : '');
  2664. if (empty($suffix))
  2665. return;
  2666. echo '
  2667. <div class="smalltext">', sprintf($txt['avatar_max_size_' . $suffix], $w, $h), '</div>';
  2668. }
  2669. // Callback for modifying karam.
  2670. function template_profile_karma_modify()
  2671. {
  2672. global $context, $modSettings, $txt;
  2673. echo '
  2674. <dt>
  2675. <strong>', $modSettings['karmaLabel'], '</strong>
  2676. </dt>
  2677. <dd>
  2678. ', $modSettings['karmaApplaudLabel'], ' <input type="text" name="karma_good" size="4" value="', $context['member']['karma']['good'], '" onchange="setInnerHTML(document.getElementById(\'karmaTotal\'), this.value - this.form.karma_bad.value);" style="margin-right: 2ex;" class="input_text"> ', $modSettings['karmaSmiteLabel'], ' <input type="text" name="karma_bad" size="4" value="', $context['member']['karma']['bad'], '" onchange="this.form.karma_good.onchange();" class="input_text"><br>
  2679. (', $txt['total'], ': <span id="karmaTotal">', ($context['member']['karma']['good'] - $context['member']['karma']['bad']), '</span>)
  2680. </dd>';
  2681. }
  2682. // Select the time format!
  2683. function template_profile_timeformat_modify()
  2684. {
  2685. global $context, $modSettings, $txt, $scripturl, $settings;
  2686. echo '
  2687. <dt>
  2688. <strong><label for="easyformat">', $txt['time_format'], ':</label></strong><br>
  2689. <a href="', $scripturl, '?action=helpadmin;help=time_format" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" class="floatleft"></a>
  2690. <span class="smalltext">&nbsp;<label for="time_format">', $txt['date_format'], '</label></span>
  2691. </dt>
  2692. <dd>
  2693. <select name="easyformat" id="easyformat" onchange="document.forms.creator.time_format.value = this.options[this.selectedIndex].value;" style="margin-bottom: 4px;">';
  2694. // Help the user by showing a list of common time formats.
  2695. foreach ($context['easy_timeformats'] as $time_format)
  2696. echo '
  2697. <option value="', $time_format['format'], '"', $time_format['format'] == $context['member']['time_format'] ? ' selected' : '', '>', $time_format['title'], '</option>';
  2698. echo '
  2699. </select><br>
  2700. <input type="text" name="time_format" id="time_format" value="', $context['member']['time_format'], '" size="30" class="input_text">
  2701. </dd>';
  2702. }
  2703. // Time offset?
  2704. function template_profile_timeoffset_modify()
  2705. {
  2706. global $txt, $context;
  2707. echo '
  2708. <dt>
  2709. <strong', (isset($context['modify_error']['bad_offset']) ? ' class="error"' : ''), '><label for="time_offset">', $txt['time_offset'], ':</label></strong><br>
  2710. <span class="smalltext">', $txt['personal_time_offset'], '</span>
  2711. </dt>
  2712. <dd>
  2713. <input type="text" name="time_offset" id="time_offset" size="5" maxlength="5" value="', $context['member']['time_offset'], '" class="input_text"> ', $txt['hours'], ' [<a href="javascript:void(0);" onclick="currentDate = new Date(', $context['current_forum_time_js'], '); document.getElementById(\'time_offset\').value = autoDetectTimeOffset(currentDate); return false;">', $txt['timeoffset_autodetect'], '</a>]<br>', $txt['current_time'], ': <em>', $context['current_forum_time'], '</em>
  2714. </dd>';
  2715. }
  2716. // Theme?
  2717. function template_profile_theme_pick()
  2718. {
  2719. global $txt, $context, $scripturl;
  2720. echo '
  2721. <dt>
  2722. <strong>', $txt['current_theme'], ':</strong>
  2723. </dt>
  2724. <dd>
  2725. ', $context['member']['theme']['name'], ' [<a href="', $scripturl, '?action=theme;sa=pick;u=', $context['id_member'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['change'], '</a>]
  2726. </dd>';
  2727. }
  2728. // Smiley set picker.
  2729. function template_profile_smiley_pick()
  2730. {
  2731. global $txt, $context, $modSettings, $settings;
  2732. echo '
  2733. <dt>
  2734. <strong><label for="smiley_set">', $txt['smileys_current'], ':</label></strong>
  2735. </dt>
  2736. <dd>
  2737. <select name="smiley_set" id="smiley_set" onchange="document.getElementById(\'smileypr\').src = this.selectedIndex == 0 ? \'', $settings['images_url'], '/blank.png\' : \'', $modSettings['smileys_url'], '/\' + (this.selectedIndex != 1 ? this.options[this.selectedIndex].value : \'', !empty($settings['smiley_sets_default']) ? $settings['smiley_sets_default'] : $modSettings['smiley_sets_default'], '\') + \'/smiley.gif\';">';
  2738. foreach ($context['smiley_sets'] as $set)
  2739. echo '
  2740. <option value="', $set['id'], '"', $set['selected'] ? ' selected' : '', '>', $set['name'], '</option>';
  2741. echo '
  2742. </select> <img id="smileypr" class="centericon" src="', $context['member']['smiley_set']['id'] != 'none' ? $modSettings['smileys_url'] . '/' . ($context['member']['smiley_set']['id'] != '' ? $context['member']['smiley_set']['id'] : (!empty($settings['smiley_sets_default']) ? $settings['smiley_sets_default'] : $modSettings['smiley_sets_default'])) . '/smiley.gif' : $settings['images_url'] . '/blank.png', '" alt=":)" style="padding-left: 20px;">
  2743. </dd>';
  2744. }
  2745. // Change the way you login to the forum.
  2746. function template_authentication_method()
  2747. {
  2748. global $context, $settings, $scripturl, $modSettings, $txt;
  2749. // The main header!
  2750. echo '
  2751. <script src="', $settings['default_theme_url'], '/scripts/register.js"></script>
  2752. <form action="', $scripturl, '?action=profile;area=authentication;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator" enctype="multipart/form-data">
  2753. <div class="cat_bar">
  2754. <h3 class="catbg">
  2755. <img src="', $settings['images_url'], '/icons/profile_hd.png" alt="" class="icon">', $txt['authentication'], '
  2756. </h3>
  2757. </div>
  2758. <p class="description">', $txt['change_authentication'], '</p>
  2759. <div class="windowbg2">
  2760. <div class="content">
  2761. <dl>
  2762. <dt>
  2763. <input type="radio" onclick="updateAuthMethod();" name="authenticate" value="openid" id="auth_openid"', $context['auth_method'] == 'openid' ? ' checked' : '', ' class="input_radio"><label for="auth_openid"><strong>', $txt['authenticate_openid'], '</strong></label>&nbsp;<em><a href="', $scripturl, '?action=helpadmin;help=register_openid" onclick="return reqOverlayDiv(this.href);" class="help"><img class="icon" src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '"></a></em><br>
  2764. <input type="radio" onclick="updateAuthMethod();" name="authenticate" value="passwd" id="auth_pass"', $context['auth_method'] == 'password' ? ' checked' : '', ' class="input_radio"><label for="auth_pass"><strong>', $txt['authenticate_password'], '</strong></label>
  2765. </dt>
  2766. <dd>
  2767. <dl id="auth_openid_div">
  2768. <dt>
  2769. <em>', $txt['authenticate_openid_url'], ':</em>
  2770. </dt>
  2771. <dd>
  2772. <input type="text" name="openid_identifier" id="openid_url" size="30" tabindex="', $context['tabindex']++, '" value="', $context['member']['openid_uri'], '" class="input_text openid_login">
  2773. </dd>
  2774. </dl>
  2775. <dl id="auth_pass_div">
  2776. <dt>
  2777. <em>', $txt['choose_pass'], ':</em>
  2778. </dt>
  2779. <dd>
  2780. <input type="password" name="passwrd1" id="smf_autov_pwmain" size="30" tabindex="', $context['tabindex']++, '" class="input_password">
  2781. <span id="smf_autov_pwmain_div" style="display: none;"><span id="smf_autov_pwmain_img" class="field_icons invalid centericon"></span></span>
  2782. </dd>
  2783. <dt>
  2784. <em>', $txt['verify_pass'], ':</em>
  2785. </dt>
  2786. <dd>
  2787. <input type="password" name="passwrd2" id="smf_autov_pwverify" size="30" tabindex="', $context['tabindex']++, '" class="input_password">
  2788. <span id="smf_autov_pwverify_div" style="display: none;"><span id="smf_autov_pwverify_img" class="field_icons valid"></span></span>
  2789. </dd>
  2790. </dl>
  2791. </dd>
  2792. </dl>';
  2793. if ($context['require_password'])
  2794. echo '
  2795. <hr width="100%" size="1" class="hrcolor clear">
  2796. <dl>
  2797. <dt>
  2798. <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '>', $txt['current_password'], ': </strong><br>
  2799. <span class="smalltext">', $txt['required_security_reasons'], '</span>
  2800. </dt>
  2801. <dd>
  2802. <input type="password" name="oldpasswrd" tabindex="', $context['tabindex']++, '" size="20" style="margin-right: 4ex;" class="input_password">
  2803. </dd>
  2804. </dl>';
  2805. echo '
  2806. <hr class="hrcolor">';
  2807. if (!empty($context['token_check']))
  2808. echo '
  2809. <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
  2810. echo '
  2811. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  2812. <input type="hidden" name="u" value="', $context['id_member'], '">
  2813. <input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
  2814. <input type="submit" value="', $txt['change_profile'], '" class="button_submit">
  2815. </div>
  2816. </div>
  2817. </form>';
  2818. // The password stuff.
  2819. echo '
  2820. <script><!-- // --><![CDATA[
  2821. var regTextStrings = {
  2822. "password_short": "', $txt['registration_password_short'], '",
  2823. "password_reserved": "', $txt['registration_password_reserved'], '",
  2824. "password_numbercase": "', $txt['registration_password_numbercase'], '",
  2825. "password_no_match": "', $txt['registration_password_no_match'], '",
  2826. "password_valid": "', $txt['registration_password_valid'], '"
  2827. };
  2828. var verificationHandle = new smfRegister("creator", ', empty($modSettings['password_strength']) ? 0 : $modSettings['password_strength'], ', regTextStrings);
  2829. var currentAuthMethod = \'passwd\';
  2830. updateAuthMethod();
  2831. // ]]></script>';
  2832. }
  2833. ?>