123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines
- * @copyright 2011 Simple Machines
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- /**
- * This is the administration center home.
- */
- function template_admin()
- {
- global $context, $settings, $options, $scripturl, $txt, $modSettings;
- // Welcome message for the admin.
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">';
- if ($context['user']['is_admin'])
- echo '
- <object id="quick_search">
- <form action="', $scripturl, '?action=admin;area=search" method="post" accept-charset="', $context['character_set'], '" class="floatright">
- <img class="icon" src="', $settings['images_url'] , '/filter.png" alt="" />
- <input type="text" name="search_term" value="', $txt['admin_search'], '" onclick="if (this.value == \'', $txt['admin_search'], '\') this.value = \'\';" class="input_text" />
- <select name="search_type">
- <option value="internal"', (empty($context['admin_preferences']['sb']) || $context['admin_preferences']['sb'] == 'internal' ? ' selected="selected"' : ''), '>', $txt['admin_search_type_internal'], '</option>
- <option value="member"', (!empty($context['admin_preferences']['sb']) && $context['admin_preferences']['sb'] == 'member' ? ' selected="selected"' : ''), '>', $txt['admin_search_type_member'], '</option>
- <option value="online"', (!empty($context['admin_preferences']['sb']) && $context['admin_preferences']['sb'] == 'online' ? ' selected="selected"' : ''), '>', $txt['admin_search_type_online'], '</option>
- </select>
- <input type="submit" name="search_go" id="search_go" value="', $txt['admin_search_go'], '" class="button_submit" />
- </form>
- </object>';
- echo $txt['admin_center'], '
- </h3>
- </div>
- <span class="upperframe"><span></span></span>
- <div class="roundframe">
- <div id="welcome">
- <strong>', $txt['hello_guest'], ' ', $context['user']['name'], '!</strong>
- ', sprintf($txt['admin_main_welcome'], $txt['admin_center'], $txt['help'], $txt['help']), '
- </div>
- </div>
- <span class="lowerframe"><span></span></span>';
- // Is there an update available?
- echo '
- <div id="update_section"></div>';
- echo '
- <div id="admin_main_section">';
- // Display the "live news" from simplemachines.org.
- echo '
- <div id="live_news" class="floatleft">
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><a href="', $scripturl, '?action=helpadmin;help=live_news" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" class="icon" alt="', $txt['help'], '" /></a> ', $txt['live'], '</span>
- </h3>
- </div>
- <div class="windowbg nopadding">
- <span class="topslice"><span></span></span>
- <div class="content">
- <div id="smfAnnouncements">', $txt['lfyi'], '</div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>';
- // Show the user version information from their server.
- echo '
- <div id="supportVersionsTable" class="floatright">
- <div class="cat_bar">
- <h3 class="catbg">
- <a href="', $scripturl, '?action=admin;area=credits">', $txt['support_title'], '</a>
- </h3>
- </div>
- <div class="windowbg nopadding">
- <span class="topslice"><span></span></span>
- <div class="content">
- <div id="version_details">
- <strong>', $txt['support_versions'], ':</strong><br />
- ', $txt['support_versions_forum'], ':
- <em id="yourVersion" style="white-space: nowrap;">', $context['forum_version'], '</em><br />
- ', $txt['support_versions_current'], ':
- <em id="smfVersion" style="white-space: nowrap;">??</em><br />
- ', $context['can_admin'] ? '<a href="' . $scripturl . '?action=admin;area=maintain;sa=routine;activity=version">' . $txt['version_check_more'] . '</a>' : '', '<br />';
- // Display all the members who can administrate the forum.
- echo '
- <br />
- <strong>', $txt['administrators'], ':</strong>
- ', implode(', ', $context['administrators']);
- // If we have lots of admins... don't show them all.
- if (!empty($context['more_admins_link']))
- echo '
- (', $context['more_admins_link'], ')';
- echo '
- </div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>
- </div>';
- echo '
- <div class="windowbg2 clear_right">
- <span class="topslice"><span></span></span>
- <div class="content">
- <ul id="quick_tasks" class="flow_hidden">';
- foreach ($context['quick_admin_tasks'] as $task)
- echo '
- <li>
- ', !empty($task['icon']) ? '<a href="' . $task['href'] . '"><img src="' . $settings['default_images_url'] . '/admin/' . $task['icon'] . '" alt="" class="home_image" /></a>' : '', '
- <h5>', $task['link'], '</h5>
- <span class="task">', $task['description'],'</span>
- </li>';
- echo '
- </ul>
- </div>
- <span class="botslice clear"><span></span></span>
- </div>
- </div>
- <br class="clear" />';
- // The below functions include all the scripts needed from the simplemachines.org site. The language and format are passed for internationalization.
- if (empty($modSettings['disable_smf_js']))
- echo '
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=current-version.js"></script>
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=latest-news.js"></script>';
- // This sets the announcements and current versions themselves ;).
- echo '
- <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/admin.js?fin20"></script>
- <script type="text/javascript"><!-- // --><![CDATA[
- var oAdminIndex = new smf_AdminIndex({
- sSelf: \'oAdminCenter\',
- bLoadAnnouncements: true,
- sAnnouncementTemplate: ', JavaScriptEscape('
- <dl>
- %content%
- </dl>
- '), ',
- sAnnouncementMessageTemplate: ', JavaScriptEscape('
- <dt><a href="%href%">%subject%</a> ' . $txt['on'] . ' %time%</dt>
- <dd>
- %message%
- </dd>
- '), ',
- sAnnouncementContainerId: \'smfAnnouncements\',
- bLoadVersions: true,
- sSmfVersionContainerId: \'smfVersion\',
- sYourVersionContainerId: \'yourVersion\',
- sVersionOutdatedTemplate: ', JavaScriptEscape('
- <span class="alert">%currentVersion%</span>
- '), ',
- bLoadUpdateNotification: true,
- sUpdateNotificationContainerId: \'update_section\',
- sUpdateNotificationDefaultTitle: ', JavaScriptEscape($txt['update_available']), ',
- sUpdateNotificationDefaultMessage: ', JavaScriptEscape($txt['update_message']), ',
- sUpdateNotificationTemplate: ', JavaScriptEscape('
- <div class="cat_bar">
- <h3 id="update_title" class="catbg">
- %title%
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <div id="update_message" class="smalltext">
- %message%
- </div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- '), ',
- sUpdateNotificationLink: smf_scripturl + ', JavaScriptEscape('?action=admin;area=packages;pgdownload;auto;package=%package%;' . $context['session_var'] . '=' . $context['session_id']), '
- });
- // ]]></script>';
- }
- /**
- * Show some support information and credits to those who helped make this.
- */
- function template_credits()
- {
- global $context, $settings, $options, $scripturl, $txt;
- // Show the user version information from their server.
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['support_title'], '
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <strong>', $txt['support_versions'], ':</strong><br />
- ', $txt['support_versions_forum'], ':
- <em id="yourVersion" style="white-space: nowrap;">', $context['forum_version'], '</em>', $context['can_admin'] ? ' <a href="' . $scripturl . '?action=admin;area=maintain;sa=routine;activity=version">' . $txt['version_check_more'] . '</a>' : '', '<br />
- ', $txt['support_versions_current'], ':
- <em id="smfVersion" style="white-space: nowrap;">??</em><br />';
- // Display all the variables we have server information for.
- foreach ($context['current_versions'] as $version)
- {
- echo '
- ', $version['title'], ':
- <em>', $version['version'], '</em>';
-
- // more details for this item, show them a link
- if ($context['can_admin'] && isset($version['more']))
- echo
- ' <a href="', $scripturl, $version['more'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['version_check_more'], '</a>';
- echo '
- <br />';
- }
- echo '
- </div>
- <span class="botslice"><span></span></span>
- </div>
- ';
- // Point the admin to common support resources.
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['support_resources'], '
- </h3>
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <p>', $txt['support_resources_p1'], '</p>
- <p>', $txt['support_resources_p2'], '</p>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- // Display latest support questions from simplemachines.org.
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><a href="', $scripturl, '?action=helpadmin;help=latest_support" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" class="icon" alt="', $txt['help'], '" /></a> ', $txt['support_latest'], '</span>
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <div id="latestSupport">', $txt['support_latest_fetch'], '</div>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- // The most important part - the credits :P.
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['admin_credits'], '
- </h3>
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">';
- foreach ($context['credits'] as $section)
- {
- if (isset($section['pretext']))
- echo '
- <p>', $section['pretext'], '</p>';
- echo '
- <dl>';
- foreach ($section['groups'] as $group)
- {
- if (isset($group['title']))
- echo '
- <dt>
- <strong>', $group['title'], ':</strong>
- </dt>';
- echo '
- <dd>', implode(', ', $group['members']), '</dd>';
- }
- echo '
- </dl>';
- if (isset($section['posttext']))
- echo '
- <p>', $section['posttext'], '</p>';
- }
- echo '
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>
- <br class="clear" />';
- // This makes all the support information available to the support script...
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var smfSupportVersions = {};
- smfSupportVersions.forum = "', $context['forum_version'], '";';
- // Don't worry, none of this is logged, it's just used to give information that might be of use.
- foreach ($context['current_versions'] as $variable => $version)
- echo '
- smfSupportVersions.', $variable, ' = "', $version['version'], '";';
- // Now we just have to include the script and wait ;).
- echo '
- // ]]></script>
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=current-version.js"></script>
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=latest-news.js"></script>
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=latest-support.js"></script>';
- // This sets the latest support stuff.
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- function smfSetLatestSupport()
- {
- if (window.smfLatestSupport)
- setInnerHTML(document.getElementById("latestSupport"), window.smfLatestSupport);
- }
- function smfCurrentVersion()
- {
- var smfVer, yourVer;
- if (!window.smfVersion)
- return;
- smfVer = document.getElementById("smfVersion");
- yourVer = document.getElementById("yourVersion");
- setInnerHTML(smfVer, window.smfVersion);
- var currentVersion = getInnerHTML(yourVer);
- if (currentVersion != window.smfVersion)
- setInnerHTML(yourVer, "<span class=\"alert\">" + currentVersion + "</span>");
- }';
- // IE 4 is rather annoying, this wouldn't be necessary...
- echo '
- var fSetupCredits = function ()
- {
- smfSetLatestSupport();
- smfCurrentVersion()
- }
- addLoadEvent(fSetupCredits);
- // ]]></script>';
- }
- /**
- * Displays information about file versions installed, and compares them to current version.
- */
- function template_view_versions()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['admin_version_check'], '
- </h3>
- </div>
- <div class="information">', $txt['version_check_desc'], '</div>
- <table width="100%" class="table_grid">
- <thead>
- <tr class="catbg" align="left">
- <th class="first_th" scope="col" width="50%">
- <strong>', $txt['admin_smffile'], '</strong>
- </th>
- <th scope="col" width="25%">
- <strong>', $txt['dvc_your'], '</strong>
- </th>
- <th class="last_th" scope="col" width="25%">
- <strong>', $txt['dvc_current'], '</strong>
- </th>
- </tr>
- </thead>
- <tbody>';
- // The current version of the core SMF package.
- echo '
- <tr>
- <td class="windowbg">
- ', $txt['admin_smfpackage'], '
- </td>
- <td class="windowbg">
- <em id="yourSMF">', $context['forum_version'], '</em>
- </td>
- <td class="windowbg">
- <em id="currentSMF">??</em>
- </td>
- </tr>';
- // Now list all the source file versions, starting with the overall version (if all match!).
- echo '
- <tr>
- <td class="windowbg">
- <a href="#" id="Sources-link">', $txt['dvc_sources'], '</a>
- </td>
- <td class="windowbg">
- <em id="yourSources">??</em>
- </td>
- <td class="windowbg">
- <em id="currentSources">??</em>
- </td>
- </tr>
- </tbody>
- </table>
- <table id="Sources" width="100%" class="table_grid">
- <tbody>';
- // Loop through every source file displaying its version - using javascript.
- foreach ($context['file_versions'] as $filename => $version)
- echo '
- <tr>
- <td class="windowbg2" width="50%" style="padding-left: 3ex;">
- ', $filename, '
- </td>
- <td class="windowbg2" width="25%">
- <em id="yourSources', $filename, '">', $version, '</em>
- </td>
- <td class="windowbg2" width="25%">
- <em id="currentSources', $filename, '">??</em>
- </td>
- </tr>';
- // Default template files.
- echo '
- </tbody>
- </table>
- <table width="100%" class="table_grid">
- <tbody>
- <tr>
- <td class="windowbg" width="50%">
- <a href="#" id="Default-link">', $txt['dvc_default'], '</a>
- </td>
- <td class="windowbg" width="25%">
- <em id="yourDefault">??</em>
- </td>
- <td class="windowbg" width="25%">
- <em id="currentDefault">??</em>
- </td>
- </tr>
- </tbody>
- </table>
- <table id="Default" width="100%" class="table_grid">
- <tbody>';
- foreach ($context['default_template_versions'] as $filename => $version)
- echo '
- <tr>
- <td class="windowbg2" width="50%" style="padding-left: 3ex;">
- ', $filename, '
- </td>
- <td class="windowbg2" width="25%">
- <em id="yourDefault', $filename, '">', $version, '</em>
- </td>
- <td class="windowbg2" width="25%">
- <em id="currentDefault', $filename, '">??</em>
- </td>
- </tr>';
- // Now the language files...
- echo '
- </tbody>
- </table>
- <table width="100%" class="table_grid">
- <tbody>
- <tr>
- <td class="windowbg" width="50%">
- <a href="#" id="Languages-link">', $txt['dvc_languages'], '</a>
- </td>
- <td class="windowbg" width="25%">
- <em id="yourLanguages">??</em>
- </td>
- <td class="windowbg" width="25%">
- <em id="currentLanguages">??</em>
- </td>
- </tr>
- </tbody>
- </table>
- <table id="Languages" width="100%" class="table_grid">
- <tbody>';
- foreach ($context['default_language_versions'] as $language => $files)
- {
- foreach ($files as $filename => $version)
- echo '
- <tr>
- <td class="windowbg2" width="50%" style="padding-left: 3ex;">
- ', $filename, '.<em>', $language, '</em>.php
- </td>
- <td class="windowbg2" width="25%">
- <em id="your', $filename, '.', $language, '">', $version, '</em>
- </td>
- <td class="windowbg2" width="25%">
- <em id="current', $filename, '.', $language, '">??</em>
- </td>
- </tr>';
- }
- echo '
- </tbody>
- </table>';
- // Finally, display the version information for the currently selected theme - if it is not the default one.
- if (!empty($context['template_versions']))
- {
- echo '
- <table width="100%" class="table_grid">
- <tbody>
- <tr>
- <td class="windowbg" width="50%">
- <a href="#" id="Templates-link">', $txt['dvc_templates'], '</a>
- </td>
- <td class="windowbg" width="25%">
- <em id="yourTemplates">??</em>
- </td>
- <td class="windowbg" width="25%">
- <em id="currentTemplates">??</em>
- </td>
- </tr>
- </tbody>
- </table>
- <table id="Templates" width="100%" class="table_grid">
- <tbody>';
- foreach ($context['template_versions'] as $filename => $version)
- echo '
- <tr>
- <td class="windowbg2" width="50%" style="padding-left: 3ex;">
- ', $filename, '
- </td>
- <td class="windowbg2" width="25%">
- <em id="yourTemplates', $filename, '">', $version, '</em>
- </td>
- <td class="windowbg2" width="25%">
- <em id="currentTemplates', $filename, '">??</em>
- </td>
- </tr>';
- echo '
- </tbody>
- </table>';
- }
- echo '
- </div>
- <br class="clear" />';
- /* Below is the hefty javascript for this. Upon opening the page it checks the current file versions with ones
- held at simplemachines.org and works out if they are up to date. If they aren't it colors that files number
- red. It also contains the function, swapOption, that toggles showing the detailed information for each of the
- file categories. (sources, languages, and templates.) */
- echo '
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=detailed-version.js"></script>
- <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/admin.js?fin20"></script>
- <script type="text/javascript"><!-- // --><![CDATA[
- var oViewVersions = new smf_ViewVersions({
- aKnownLanguages: [
- \'.', implode('\',
- \'.', $context['default_known_languages']), '\'
- ],
- oSectionContainerIds: {
- Sources: \'Sources\',
- Default: \'Default\',
- Languages: \'Languages\',
- Templates: \'Templates\'
- }
- });
- // ]]></script>';
- }
- // Form for stopping people using naughty words, etc.
- function template_edit_censored()
- {
- global $context, $settings, $options, $scripturl, $txt, $modSettings;
- // First section is for adding/removing words from the censored list.
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=postsettings;sa=censor" method="post" accept-charset="', $context['character_set'], '">
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['admin_censored_words'], '
- </h3>
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <p>', $txt['admin_censored_where'], '</p>';
- // Show text boxes for censoring [bad ] => [good ].
- foreach ($context['censored_words'] as $vulgar => $proper)
- echo '
- <div style="margin-top: 1ex;">
- <input type="text" name="censor_vulgar[]" value="', $vulgar, '" size="30" /> => <input type="text" name="censor_proper[]" value="', $proper, '" size="30" />
- </div>';
- // Now provide a way to censor more words.
- echo '
- <div style="margin-top: 1ex;">
- <input type="text" name="censor_vulgar[]" size="30" class="input_text" /> => <input type="text" name="censor_proper[]" size="30" class="input_text" />
- </div>
- <div id="moreCensoredWords"></div><div style="margin-top: 1ex; display: none;" id="moreCensoredWords_link">
- <a class="button_link" style="float: left" href="#;" onclick="addNewWord(); return false;">', $txt['censor_clickadd'], '</a><br />
- </div>
- <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/admin.js?fin20"></script>
- <script type="text/javascript"><!-- // --><![CDATA[
- document.getElementById("moreCensoredWords_link").style.display = "";
- // ]]></script>
- <hr width="100%" size="1" class="hrcolor clear" />
- <dl class="settings">
- <dt>
- <strong><label for="censorWholeWord_check">', $txt['censor_whole_words'], ':</label></strong>
- </dt>
- <dd>
- <input type="checkbox" name="censorWholeWord" value="1" id="censorWholeWord_check"', empty($modSettings['censorWholeWord']) ? '' : ' checked="checked"', ' class="input_check" />
- </dd>
- <dt>
- <strong><label for="censorIgnoreCase_check">', $txt['censor_case'], ':</label></strong>
- </dt>
- <dd>
- <input type="checkbox" name="censorIgnoreCase" value="1" id="censorIgnoreCase_check"', empty($modSettings['censorIgnoreCase']) ? '' : ' checked="checked"', ' class="input_check" />
- </dd>
- </dl>
- <hr class="hrcolor" />
- <input type="submit" name="save_censor" value="', $txt['save'], '" class="button_submit" />
- <br class="clear_right" />
- </div>
- <span class="botslice"><span></span></span>
- </div>
- <br />';
- // This table lets you test out your filters by typing in rude words and seeing what comes out.
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['censor_test'], '
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <p class="centertext">
- <input type="text" name="censortest" value="', empty($context['censor_test']) ? '' : $context['censor_test'], '" class="input_text" />
- <input type="submit" value="', $txt['censor_test_save'], '" class="button_submit" />
- </p>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="', $context['admin-censor_token_var'], '" value="', $context['admin-censor_token'], '" />
- </form>
- </div>
- <br class="clear" />';
- }
- // Maintenance is a lovely thing, isn't it?
- function template_not_done()
- {
- global $context, $settings, $options, $txt, $scripturl;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['not_done_title'], '
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- ', $txt['not_done_reason'];
- if (!empty($context['continue_percent']))
- echo '
- <div style="padding-left: 20%; padding-right: 20%; margin-top: 1ex;">
- <div style="font-size: 8pt; height: 12pt; border: 1px solid black; background-color: white; padding: 1px; position: relative;">
- <div style="padding-top: ', isBrowser('is_webkit') || isBrowser('is_konqueror') ? '2pt' : '1pt', '; width: 100%; z-index: 2; color: black; position: absolute; text-align: center; font-weight: bold;">', $context['continue_percent'], '%</div>
- <div style="width: ', $context['continue_percent'], '%; height: 12pt; z-index: 1; background-color: red;"> </div>
- </div>
- </div>';
- if (!empty($context['substep_enabled']))
- echo '
- <div style="padding-left: 20%; padding-right: 20%; margin-top: 1ex;">
- <span class="smalltext">', $context['substep_title'], '</span>
- <div style="font-size: 8pt; height: 12pt; border: 1px solid black; background-color: white; padding: 1px; position: relative;">
- <div style="padding-top: ', isBrowser('is_webkit') || isBrowser('is_konqueror') ? '2pt' : '1pt', '; width: 100%; z-index: 2; color: black; position: absolute; text-align: center; font-weight: bold;">', $context['substep_continue_percent'], '%</div>
- <div style="width: ', $context['substep_continue_percent'], '%; height: 12pt; z-index: 1; background-color: blue;"> </div>
- </div>
- </div>';
- echo '
- <form action="', $scripturl, $context['continue_get_data'], '" method="post" accept-charset="', $context['character_set'], '" style="margin: 0;" name="autoSubmit" id="autoSubmit">
- <div style="margin: 1ex; text-align: right;"><input type="submit" name="cont" value="', $txt['not_done_continue'], '" class="button_submit" /></div>
- ', $context['continue_post_data'], '
- </form>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>
- <br class="clear" />
- <script type="text/javascript"><!-- // --><![CDATA[
- var countdown = ', $context['continue_countdown'], ';
- doAutoSubmit();
- function doAutoSubmit()
- {
- if (countdown == 0)
- document.forms.autoSubmit.submit();
- else if (countdown == -1)
- return;
- document.forms.autoSubmit.cont.value = "', $txt['not_done_continue'], ' (" + countdown + ")";
- countdown--;
- setTimeout("doAutoSubmit();", 1000);
- }
- // ]]></script>';
- }
- // Template for showing settings (Of any kind really!)
- function template_show_settings()
- {
- global $context, $txt, $settings, $scripturl;
- if (!empty($context['settings_pre_javascript']))
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[', $context['settings_pre_javascript'], '// ]]></script>';
- if (!empty($context['settings_insert_above']))
- echo $context['settings_insert_above'];
-
- echo '
- <div id="admincenter">
- <form action="', $context['post_url'], '" method="post" accept-charset="', $context['character_set'], '"', !empty($context['force_form_onsubmit']) ? ' onsubmit="' . $context['force_form_onsubmit'] . '"' : '', '>';
- // Is there a custom title?
- if (isset($context['settings_title']))
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- ', $context['settings_title'], '
- </h3>
- </div>';
- // Have we got a message to display?
- if (!empty($context['settings_message']))
- echo '
- <div class="information">', $context['settings_message'], '</div>';
- // Now actually loop through all the variables.
- $is_open = false;
- foreach ($context['config_vars'] as $config_var)
- {
- // Is it a title or a description?
- if (is_array($config_var) && ($config_var['type'] == 'title' || $config_var['type'] == 'desc'))
- {
- // Not a list yet?
- if ($is_open)
- {
- $is_open = false;
- echo '
- </dl>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- }
- // A title?
- if ($config_var['type'] == 'title')
- {
- echo '
- <div class="cat_bar">
- <h3 class="', !empty($config_var['class']) ? $config_var['class'] : 'catbg', '"', !empty($config_var['force_div_id']) ? ' id="' . $config_var['force_div_id'] . '"' : '', '>
- ', ($config_var['help'] ? '<a href="' . $scripturl . '?action=helpadmin;help=' . $config_var['help'] . '" onclick="return reqWin(this.href);" class="help"><img src="' . $settings['images_url'] . '/helptopics.png" class="icon" alt="' . $txt['help'] . '" /></a>' : ''), '
- ', $config_var['label'], '
- </h3>
- </div>';
- }
- // A description?
- else
- {
- echo '
- <p class="description">
- ', $config_var['label'], '
- </p>';
- }
- continue;
- }
- // Not a list yet?
- if (!$is_open)
- {
- $is_open = true;
- echo '
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings">';
- }
- // Hang about? Are you pulling my leg - a callback?!
- if (is_array($config_var) && $config_var['type'] == 'callback')
- {
- if (function_exists('template_callback_' . $config_var['name']))
- call_user_func('template_callback_' . $config_var['name']);
- continue;
- }
- if (is_array($config_var))
- {
- // First off, is this a span like a message?
- if (in_array($config_var['type'], array('message', 'warning')))
- {
- echo '
- <dd', $config_var['type'] == 'warning' ? ' class="alert"' : '', (!empty($config_var['force_div_id']) ? ' id="' . $config_var['force_div_id'] . '_dd"' : ''), '>
- ', $config_var['label'], '
- </dd>';
- }
- // Otherwise it's an input box of some kind.
- else
- {
- echo '
- <dt', is_array($config_var) && !empty($config_var['force_div_id']) ? ' id="' . $config_var['force_div_id'] . '"' : '', '>';
- // Some quick helpers...
- $javascript = $config_var['javascript'];
- $disabled = !empty($config_var['disabled']) ? ' disabled="disabled"' : '';
- $subtext = !empty($config_var['subtext']) ? '<br /><span class="smalltext"> ' . $config_var['subtext'] . '</span>' : '';
- // Show the [?] button.
- if ($config_var['help'])
- echo '
- <a id="setting_', $config_var['name'], '" href="', $scripturl, '?action=helpadmin;help=', $config_var['help'], '" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" class="icon" alt="', $txt['help'], '" /></a><span', ($config_var['disabled'] ? ' style="color: #777777;"' : ($config_var['invalid'] ? ' class="error"' : '')), '><label for="', $config_var['name'], '">', $config_var['label'], '</label>', $subtext, ($config_var['type'] == 'password' ? '<br /><em>' . $txt['admin_confirm_password'] . '</em>' : ''), '</span>
- </dt>';
- else
- echo '
- <a id="setting_', $config_var['name'], '"></a> <span', ($config_var['disabled'] ? ' style="color: #777777;"' : ($config_var['invalid'] ? ' class="error"' : '')), '><label for="', $config_var['name'], '">', $config_var['label'], '</label>', $subtext, ($config_var['type'] == 'password' ? '<br /><em>' . $txt['admin_confirm_password'] . '</em>' : ''), '</span>
- </dt>';
- echo '
- <dd', (!empty($config_var['force_div_id']) ? ' id="' . $config_var['force_div_id'] . '_dd"' : ''), '>',
- $config_var['preinput'];
- // Show a check box.
- if ($config_var['type'] == 'check')
- echo '
- <input type="checkbox"', $javascript, $disabled, ' name="', $config_var['name'], '" id="', $config_var['name'], '"', ($config_var['value'] ? ' checked="checked"' : ''), ' value="1" class="input_check" />';
- // Escape (via htmlspecialchars.) the text box.
- elseif ($config_var['type'] == 'password')
- echo '
- <input type="password"', $disabled, $javascript, ' name="', $config_var['name'], '[0]"', ($config_var['size'] ? ' size="' . $config_var['size'] . '"' : ''), ' value="*#fakepass#*" onfocus="this.value = \'\'; this.form.', $config_var['name'], '.disabled = false;" class="input_password" /><br />
- <input type="password" disabled="disabled" id="', $config_var['name'], '" name="', $config_var['name'], '[1]"', ($config_var['size'] ? ' size="' . $config_var['size'] . '"' : ''), ' class="input_password" />';
- // Show a selection box.
- elseif ($config_var['type'] == 'select')
- {
- echo '
- <select name="', $config_var['name'], '" id="', $config_var['name'], '" ', $javascript, $disabled, (!empty($config_var['multiple']) ? ' multiple="multiple"' : ''), '>';
- foreach ($config_var['data'] as $option)
- echo '
- <option value="', $option[0], '"', (!empty($config_var['value']) && ($option[0] == $config_var['value'] || (!empty($config_var['multiple']) && in_array($option[0], $config_var['value']))) ? ' selected="selected"' : ''), '>', $option[1], '</option>';
- echo '
- </select>';
- }
- // Text area?
- elseif ($config_var['type'] == 'large_text')
- echo '
- <textarea rows="', ($config_var['size'] ? $config_var['size'] : 4), '" cols="30" ', $javascript, $disabled, ' name="', $config_var['name'], '" id="', $config_var['name'], '">', $config_var['value'], '</textarea>';
- // Permission group?
- elseif ($config_var['type'] == 'permissions')
- theme_inline_permissions($config_var['name']);
- // BBC selection?
- elseif ($config_var['type'] == 'bbc')
- {
- echo '
- <fieldset id="', $config_var['name'], '">
- <legend>', $txt['bbcTagsToUse_select'], '</legend>
- <ul class="reset">';
- foreach ($context['bbc_columns'] as $bbcColumn)
- {
- foreach ($bbcColumn as $bbcTag)
- echo '
- <li class="list_bbc floatleft">
- <input type="checkbox" name="', $config_var['name'], '_enabledTags[]" id="tag_', $config_var['name'], '_', $bbcTag['tag'], '" value="', $bbcTag['tag'], '"', !in_array($bbcTag['tag'], $context['bbc_sections'][$config_var['name']]['disabled']) ? ' checked="checked"' : '', ' class="input_check" /> <label for="tag_', $config_var['name'], '_', $bbcTag['tag'], '">', $bbcTag['tag'], '</label>', $bbcTag['show_help'] ? ' (<a href="' . $scripturl . '?action=helpadmin;help=tag_' . $bbcTag['tag'] . '" onclick="return reqWin(this.href);">?</a>)' : '', '
- </li>';
- }
- echo ' </ul>
- <input type="checkbox" id="select_all" onclick="invertAll(this, this.form, \'', $config_var['name'], '_enabledTags\');"', $context['bbc_sections'][$config_var['name']]['all_selected'] ? ' checked="checked"' : '', ' class="input_check" /> <label for="select_all"><em>', $txt['bbcTagsToUse_select_all'], '</em></label>
- </fieldset>';
- }
- // A simple message?
- elseif ($config_var['type'] == 'var_message')
- echo '
- <div', !empty($config_var['name']) ? ' id="' . $config_var['name'] . '"' : '', '>', $config_var['var_message'], '</div>';
- // Assume it must be a text box.
- else
- echo '
- <input type="text"', $javascript, $disabled, ' name="', $config_var['name'], '" id="', $config_var['name'], '" value="', $config_var['value'], '"', ($config_var['size'] ? ' size="' . $config_var['size'] . '"' : ''), ' class="input_text" />';
- echo isset($config_var['postinput']) ? '
- ' . $config_var['postinput'] : '',
- '</dd>';
- }
- }
- else
- {
- // Just show a separator.
- if ($config_var == '')
- echo '
- </dl>
- <hr class="hrcolor clear" />
- <dl class="settings">';
- else
- echo '
- <dd>
- <strong>' . $config_var . '</strong>
- </dd>';
- }
- }
- if ($is_open)
- echo '
- </dl>';
- if (empty($context['settings_save_dont_show']))
- echo '
- <hr class="hrcolor" />
- <input type="submit" value="', $txt['save'], '"', (!empty($context['save_disabled']) ? ' disabled="disabled"' : ''), (!empty($context['settings_save_onclick']) ? ' onclick="' . $context['settings_save_onclick'] . '"' : ''), ' class="button_submit" />
- <br class="clear_right" />';
- if ($is_open)
- echo '
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- // At least one token has to be used!
- if (isset($context['admin-ssc_token']))
- echo '
- <input type="hidden" name="', $context['admin-ssc_token_var'], '" value="', $context['admin-ssc_token'], '" />';
- if (isset($context['admin-dbsc_token']))
- echo '
- <input type="hidden" name="', $context['admin-dbsc_token_var'], '" value="', $context['admin-dbsc_token'], '" />';
- if (isset($context['admin-mp_token']))
- echo '
- <input type="hidden" name="', $context['admin-mp_token_var'], '" value="', $context['admin-mp_token'], '" />';
- echo '
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- </form>
- </div>
- <br class="clear" />';
- if (!empty($context['settings_post_javascript']))
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- ', $context['settings_post_javascript'], '
- // ]]></script>';
- if (!empty($context['settings_insert_below']))
- echo $context['settings_insert_below'];
- }
- // Template for showing custom profile fields.
- function template_show_custom_profile()
- {
- global $context, $txt, $settings, $scripturl;
-
- // Standard fields.
- template_show_list('standard_profile_fields');
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var iNumChecks = document.forms.standardProfileFields.length;
- for (var i = 0; i < iNumChecks; i++)
- if (document.forms.standardProfileFields[i].id.indexOf(\'reg_\') == 0)
- document.forms.standardProfileFields[i].disabled = document.forms.standardProfileFields[i].disabled || !document.getElementById(\'active_\' + document.forms.standardProfileFields[i].id.substr(4)).checked;
- // ]]></script><br />';
- // Custom fields.
- template_show_list('custom_profile_fields');
- }
- // Edit a profile field?
- function template_edit_profile_field()
- {
- global $context, $txt, $settings, $scripturl;
- // All the javascript for this page - quite a bit in script.js!
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var startOptID = ', count($context['field']['options']), ';
- // ]]></script>';
-
- // any errors messages to show?
- if (isset($_GET['msg']))
- {
- loadLanguage('Errors');
- if (isset($txt['custom_option_' . $_GET['msg']]))
- echo '
- <div class="errorbox">',
- $txt['custom_option_' . $_GET['msg']], '
- </div>';
- }
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=featuresettings;sa=profileedit;fid=', $context['fid'], ';', $context['session_var'], '=', $context['session_id'], '" method="post" accept-charset="', $context['character_set'], '">
- <div class="cat_bar">
- <h3 class="catbg">
- ', $context['page_title'], '
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <fieldset>
- <legend>', $txt['custom_edit_general'], '</legend>
- <dl class="settings">
- <dt>
- <strong><label for="field_name">', $txt['custom_edit_name'], ':</label></strong>
- </dt>
- <dd>
- <input type="text" name="field_name" id="field_name" value="', $context['field']['name'], '" size="20" maxlength="40" class="input_text" />
- </dd>
- <dt>
- <strong><label for="field_desc">', $txt['custom_edit_desc'], ':</label></strong>
- </dt>
- <dd>
- <textarea name="field_desc" id="field_desc" rows="3" cols="40">', $context['field']['desc'], '</textarea>
- </dd>
- <dt>
- <strong><label for="profile_area">', $txt['custom_edit_profile'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_profile_desc'], '</span>
- </dt>
- <dd>
- <select name="profile_area" id="profile_area">
- <option value="none"', $context['field']['profile_area'] == 'none' ? ' selected="selected"' : '', '>', $txt['custom_edit_profile_none'], '</option>
- <option value="account"', $context['field']['profile_area'] == 'account' ? ' selected="selected"' : '', '>', $txt['account'], '</option>
- <option value="forumprofile"', $context['field']['profile_area'] == 'forumprofile' ? ' selected="selected"' : '', '>', $txt['forumprofile'], '</option>
- <option value="theme"', $context['field']['profile_area'] == 'theme' ? ' selected="selected"' : '', '>', $txt['theme'], '</option>
- </select>
- </dd>
- <dt>
- <strong><label for="reg">', $txt['custom_edit_registration'], ':</label></strong>
- </dt>
- <dd>
- <select name="reg" id="reg">
- <option value="0"', $context['field']['reg'] == 0 ? ' selected="selected"' : '', '>', $txt['custom_edit_registration_disable'], '</option>
- <option value="1"', $context['field']['reg'] == 1 ? ' selected="selected"' : '', '>', $txt['custom_edit_registration_allow'], '</option>
- <option value="2"', $context['field']['reg'] == 2 ? ' selected="selected"' : '', '>', $txt['custom_edit_registration_require'], '</option>
- </select>
- </dd>
- <dt>
- <strong><label for="display">', $txt['custom_edit_display'], ':</label></strong>
- </dt>
- <dd>
- <input type="checkbox" name="display" id="display"', $context['field']['display'] ? ' checked="checked"' : '', ' class="input_check" />
- </dd>
- <dt>
- <strong><label for="placement">', $txt['custom_edit_placement'], ':</label></strong>
- </dt>
- <dd>
- <select name="placement" id="placement">
- <option value="0"', $context['field']['placement'] == '0' ? ' selected="selected"' : '', '>', $txt['custom_edit_placement_standard'], '</option>
- <option value="1"', $context['field']['placement'] == '1' ? ' selected="selected"' : '', '>', $txt['custom_edit_placement_withicons'], '</option>
- <option value="2"', $context['field']['placement'] == '2' ? ' selected="selected"' : '', '>', $txt['custom_edit_placement_abovesignature'], '</option>
- </select>
- </dd>
- <dt>
- <a id="field_show_enclosed" href="', $scripturl, '?action=helpadmin;help=field_show_enclosed" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" class="icon" alt="', $txt['help'], '" /></a>
- <strong><label for="enclose">', $txt['custom_edit_enclose'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_enclose_desc'], '</span>
- </dt>
- <dd>
- <textarea name="enclose" id="enclose" rows="10" cols="50">', @$context['field']['enclose'], '</textarea>
- </dd>
- </dl>
- </fieldset>
- <fieldset>
- <legend>', $txt['custom_edit_input'], '</legend>
- <dl class="settings">
- <dt>
- <strong><label for="field_type">', $txt['custom_edit_picktype'], ':</label></strong>
- </dt>
- <dd>
- <select name="field_type" id="field_type" onchange="updateInputBoxes();">
- <option value="text"', $context['field']['type'] == 'text' ? ' selected="selected"' : '', '>', $txt['custom_profile_type_text'], '</option>
- <option value="textarea"', $context['field']['type'] == 'textarea' ? ' selected="selected"' : '', '>', $txt['custom_profile_type_textarea'], '</option>
- <option value="select"', $context['field']['type'] == 'select' ? ' selected="selected"' : '', '>', $txt['custom_profile_type_select'], '</option>
- <option value="radio"', $context['field']['type'] == 'radio' ? ' selected="selected"' : '', '>', $txt['custom_profile_type_radio'], '</option>
- <option value="check"', $context['field']['type'] == 'check' ? ' selected="selected"' : '', '>', $txt['custom_profile_type_check'], '</option>
- </select>
- </dd>
- <dt id="max_length_dt">
- <strong><label for="max_length_dd">', $txt['custom_edit_max_length'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_max_length_desc'], '</span>
- </dt>
- <dd>
- <input type="text" name="max_length" id="max_length_dd" value="', $context['field']['max_length'], '" size="7" maxlength="6" class="input_text" />
- </dd>
- <dt id="dimension_dt">
- <strong><label for="dimension_dd">', $txt['custom_edit_dimension'], ':</label></strong>
- </dt>
- <dd id="dimension_dd">
- <strong>', $txt['custom_edit_dimension_row'], ':</strong> <input type="text" name="rows" value="', $context['field']['rows'], '" size="5" maxlength="3" class="input_text" />
- <strong>', $txt['custom_edit_dimension_col'], ':</strong> <input type="text" name="cols" value="', $context['field']['cols'], '" size="5" maxlength="3" class="input_text" />
- </dd>
- <dt id="bbc_dt">
- <strong><label for="bbc_dd">', $txt['custom_edit_bbc'], '</label></strong>
- </dt>
- <dd >
- <input type="checkbox" name="bbc" id="bbc_dd"', $context['field']['bbc'] ? ' checked="checked"' : '', ' class="input_check" />
- </dd>
- <dt id="options_dt">
- <a href="', $scripturl, '?action=helpadmin;help=customoptions" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" class="icon" alt="', $txt['help'], '" /></a>
- <strong><label for="options_dd">', $txt['custom_edit_options'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_options_desc'], '</span>
- </dt>
- <dd id="options_dd">
- <div>';
- foreach ($context['field']['options'] as $k => $option)
- {
- echo '
- ', $k == 0 ? '' : '<br />', '<input type="radio" name="default_select" value="', $k, '"', $context['field']['default_select'] == $option ? ' checked="checked"' : '', ' class="input_radio" /><input type="text" name="select_option[', $k, ']" value="', $option, '" class="input_text" />';
- }
- echo '
- <span id="addopt"></span>
- [<a href="" onclick="addOption(); return false;">', $txt['custom_edit_options_more'], '</a>]
- </div>
- </dd>
- <dt id="default_dt">
- <strong><label for="default_dd">', $txt['custom_edit_default'], ':</label></strong>
- </dt>
- <dd>
- <input type="checkbox" name="default_check" id="default_dd"', $context['field']['default_check'] ? ' checked="checked"' : '', ' class="input_check" />
- </dd>
- </dl>
- </fieldset>
- <fieldset>
- <legend>', $txt['custom_edit_advanced'], '</legend>
- <dl class="settings">
- <dt id="mask_dt">
- <a id="custom_mask" href="', $scripturl, '?action=helpadmin;help=custom_mask" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" class="icon" alt="', $txt['help'], '" /></a>
- <strong><label for="mask">', $txt['custom_edit_mask'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_mask_desc'], '</span>
- </dt>
- <dd>
- <select name="mask" id="mask" onchange="updateInputBoxes();">
- <option value="nohtml"', $context['field']['mask'] == 'nohtml' ? ' selected="selected"' : '', '>', $txt['custom_edit_mask_nohtml'], '</option>
- <option value="email"', $context['field']['mask'] == 'email' ? ' selected="selected"' : '', '>', $txt['custom_edit_mask_email'], '</option>
- <option value="number"', $context['field']['mask'] == 'number' ? ' selected="selected"' : '', '>', $txt['custom_edit_mask_number'], '</option>
- <option value="regex"', strpos($context['field']['mask'], 'regex') === 0 ? ' selected="selected"' : '', '>', $txt['custom_edit_mask_regex'], '</option>
- </select>
- <br />
- <span id="regex_div">
- <input type="text" name="regex" value="', $context['field']['regex'], '" size="30" class="input_text" />
- </span>
- </dd>
- <dt>
- <strong><label for="private">', $txt['custom_edit_privacy'], ':</label></strong>
- <span class="smalltext">', $txt['custom_edit_privacy_desc'], '</span>
- </dt>
- <dd>
- <select name="private" id="private" onchange="updateInputBoxes();" style="width: 100%">
- <option value="0"', $context['field']['private'] == 0 ? ' selected="selected"' : '', '>', $txt['custom_edit_privacy_all'], '</option>
- <option value="1"', $context['field']['private'] == 1 ? ' selected="selected"' : '', '>', $txt['custom_edit_privacy_see'], '</option>
- <option value="2"', $context['field']['private'] == 2 ? ' selected="selected"' : '', '>', $txt['custom_edit_privacy_owner'], '</option>
- <option value="3"', $context['field']['private'] == 3 ? ' selected="selected"' : '', '>', $txt['custom_edit_privacy_none'], '</option>
- </select>
- </dd>
- <dt id="can_search_dt">
- <strong><label for="can_search_dd">', $txt['custom_edit_can_search'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_can_search_desc'], '</span>
- </dt>
- <dd>
- <input type="checkbox" name="can_search" id="can_search_dd"', $context['field']['can_search'] ? ' checked="checked"' : '', ' class="input_check" />
- </dd>
- <dt>
- <strong><label for="can_search_check">', $txt['custom_edit_active'], ':</label></strong><br />
- <span class="smalltext">', $txt['custom_edit_active_desc'], '</span>
- </dt>
- <dd>
- <input type="checkbox" name="active" id="can_search_check"', $context['field']['active'] ? ' checked="checked"' : '', ' class="input_check" />
- </dd>
- </dl>
- </fieldset>
- <hr class="hrcolor" />
- <input type="submit" name="save" value="', $txt['save'], '" class="button_submit" />';
- if ($context['fid'])
- echo '
- <input type="submit" name="delete" value="', $txt['delete'], '" onclick="return confirm(\'', $txt['custom_edit_delete_sure'], '\');" class="button_submit" />';
- echo '
- <br class="clear_right" />
- </div>
- <span class="botslice"><span></span></span>
- </div>
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="', $context['admin-ecp_token_var'], '" value="', $context['admin-ecp_token'], '" />
- </form>
- </div>
- <br class="clear" />';
- // Get the javascript bits right!
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- updateInputBoxes();
- // ]]></script>';
- }
- // Results page for an admin search.
- function template_admin_search_results()
- {
- global $context, $txt, $settings, $options, $scripturl;
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <object id="quick_search">
- <form action="', $scripturl, '?action=admin;area=search" method="post" accept-charset="', $context['character_set'], '" class="floatright">
- <input type="text" name="search_term" value="', $context['search_term'], '" class="input_text" />
- <input type="hidden" name="search_type" value="', $context['search_type'], '" />
- <input type="submit" name="search_go" value="', $txt['admin_search_results_again'], '" class="button_submit" />
- </form>
- </object>
- <span class="ie6_header floatleft"><img src="' . $settings['images_url'] . '/buttons/search.png" alt="" /> ', sprintf($txt['admin_search_results_desc'], $context['search_term']), '</span>
- </h3>
- </div>
- <div class="windowbg nopadding">
- <span class="topslice"><span></span></span>
- <div class="content">';
- if (empty($context['search_results']))
- {
- echo '
- <p class="centertext"><strong>', $txt['admin_search_results_none'], '</strong></p>';
- }
- else
- {
- echo '
- <ol class="search_results">';
- foreach ($context['search_results'] as $result)
- {
- // Is it a result from the online manual?
- if ($context['search_type'] == 'online')
- {
- echo '
- <li>
- <p>
- <a href="', $context['doc_scripturl'], str_replace(' ', '_', $result['title']), '" target="_blank" class="new_win"><strong>', $result['title'], '</strong></a>
- </p>
- <p class="double_height">
- ', $result['snippet'], '
- </p>
- </li>';
- }
- // Otherwise it's... not!
- else
- {
- echo '
- <li class="windowbg">
- <a href="', $result['url'], '"><strong>', $result['name'], '</strong></a> [', isset($txt['admin_search_section_' . $result['type']]) ? $txt['admin_search_section_' . $result['type']] : $result['type'] , ']';
- if ($result['help'])
- echo '
- <p class="double_height">', $result['help'], '</p>';
- echo '
- </li>';
- }
- }
- echo '
- </ol>';
- }
- echo '
- </div>
- <span class="botslice"><span></span></span>
- </div>
- <br class="clear" />';
- }
- // Turn on and off certain key features.
- function template_core_features()
- {
- global $context, $txt, $settings, $options, $scripturl;
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var token_name;
- var token_value;
- $(document).ready(function() {
- $(".core_features_hide").css(\'display\', \'none\');
- $(".core_features_img").css({\'cursor\': \'pointer\', \'display\': \'\'});
- $("#core_features_submit").css(\'display\', \'none\');
- if (token_name == undefined)
- token_name = $("#core_features_token").attr("name")
- if (token_value == undefined)
- token_value = $("#core_features_token").attr("value")
- $(".core_features_img").click(function(){
- var cc = $(this);
- var cf = $(this).attr("id").substring(7);
- var imgs = new Array("', $settings['images_url'], '/admin/switch_off.png", "', $settings['images_url'], '/admin/switch_on.png");
- var new_state = !$("#feature_" + cf).attr("checked");
- var ajax_infobar = document.createElement(\'div\');
- $(ajax_infobar).css({\'position\': \'fixed\', \'top\': \'0\', \'left\': \'0\', \'width\': \'100%\'});
- $("body").append(ajax_infobar);
- $(ajax_infobar).slideUp();
- $("#feature_" + cf).attr("checked", new_state);
- data = {save: "save", feature_id: cf};
- data[$("#core_features_session").attr("name")] = $("#core_features_session").attr("value");
- data[token_name] = token_value;
- $(".core_features_status_box").each(function(){
- data[$(this).attr("name")] = !$(this).attr("checked") ? 0 : 1;
- });
- // Launch AJAX request.
- $.ajax({
- // The link we are accessing.
- url: "', $scripturl, '?action=xmlhttp;sa=corefeatures;xml",
- // The type of request.
- type: "post",
- // The type of data that is getting returned.
- data: data,
- error: function(error){
- $(ajax_infobar).html(error).slideDown(\'fast\');
- },
- success: function(request){
- if ($(request).find("errors").find("error").length != 0)
- {
- $(ajax_infobar).attr(\'class\', \'errorbox\');
- $(ajax_infobar).html($(request).find("errors").find("error").text()).slideDown(\'fast\');
- }
- else if ($(request).find("smf").length != 0)
- {
- $("#feature_link_" + cf).html($(request).find("corefeatures").find("corefeature").text());
- cc.attr("src", imgs[new_state ? 1 : 0]);
- $("#feature_link_" + cf).fadeOut().fadeIn();
- $(ajax_infobar).attr(\'class\', \'infobox\');
- var message = new_state ? ' . JavaScriptEscape($txt['core_settings_activation_message']) . ' : ' . JavaScriptEscape($txt['core_settings_deactivation_message']) . ';
- $(ajax_infobar).html(message.replace(\'{core_feature}\', $(request).find("corefeatures").find("corefeature").text())).slideDown(\'fast\');
- setTimeout(function() {
- $(ajax_infobar).slideUp();
- }, 5000);
- token_name = $(request).find("tokens").find(\'[type="token"]\').text();
- token_value = $(request).find("tokens").find(\'[type="token_var"]\').text();
- }
- else
- {
- $(ajax_infobar).attr(\'class\', \'errorbox\');
- $(ajax_infobar).html(' . JavaScriptEscape($txt['core_settings_generic_error']) . ').slideDown(\'fast\');
-
- }
- }
- });
- });
- });
- // ]]></script>
- <div id="admincenter">';
- if ($context['is_new_install'])
- {
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['core_settings_welcome_msg'], '
- </h3>
- </div>
- <div class="information">
- ', $txt['core_settings_welcome_msg_desc'], '
- </div>';
- }
- echo '
- <form id="core_features" action="', $scripturl, '?action=admin;area=corefeatures" method="post" accept-charset="', $context['character_set'], '">
- <div class="cat_bar">
- <h3 class="catbg">
- ', $txt['core_settings_title'], '
- </h3>
- </div>
- <div style="display:none" id="activation_message" class="errorbox"></div>';
- $alternate = true;
- $num = 0;
- $num_features = count($context['features']);
- foreach ($context['features'] as $id => $feature)
- {
- $num++;
- echo '
- <div class="windowbg', $alternate ? '2' : '', '">
- <span class="topslice"><span></span></span>
- <div class="content features">
- <img class="features_image" src="', $feature['image'], '" alt="', $feature['title'], '" />
- <div class="features_switch" id="js_feature_', $id, '">
- <label class="core_features_hide" for="feature_', $id, '">', $txt['core_settings_enabled'], '<input class="core_features_status_box" type="checkbox" name="feature_', $id, '" id="feature_', $id, '"', $feature['enabled'] ? ' checked="checked"' : '', ' /></label>
- <img class="core_features_img ', $feature['state'], '" src="', $settings['images_url'], '/admin/switch_', $feature['state'], '.png" id="switch_', $id, '" style="margin-top: 1.3em;display:none" alt="', $txt['core_settings_switch_' . $feature['state']], '" title="', $txt['core_settings_switch_' . $feature['state']], '" />
- </div>
- <h4 id="feature_link_' . $id . '">', ($feature['enabled'] && $feature['url'] ? '<a href="' . $feature['url'] . '">' . $feature['title'] . '</a>' : $feature['title']), '</h4>
- <p>', $feature['desc'], '</p>
- </div>
- <span class="botslice clear_right"><span></span></span>
- </div>';
- $alternate = !$alternate;
- }
- echo '
- <div class="righttext">
- <input id="core_features_session" type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input id="core_features_token" type="hidden" name="', $context['admin-core_token_var'], '" value="', $context['admin-core_token'], '" />
- <input id="core_features_submit" type="submit" value="', $txt['save'], '" name="save" class="button_submit" />
- </div>
- </form>
- </div>
- <br class="clear" />';
- }
- // This little beauty shows questions and answer from the captcha type feature.
- function template_callback_question_answer_list()
- {
- global $txt, $context, $settings;
- echo '
- <dt>
- <strong>', $txt['setup_verification_question'], '</strong>
- </dt>
- <dd>
- <strong>', $txt['setup_verification_answer'], '</strong>
- </dd>';
- foreach ($context['question_answers'] as $data)
- echo '
- <dt>
- <input type="text" name="question[', $data['id'], ']" value="', $data['question'], '" size="50" class="input_text verification_question" />
- </dt>
- <dd>
- <input type="text" name="answer[', $data['id'], ']" value="', $data['answer'], '" size="50" class="input_text verification_answer" />
- </dd>';
- // Some blank ones.
- for ($count = 0; $count < 3; $count++)
- echo '
- <dt>
- <input type="text" name="question[]" size="50" class="input_text verification_question" />
- </dt>
- <dd>
- <input type="text" name="answer[]" size="50" class="input_text verification_answer" />
- </dd>';
- echo '
- <dt id="add_more_question_placeholder" style="display: none;"></dt><dd></dd>
- <dt id="add_more_link_div" style="display: none;">
- <a href="#" onclick="addAnotherQuestion(); return false;">« ', $txt['setup_verification_add_more'], ' »</a>
- <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/admin.js?fin20"></script>
- </dt><dd></dd>';
- // The javascript needs to go at the end but we'll put it in this template for looks.
- $context['settings_post_javascript'] .= '
- var placeHolder = document.getElementById(\'add_more_question_placeholder\');
- document.getElementById(\'add_more_link_div\').style.display = \'\';
- ';
- }
- // Repairing boards.
- function template_repair_boards()
- {
- global $context, $txt, $scripturl;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">',
- $context['error_search'] ? $txt['errors_list'] : $txt['errors_fixing'] , '
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">';
- // Are we actually fixing them, or is this just a prompt?
- if ($context['error_search'])
- {
- if (!empty($context['to_fix']))
- {
- echo '
- ', $txt['errors_found'], ':
- <ul>';
- foreach ($context['repair_errors'] as $error)
- echo '
- <li>
- ', $error, '
- </li>';
- echo '
- </ul>
- <p>
- ', $txt['errors_fix'], '
- </p>
- <p class="padding">
- <strong><a href="', $scripturl, '?action=admin;area=repairboards;fixErrors;', $context['session_var'], '=', $context['session_id'], '">', $txt['yes'], '</a> - <a href="', $scripturl, '?action=admin;area=maintain">', $txt['no'], '</a></strong>
- </p>';
- }
- else
- echo '
- <p>', $txt['maintain_no_errors'], '</p>
- <p class="padding">
- <a href="', $scripturl, '?action=admin;area=maintain;sa=routine">', $txt['maintain_return'], '</a>
- </p>';
- }
- else
- {
- if (!empty($context['redirect_to_recount']))
- {
- echo '
- <p>
- ', $txt['errors_do_recount'], '
- </p>
- <form action="', $scripturl, '?action=admin;area=maintain;sa=routine;activity=recount" id="recount_form" method="post">
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="submit" name="recount" id="recount_now" value="', $txt['errors_recount_now'], '" />
- </form>';
- }
- else
- {
- echo '
- <p>', $txt['errors_fixed'], '</p>
- <p class="padding">
- <a href="', $scripturl, '?action=admin;area=maintain;sa=routine">', $txt['maintain_return'], '</a>
- </p>';
- }
- }
- echo '
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>
- <br class="clear" />';
- if (!empty($context['redirect_to_recount']))
- {
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var countdown = 5;
- doAutoSubmit();
- function doAutoSubmit()
- {
- if (countdown == 0)
- document.forms.recount_form.submit();
- else if (countdown == -1)
- return;
- document.forms.recount_form.recount_now.value = "', $txt['errors_recount_now'], ' (" + countdown + ")";
- countdown--;
- setTimeout("doAutoSubmit();", 1000);
- }
- // ]]></script>';
- }
- }
- function template_php_info()
- {
- global $context, $txt;
- // for each php info area
- foreach ($context['pinfo'] as $area => $php_area)
- {
- echo '
- <table id="', str_replace(' ', '_', $area), '" width="100%" class="table_grid">
- <thead>
- <tr class="catbg" align="center">
- <th class="first_th" scope="col" width="33%"></th>
- <th scope="col" width="33%"><strong>', $area, '</strong></th>
- <th class="last_th" scope="col" width="33%"></th>
- </tr>
- </thead>
- <tbody>';
- $alternate = true;
- $localmaster = true;
-
- // and for each setting in this category
- foreach ($php_area as $key => $setting)
- {
- // start of a local / master setting (3 col)
- if (is_array($setting))
- {
- if ($localmaster)
- {
- // heading row for the settings section of this categorys settings
- echo '
- <tr class="titlebg">
- <td align="center" width="33%"><strong>', $txt['phpinfo_itemsettings'], '</strong></td>
- <td align="center" width="33%"><strong>', $txt['phpinfo_localsettings'], '</strong></td>
- <td align="center" width="33%"><strong>', $txt['phpinfo_defaultsettings'], '</strong></td>
- </tr>';
- $localmaster = false;
- }
-
- echo '
- <tr>
- <td align="left" width="33%" class="windowbg', $alternate ? '2' : '', '">', $key, '</td>';
- foreach ($setting as $key_lm => $value)
- {
- echo '
- <td align="left" width="33%" class="windowbg', $alternate ? '2' : '', '">', $value, '</td>';
- }
- echo '
- </tr>';
- }
- // just a single setting (2 col)
- else
- {
- echo '
- <tr>
- <td align="left" width="33%" class="windowbg', $alternate ? '2' : '', '">', $key, '</td>
- <td align="left" class="windowbg', $alternate ? '2' : '', '" colspan="2">', $setting, '</td>
- </tr>';
- }
-
- $alternate = !$alternate;
- }
- echo '
- </tbody>
- </table>
- <br class="clear" />';
- }
- }
- function template_clean_cache_button_above()
- {
- }
- function template_clean_cache_button_below()
- {
- global $txt, $scripturl, $context;
- echo '
- <div class="cat_bar">
- <h3 class="catbg">', $txt['maintain_cache'], '</h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <form action="', $scripturl, '?action=admin;area=maintain;sa=routine;activity=cleancache" method="post" accept-charset="', $context['character_set'], '">
- <p>', $txt['maintain_cache_info'], '</p>
- <span><input type="submit" value="', $txt['maintain_run_now'], '" class="button_submit" /></span>
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="', $context['admin-maint_token_var'], '" value="', $context['admin-maint_token'], '" />
- </form>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- }
- ?>
|