Profile.template.php 125 KB

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