1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192 |
- <?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
- */
- // The main sub template - for theme administration.
- function template_main()
- {
- global $context, $settings, $options, $scripturl, $txt, $modSettings;
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=theme;sa=admin" method="post" accept-charset="', $context['character_set'], '">
- <input type="hidden" value="0" name="options[theme_allow]" />
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><a href="', $scripturl, '?action=helpadmin;help=themes" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.gif" class="icon" alt="', $txt['help'], '" align="top" /></a>
- ', $txt['themeadmin_title'], '
- </span>
- </h3>
- </div>
- <div class="information">
- ', $txt['themeadmin_explain'], '
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings">
- <dt>
- <label for="options-theme_allow"> ', $txt['theme_allow'], '</label>
- </dt>
- <dd>
- <input type="checkbox" name="options[theme_allow]" id="options-theme_allow" value="1"', !empty($modSettings['theme_allow']) ? ' checked="checked"' : '', ' class="input_check" />
- </dd>
- <dt>
- <label for="known_themes_list">', $txt['themeadmin_selectable'], '</label>:
- </dt>
- <dd>
- <div id="known_themes_list">';
- foreach ($context['themes'] as $theme)
- echo '
- <label for="options-known_themes_', $theme['id'], '"><input type="checkbox" name="options[known_themes][]" id="options-known_themes_', $theme['id'], '" value="', $theme['id'], '"', $theme['known'] ? ' checked="checked"' : '', ' class="input_check" /> ', $theme['name'], '</label><br />';
- echo '
- </div>
- <a href="javascript:void(0);" onclick="document.getElementById(\'known_themes_list\').style.display=\'block\'; document.getElementById(\'known_themes_link\').style.display = \'none\'; return false; " id="known_themes_link" style="display: none;">[ ', $txt['themeadmin_themelist_link'], ' ]</a>
- <script type="text/javascript"><!-- // --><![CDATA[
- document.getElementById("known_themes_list").style.display = "none";
- document.getElementById("known_themes_link").style.display = "";
- // ]]></script>
- </dd>
- <dt>
- <label for="theme_guests">', $txt['theme_guests'], ':</label>
- </dt>
- <dd>
- <select name="options[theme_guests]" id="theme_guests">';
- // Put an option for each theme in the select box.
- foreach ($context['themes'] as $theme)
- echo '
- <option value="', $theme['id'], '"', $modSettings['theme_guests'] == $theme['id'] ? ' selected="selected"' : '', '>', $theme['name'], '</option>';
- echo '
- </select>
- <span class="smalltext pick_theme"><a href="', $scripturl, '?action=theme;sa=pick;u=-1;', $context['session_var'], '=', $context['session_id'], '">', $txt['theme_select'], '</a></span>
- </dd>
- <dt>
- <label for="theme_reset">', $txt['theme_reset'], '</label>:
- </dt>
- <dd>
- <select name="theme_reset" id="theme_reset">
- <option value="-1" selected="selected">', $txt['theme_nochange'], '</option>
- <option value="0">', $txt['theme_forum_default'], '</option>';
- // Same thing, this time for changing the theme of everyone.
- foreach ($context['themes'] as $theme)
- echo '
- <option value="', $theme['id'], '">', $theme['name'], '</option>';
- echo '
- </select>
- <span class="smalltext pick_theme"><a href="', $scripturl, '?action=theme;sa=pick;u=0;', $context['session_var'], '=', $context['session_id'], '">', $txt['theme_select'], '</a></span>
- </dd>
- </dl>
- <div class="righttext">
- <input type="submit" name="submit" value="' . $txt['save'] . '" class="button_submit" />
- </div>
- </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-tm_token_var'], '" value="', $context['admin-tm_token'], '" />
- </form>';
- // Link to simplemachines.org for latest themes and info!
- echo '
- <br />
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><a href="', $scripturl, '?action=helpadmin;help=latest_themes" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.gif" class="icon" alt="', $txt['help'], '" /></a> ', $txt['theme_latest'], '</span>
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <div id="themeLatest">
- ', $txt['theme_latest_fetch'], '
- </div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- <br />';
- // Warn them if theme creation isn't possible!
- if (!$context['can_create_new'])
- echo '
- <div class="errorbox">', $txt['theme_install_writable'], '</div>';
- echo '
- <form action="', $scripturl, '?action=admin;area=theme;sa=install" method="post" accept-charset="', $context['character_set'], '" enctype="multipart/form-data" onsubmit="return confirm(\'', $txt['theme_install_new_confirm'], '\');">
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><a href="', $scripturl, '?action=helpadmin;help=theme_install" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.gif" class="icon" alt="', $txt['help'], '" /></a> ', $txt['theme_install'], '</span>
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings">';
- // Here's a little box for installing a new theme.
- // @todo Should the value="theme_gz" be there?!
- if ($context['can_create_new'])
- echo '
- <dt>
- <label for="theme_gz">', $txt['theme_install_file'], '</label>:
- </dt>
- <dd>
- <input type="file" name="theme_gz" id="theme_gz" value="theme_gz" size="40" onchange="this.form.copy.disabled = this.value != \'\'; this.form.theme_dir.disabled = this.value != \'\';" class="input_file" />
- </dd>';
- echo '
- <dt>
- <label for="theme_dir">', $txt['theme_install_dir'], '</label>:
- </dt>
- <dd>
- <input type="text" name="theme_dir" id="theme_dir" value="', $context['new_theme_dir'], '" size="40" style="width: 70%;" class="input_text" />
- </dd>';
- if ($context['can_create_new'])
- echo '
- <dt>
- <label for="copy">', $txt['theme_install_new'], ':</label>
- </dt>
- <dd>
- <input type="text" name="copy" id="copy" value="', $context['new_theme_name'], '" size="40" class="input_text" />
- </dd>';
- echo '
- </dl>
- <div class="righttext">
- <input type="submit" name="submit" value="', $txt['theme_install_go'], '" class="button_submit" />
- </div>
- </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-tm_token_var'], '" value="', $context['admin-tm_token'], '" />
- </form>
- </div>
- <br class="clear" />
- <script type="text/javascript"><!-- // --><![CDATA[
- window.smfForum_scripturl = "', $scripturl, '";
- window.smfForum_sessionid = "', $context['session_id'], '";
- window.smfForum_sessionvar = "', $context['session_var'], '";
- window.smfThemes_writable = ', $context['can_create_new'] ? 'true' : 'false', ';
- // ]]></script>';
- if (empty($modSettings['disable_smf_js']))
- echo '
- <script type="text/javascript" src="', $scripturl, '?action=viewsmfile;filename=latest-themes.js"></script>';
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var tempOldOnload;
- function smfSetLatestThemes()
- {
- if (typeof(window.smfLatestThemes) != "undefined")
- setInnerHTML(document.getElementById("themeLatest"), window.smfLatestThemes);
- if (tempOldOnload)
- tempOldOnload();
- }
- // ]]></script>';
- // Gotta love IE4, and its hatefulness...
- if ($context['browser']['is_ie4'])
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- addLoadEvent(smfSetLatestThemes);
- // ]]></script>';
- else
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- smfSetLatestThemes();
- // ]]></script>';
- }
- function template_list_themes()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['themeadmin_list_heading'], '</h3>
- </div>
- <div class="information">
- ', $txt['themeadmin_list_tip'], '
- </div>';
- // Show each theme.... with X for delete and a link to settings.
- foreach ($context['themes'] as $theme)
- {
- echo '
- <div class="title_bar">
- <h3 class="titlebg">
- <span class="floatleft"><strong><a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=settings">', $theme['name'], '</a></strong>', !empty($theme['version']) ? ' <em>(' . $theme['version'] . ')</em>' : '', '</span>';
- // You *cannot* delete the default theme. It's important!
- if ($theme['id'] != 1)
- echo '
- <span class="floatright"><a href="', $scripturl, '?action=admin;area=theme;sa=remove;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';', $context['admin-tr_token_var'], '=', $context['admin-tr_token'], '" onclick="return confirm(\'', $txt['theme_remove_confirm'], '\');"><img src="', $settings['images_url'], '/icons/delete.gif" alt="', $txt['theme_remove'], '" title="', $txt['theme_remove'], '" /></a></span>';
- echo '
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings themes_list">
- <dt>', $txt['themeadmin_list_theme_dir'], ':</dt>
- <dd', $theme['valid_path'] ? '' : ' class="error"', '>', $theme['theme_dir'], $theme['valid_path'] ? '' : ' ' . $txt['themeadmin_list_invalid'], '</dd>
- <dt>', $txt['themeadmin_list_theme_url'], ':</dt>
- <dd>', $theme['theme_url'], '</dd>
- <dt>', $txt['themeadmin_list_images_url'], ':</dt>
- <dd>', $theme['images_url'], '</dd>
- </dl>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- }
- echo '
- <form action="', $scripturl, '?action=admin;area=theme;', $context['session_var'], '=', $context['session_id'], ';sa=list" method="post" accept-charset="', $context['character_set'], '">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['themeadmin_list_reset'], '</h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings">
- <dt>
- <label for="reset_dir">', $txt['themeadmin_list_reset_dir'], '</label>:
- </dt>
- <dd>
- <input type="text" name="reset_dir" id="reset_dir" value="', $context['reset_dir'], '" size="40" style="width: 80%;" class="input_text" />
- </dd>
- <dt>
- <label for="reset_url">', $txt['themeadmin_list_reset_url'], '</label>:
- </dt>
- <dd>
- <input type="text" name="reset_url" id="reset_url" value="', $context['reset_url'], '" size="40" style="width: 80%;" class="input_text" />
- </dd>
- </dl>
- <input type="submit" name="submit" value="', $txt['themeadmin_list_reset_go'], '" class="button_submit" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="', $context['admin-tl_token_var'], '" value="', $context['admin-tl_token'], '" />
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </form>
- </div>
- <br class="clear" />';
- }
- function template_reset_list()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['themeadmin_reset_title'], '</h3>
- </div>
- <div class="information">
- ', $txt['themeadmin_reset_tip'], '
- </div>';
- // Show each theme.... with X for delete and a link to settings.
- $alternate = false;
- foreach ($context['themes'] as $theme)
- {
- $alternate = !$alternate;
- echo '
- <div class="title_bar">
- <h3 class="titlebg">', $theme['name'], '</h3>
- </div>
- <div class="windowbg', $alternate ? '' : '2','">
- <span class="topslice"><span></span></span>
- <div class="content">
- <ul class="reset">
- <li>
- <a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=reset">', $txt['themeadmin_reset_defaults'], '</a> <em class="smalltext">(', $theme['num_default_options'], ' ', $txt['themeadmin_reset_defaults_current'], ')</em>
- </li>
- <li>
- <a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=reset;who=1">', $txt['themeadmin_reset_members'], '</a>
- </li>
- <li>
- <a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=reset;who=2;', $context['admin-stor_token_var'], '=', $context['admin-stor_token'], '" onclick="return confirm(\'', $txt['themeadmin_reset_remove_confirm'], '\');">', $txt['themeadmin_reset_remove'], '</a> <em class="smalltext">(', $theme['num_members'], ' ', $txt['themeadmin_reset_remove_current'], ')</em>
- </li>
- </ul>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- }
- echo '
- </div>
- <br class="clear" />';
- }
- function template_set_options()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=theme;th=', $context['theme_settings']['theme_id'], ';sa=reset" method="post" accept-charset="', $context['character_set'], '">
- <input type="hidden" name="who" value="', $context['theme_options_reset'] ? 1 : 0, '" />
- <div class="cat_bar">
- <h3 class="catbg">', $txt['theme_options_title'], ' - ', $context['theme_settings']['name'], '</h3>
- </div>
- <div class="information">
- ', $context['theme_options_reset'] ? $txt['themeadmin_reset_options_info'] : $txt['theme_options_defaults'], '
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <ul class="theme_options">';
- foreach ($context['options'] as $setting)
- {
- echo '
- <li class="theme_option">';
- if ($context['theme_options_reset'])
- echo '
- <select name="', !empty($setting['default']) ? 'default_' : '', 'options_master[', $setting['id'], ']" onchange="this.form.options_', $setting['id'], '.disabled = this.selectedIndex != 1;">
- <option value="0" selected="selected">', $txt['themeadmin_reset_options_none'], '</option>
- <option value="1">', $txt['themeadmin_reset_options_change'], '</option>
- <option value="2">', $txt['themeadmin_reset_options_remove'], '</option>
- </select>';
- if ($setting['type'] == 'checkbox')
- {
- echo '
- <input type="hidden" name="' . (!empty($setting['default']) ? 'default_' : '') . 'options[' . $setting['id'] . ']" value="0" />
- <label for="options_', $setting['id'], '"><input type="checkbox" name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="options_', $setting['id'], '"', !empty($setting['value']) ? ' checked="checked"' : '', $context['theme_options_reset'] ? ' disabled="disabled"' : '', ' value="1" class="input_check" /> ', $setting['label'], '</label>';
- }
- elseif ($setting['type'] == 'list')
- {
- echo '
- <label for="options_', $setting['id'], '">', $setting['label'], '</label>
- <select name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="options_', $setting['id'], '"', $context['theme_options_reset'] ? ' disabled="disabled"' : '', '>';
- foreach ($setting['options'] as $value => $label)
- {
- echo '
- <option value="', $value, '"', $value == $setting['value'] ? ' selected="selected"' : '', '>', $label, '</option>';
- }
- echo '
- </select>';
- }
- else
- echo '
- <label for="options_', $setting['id'], '">', $setting['label'], '</label>
- <input type="text" name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="options_', $setting['id'], '" value="', $setting['value'], '"', $setting['type'] == 'number' ? ' size="5"' : '', $context['theme_options_reset'] ? ' disabled="disabled"' : '', ' class="input_text" />';
- if (isset($setting['description']))
- echo '
- <br /><span class="smalltext">', $setting['description'], '</span>';
- echo '
- </li>';
- }
- echo '
- </ul>
- <div class="righttext">
- <input type="submit" name="submit" value="', $txt['save'], '" class="button_submit" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="', $context['admin-sto_token_var'], '" value="', $context['admin-sto_token'], '" />
- </div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </form>
- </div>
- <br class="clear" />';
- }
- function template_set_settings()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=theme;sa=settings;th=', $context['theme_settings']['theme_id'], '" method="post" accept-charset="', $context['character_set'], '">
- <div class="title_bar">
- <h3 class="titlebg">
- <span class="ie6_header floatleft"><a href="', $scripturl, '?action=helpadmin;help=theme_settings" onclick="return reqWin(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.gif" alt="', $txt['help'], '" class="icon" /></a> ', $txt['theme_settings'], ' - ', $context['theme_settings']['name'], '</span>
- </h3>
- </div>';
- // @todo Why can't I edit the default theme popup.
- if ($context['theme_settings']['theme_id'] != 1)
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><img src="', $settings['images_url'], '/icons/config_sm.gif" alt="" class="icon" /> ', $txt['theme_edit'], '</span>
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <ul class="reset">
- <li>
- <a href="', $scripturl, '?action=admin;area=theme;th=', $context['theme_settings']['theme_id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=edit;filename=index.template.php">', $txt['theme_edit_index'], '</a>
- </li>
- <li>
- <a href="', $scripturl, '?action=admin;area=theme;th=', $context['theme_settings']['theme_id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=edit;directory=css">', $txt['theme_edit_style'], '</a>
- </li>
- </ul>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><img src="', $settings['images_url'], '/icons/config_sm.gif" alt="" class="icon" /> ', $txt['theme_url_config'], '</span>
- </h3>
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings">
- <dt>
- <label for="theme_name">', $txt['actual_theme_name'], '</label>
- </dt>
- <dd>
- <input type="text" id="theme_name" name="options[name]" value="', $context['theme_settings']['name'], '" size="32" class="input_text" />
- </dd>
- <dt>
- <label for="theme_url">', $txt['actual_theme_url'], '</label>
- </dt>
- <dd>
- <input type="text" id="theme_url" name="options[theme_url]" value="', $context['theme_settings']['actual_theme_url'], '" size="50" style="max-width: 100%; width: 50ex;" class="input_text" />
- </dd>
- <dt>
- <label for="images_url">', $txt['actual_images_url'], '</label>
- </dt>
- <dd>
- <input type="text" id="images_url" name="options[images_url]" value="', $context['theme_settings']['actual_images_url'], '" size="50" style="max-width: 100%; width: 50ex;" class="input_text" />
- </dd>
- <dt>
- <label for="theme_dir">', $txt['actual_theme_dir'], '</label>
- </dt>
- <dd>
- <input type="text" id="theme_dir" name="options[theme_dir]" value="', $context['theme_settings']['actual_theme_dir'], '" size="50" style="max-width: 100%; width: 50ex;" class="input_text" />
- </dd>
- </dl>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- // Do we allow theme variants?
- if (!empty($context['theme_variants']))
- {
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><img src="', $settings['images_url'], '/icons/config_sm.gif" alt="" align="top" /> ', $txt['theme_variants'], '</span>
- </h3>
- </div>
- <div class="windowbg2">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings">
- <dt>
- <label for="variant">', $txt['theme_variants_default'], '</label>:
- </dt>
- <dd>
- <select id="variant" name="options[default_variant]" onchange="changeVariant(this.value)">';
- foreach ($context['theme_variants'] as $key => $variant)
- echo '
- <option value="', $key, '" ', $context['default_variant'] == $key ? 'selected="selected"' : '', '>', $variant['label'], '</option>';
- echo '
- </select>
- </dd>
- <dt>
- <label for="disable_user_variant">', $txt['theme_variants_user_disable'], '</label>:
- </dt>
- <dd>
- <input type="hidden" name="options[disable_user_variant]" value="0" />
- <input type="checkbox" name="options[disable_user_variant]" id="disable_user_variant"', !empty($context['theme_settings']['disable_user_variant']) ? ' checked="checked"' : '', ' value="1" class="input_check" />
- </dd>
- </dl>
- <img src="', $context['theme_variants'][$context['default_variant']]['thumbnail'], '" id="variant_preview" alt="" />
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- }
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <span class="ie6_header floatleft"><img src="', $settings['images_url'], '/icons/config_sm.gif" alt="" class="icon" /> ', $txt['theme_options'], '</span>
- </h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <dl class="settings flow_auto">';
- foreach ($context['settings'] as $setting)
- {
- // Is this a separator?
- if (empty($setting))
- {
- echo '
- </dl>
- <hr class="hrcolor" />
- <dl class="settings flow_auto">';
- }
- // A checkbox?
- elseif ($setting['type'] == 'checkbox')
- {
- echo '
- <dt>
- <label for="', $setting['id'], '">', $setting['label'], '</label>:';
- if (isset($setting['description']))
- echo '<br />
- <span class="smalltext">', $setting['description'], '</span>';
- echo '
- </dt>
- <dd>
- <input type="hidden" name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" value="0" />
- <input type="checkbox" name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="', $setting['id'], '"', !empty($setting['value']) ? ' checked="checked"' : '', ' value="1" class="input_check" />
- </dd>';
- }
- // A list with options?
- elseif ($setting['type'] == 'list')
- {
- echo '
- <dt>
- <label for="', $setting['id'], '">', $setting['label'], '</label>:';
- if (isset($setting['description']))
- echo '<br />
- <span class="smalltext">', $setting['description'], '</span>';
- echo '
- </dt>
- <dd>
- <select name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="', $setting['id'], '">';
- foreach ($setting['options'] as $value => $label)
- echo '
- <option value="', $value, '"', $value == $setting['value'] ? ' selected="selected"' : '', '>', $label, '</option>';
- echo '
- </select>
- </dd>';
- }
- // A regular input box, then?
- else
- {
- echo '
- <dt>
- <label for="', $setting['id'], '">', $setting['label'], '</label>:';
- if (isset($setting['description']))
- echo '<br />
- <span class="smalltext">', $setting['description'], '</span>';
- echo '
- </dt>
- <dd>
- <input type="text" name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="', $setting['id'], '" value="', $setting['value'], '"', $setting['type'] == 'number' ? ' size="5"' : (empty($setting['size']) ? ' size="40"' : ' size="' . $setting['size'] . '"'), ' class="input_text" />
- </dd>';
- }
- }
- echo '
- </dl>
- <div class="righttext">
- <input type="submit" name="submit" value="', $txt['save'], '" class="button_submit" />
- </div>
- </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-sts_token_var'], '" value="', $context['admin-sts_token'], '" />
- </form>
- </div>
- <br class="clear" />';
- if (!empty($context['theme_variants']))
- {
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var oThumbnails = {';
- // All the variant thumbnails.
- $count = 1;
- foreach ($context['theme_variants'] as $key => $variant)
- {
- echo '
- \'', $key, '\': \'', $variant['thumbnail'], '\'', (count($context['theme_variants']) == $count ? '' : ',');
- $count++;
- }
- echo '
- }
- function changeVariant(sVariant)
- {
- document.getElementById(\'variant_preview\').src = oThumbnails[sVariant];
- }
- // ]]></script>';
- }
- }
- // This template allows for the selection of different themes ;).
- function template_pick()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="pick_theme">
- <form action="', $scripturl, '?action=theme;sa=pick;u=', $context['current_member'], ';', $context['session_var'], '=', $context['session_id'], '" method="post" accept-charset="', $context['character_set'], '">';
- // Just go through each theme and show its information - thumbnail, etc.
- foreach ($context['available_themes'] as $theme)
- {
- echo '
- <div class="cat_bar">
- <h3 class="catbg">
- <a href="', $scripturl, '?action=theme;sa=pick;u=', $context['current_member'], ';th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $theme['name'], '</a>
- </h3>
- </div>
- <div class="', $theme['selected'] ? 'windowbg' : 'windowbg2', '">
- <span class="topslice"><span></span></span>
- <div class="flow_hidden content">
- <div class="floatright"><a href="', $scripturl, '?action=theme;sa=pick;u=', $context['current_member'], ';theme=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], '" id="theme_thumb_preview_', $theme['id'], '" title="', $txt['theme_preview'], '"><img src="', $theme['thumbnail_href'], '" id="theme_thumb_', $theme['id'], '" alt="" class="padding" /></a></div>
- <p>', $theme['description'], '</p>';
- if (!empty($theme['variants']))
- {
- echo '
- <label for="variant', $theme['id'], '"><strong>', $theme['pick_label'], '</strong></label>:
- <select id="variant', $theme['id'], '" name="vrt[', $theme['id'], ']" onchange="changeVariant', $theme['id'], '(this.value);">';
- foreach ($theme['variants'] as $key => $variant)
- {
- echo '
- <option value="', $key, '" ', $theme['selected_variant'] == $key ? 'selected="selected"' : '', '>', $variant['label'], '</option>';
- }
- echo '
- </select>
- <noscript>
- <input type="submit" name="save[', $theme['id'], ']" value="', $txt['save'], '" class="button_submit" />
- </noscript>';
- }
- echo '
- <br />
- <p>
- <em class="smalltext">', $theme['num_users'], ' ', ($theme['num_users'] == 1 ? $txt['theme_user'] : $txt['theme_users']), '</em>
- </p>
- <br />
- <ul class="reset">
- <li>
- <a href="', $scripturl, '?action=theme;sa=pick;u=', $context['current_member'], ';th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], '" id="theme_use_', $theme['id'], '">[', $txt['theme_set'], ']</a>
- </li>
- <li>
- <a href="', $scripturl, '?action=theme;sa=pick;u=', $context['current_member'], ';theme=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], '" id="theme_preview_', $theme['id'], '">[', $txt['theme_preview'], ']</a>
- </li>
- </ul>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- if (!empty($theme['variants']))
- {
- echo '
- <script type="text/javascript"><!-- // --><![CDATA[
- var sBaseUseUrl = smf_prepareScriptUrl(smf_scripturl) + \'action=theme;sa=pick;u=', $context['current_member'], ';th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], '\';
- var sBasePreviewUrl = smf_prepareScriptUrl(smf_scripturl) + \'action=theme;sa=pick;u=', $context['current_member'], ';theme=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], '\';
- var oThumbnails', $theme['id'], ' = {';
- // All the variant thumbnails.
- $count = 1;
- foreach ($theme['variants'] as $key => $variant)
- {
- echo '
- \'', $key, '\': \'', $variant['thumbnail'], '\'', (count($theme['variants']) == $count ? '' : ',');
- $count++;
- }
- echo '
- }
- function changeVariant', $theme['id'], '(sVariant)
- {
- document.getElementById(\'theme_thumb_', $theme['id'], '\').src = oThumbnails', $theme['id'], '[sVariant];
- document.getElementById(\'theme_use_', $theme['id'], '\').href = sBaseUseUrl + \';vrt=\' + sVariant;
- document.getElementById(\'theme_thumb_preview_', $theme['id'], '\').href = sBasePreviewUrl + \';vrt=\' + sVariant + \';variant=\' + sVariant;
- document.getElementById(\'theme_preview_', $theme['id'], '\').href = sBasePreviewUrl + \';vrt=\' + sVariant + \';variant=\' + sVariant;
- }
- // ]]></script>';
- }
- }
- echo '
- </form>
- </div>
- <br class="clear" />';
- }
- // Okay, that theme was installed successfully!
- function template_installed()
- {
- global $context, $settings, $options, $scripturl, $txt;
- // Not much to show except a link back...
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">', $context['page_title'], '</h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <p>
- <a href="', $scripturl, '?action=admin;area=theme;sa=settings;th=', $context['installed_theme']['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $context['installed_theme']['name'], '</a> ', $txt['theme_installed_message'], '
- </p>
- <p>
- <a href="', $scripturl, '?action=admin;area=theme;sa=admin;', $context['session_var'], '=', $context['session_id'], '">', $txt['back'], '</a>
- </p>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>
- <br class="clear" />';
- }
- function template_edit_list()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['themeadmin_edit_title'], '</h3>
- </div>';
- $alternate = false;
- foreach ($context['themes'] as $theme)
- {
- $alternate = !$alternate;
- echo '
- <div class="title_bar">
- <h3 class="titlebg">
- <a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=edit">', $theme['name'], '</a>', !empty($theme['version']) ? '
- <em>(' . $theme['version'] . ')</em>' : '', '
- </h3>
- </div>
- <div class="windowbg', $alternate ? '' : '2','">
- <span class="topslice"><span></span></span>
- <div class="content">
- <ul class="reset">
- <li><a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=edit">', $txt['themeadmin_edit_browse'], '</a></li>', $theme['can_edit_style'] ? '
- <li><a href="' . $scripturl . '?action=admin;area=theme;th=' . $theme['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';sa=edit;directory=css">' . $txt['themeadmin_edit_style'] . '</a></li>' : '', '
- <li><a href="', $scripturl, '?action=admin;area=theme;th=', $theme['id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=copy">', $txt['themeadmin_edit_copy_template'], '</a></li>
- </ul>
- </div>
- <span class="botslice"><span></span></span>
- </div>';
- }
- echo '
- </div>
- <br class="clear" />';
- }
- function template_copy_template()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['themeadmin_edit_filename'], '</h3>
- </div>
- <div class="information">
- ', $txt['themeadmin_edit_copy_warning'], '
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <ul class="theme_options">';
- $alternate = false;
- foreach ($context['available_templates'] as $template)
- {
- $alternate = !$alternate;
- echo '
- <li class="reset flow_hidden windowbg', $alternate ? '2' : '', '">
- <span class="floatleft">', $template['filename'], $template['already_exists'] ? ' <span class="error">(' . $txt['themeadmin_edit_exists'] . ')</span>' : '', '</span>
- <span class="floatright">';
- if ($template['can_copy'])
- echo '<a href="', $scripturl, '?action=admin;area=theme;th=', $context['theme_id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=copy;template=', $template['value'], '" onclick="return confirm(\'', $template['already_exists'] ? $txt['themeadmin_edit_overwrite_confirm'] : $txt['themeadmin_edit_copy_confirm'], '\');">', $txt['themeadmin_edit_do_copy'], '</a>';
- else
- echo $txt['themeadmin_edit_no_copy'];
- echo '
- </span>
- </li>';
- }
- echo '
- </ul>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </div>
- <br class="clear" />';
- }
- function template_edit_browse()
- {
- global $context, $settings, $options, $scripturl, $txt;
- echo '
- <div id="admincenter">
- <table width="100%" class="table_grid tborder">
- <thead>
- <tr class="catbg">
- <th class="lefttext first_th" scope="col" width="50%">', $txt['themeadmin_edit_filename'], '</th>
- <th scope="col" width="35%">', $txt['themeadmin_edit_modified'], '</th>
- <th class="last_th" scope="col" width="15%">', $txt['themeadmin_edit_size'], '</th>
- </tr>
- </thead>
- <tbody>';
- $alternate = false;
- foreach ($context['theme_files'] as $file)
- {
- $alternate = !$alternate;
- echo '
- <tr class="windowbg', $alternate ? '2' : '', '">
- <td>';
- if ($file['is_editable'])
- echo '<a href="', $file['href'], '"', $file['is_template'] ? ' style="font-weight: bold;"' : '', '>', $file['filename'], '</a>';
- elseif ($file['is_directory'])
- echo '<a href="', $file['href'], '" class="is_directory">', $file['filename'], '</a>';
- else
- echo $file['filename'];
- echo '
- </td>
- <td class="righttext">', !empty($file['last_modified']) ? $file['last_modified'] : '', '</td>
- <td class="righttext">', $file['size'], '</td>
- </tr>';
- }
- echo '
- </tbody>
- </table>
- </div>
- <br class="clear" />';
- }
- // Wanna edit the stylesheet?
- function template_edit_style()
- {
- global $context, $settings, $options, $scripturl, $txt;
- if ($context['session_error'])
- echo '
- <div class="errorbox">
- ', $txt['error_session_timeout'], '
- </div>';
- // From now on no one can complain that editing css is difficult. If you disagree, go to www.w3schools.com.
- echo '
- <div id="admincenter">
- <script type="text/javascript"><!-- // --><![CDATA[
- var previewData = "";
- var previewTimeout;
- var editFilename = ', JavaScriptEscape($context['edit_filename']), ';
- // Load up a page, but apply our stylesheet.
- function navigatePreview(url)
- {
- var myDoc = new XMLHttpRequest();
- myDoc.onreadystatechange = function ()
- {
- if (myDoc.readyState != 4)
- return;
- if (myDoc.responseText != null && myDoc.status == 200)
- {
- previewData = myDoc.responseText;
- document.getElementById("css_preview_box").style.display = "";
- // Revert to the theme they actually use ;).
- var tempImage = new Image();
- tempImage.src = smf_prepareScriptUrl(smf_scripturl) + "action=admin;area=theme;sa=edit;theme=', $settings['theme_id'], ';preview;" + (new Date().getTime());
- refreshPreviewCache = null;
- refreshPreview(false);
- }
- };
- var anchor = "";
- if (url.indexOf("#") != -1)
- {
- anchor = url.substr(url.indexOf("#"));
- url = url.substr(0, url.indexOf("#"));
- }
- myDoc.open("GET", url + (url.indexOf("?") == -1 ? "?" : ";") + "theme=', $context['theme_id'], '" + anchor, true);
- myDoc.send(null);
- }
- navigatePreview(smf_scripturl);
- var refreshPreviewCache;
- function refreshPreview(check)
- {
- var identical = document.forms.stylesheetForm.entire_file.value == refreshPreviewCache;
- // Don\'t reflow the whole thing if nothing changed!!
- if (check && identical)
- return;
- refreshPreviewCache = document.forms.stylesheetForm.entire_file.value;
- // Replace the paths for images.
- refreshPreviewCache = refreshPreviewCache.replace(/url\(\.\.\/images/gi, "url(" + smf_images_url);
- // Try to do it without a complete reparse.
- if (identical)
- {
- try
- {
- ';
- if ($context['browser']['is_ie'])
- echo '
- var sheets = frames["css_preview_box"].document.styleSheets;
- for (var j = 0; j < sheets.length; j++)
- {
- if (sheets[j].id == "css_preview_box")
- sheets[j].cssText = document.forms.stylesheetForm.entire_file.value;
- }';
- else
- echo '
- setInnerHTML(frames["css_preview_box"].document.getElementById("css_preview_sheet"), document.forms.stylesheetForm.entire_file.value);';
- echo '
- }
- catch (e)
- {
- identical = false;
- }
- }
- // This will work most of the time... could be done with an after-apply, maybe.
- if (!identical)
- {
- var data = previewData + "";
- var preview_sheet = document.forms.stylesheetForm.entire_file.value;
- var stylesheetMatch = new RegExp(\'<link rel="stylesheet"[^>]+href="[^"]+\' + editFilename + \'[^>]*>\');
- // Replace the paths for images.
- preview_sheet = preview_sheet.replace(/url\(\.\.\/images/gi, "url(" + smf_images_url);
- data = data.replace(stylesheetMatch, "<style type=\"text/css\" id=\"css_preview_sheet\">" + preview_sheet + "<" + "/style>");
- frames["css_preview_box"].document.open();
- frames["css_preview_box"].document.write(data);
- frames["css_preview_box"].document.close();
- // Next, fix all its links so we can handle them and reapply the new css!
- frames["css_preview_box"].onload = function ()
- {
- var fixLinks = frames["css_preview_box"].document.getElementsByTagName("a");
- for (var i = 0; i < fixLinks.length; i++)
- {
- if (fixLinks[i].onclick)
- continue;
- fixLinks[i].onclick = function ()
- {
- window.parent.navigatePreview(this.href);
- return false;
- };
- }
- };
- }
- }
- // The idea here is simple: don\'t refresh the preview on every keypress, but do refresh after they type.
- function setPreviewTimeout()
- {
- if (previewTimeout)
- {
- window.clearTimeout(previewTimeout);
- previewTimeout = null;
- }
- previewTimeout = window.setTimeout("refreshPreview(true); previewTimeout = null;", 500);
- }
- // ]]></script>
- <iframe id="css_preview_box" name="css_preview_box" src="about:blank" width="99%" height="300" frameborder="0" style="display: none; margin-bottom: 2ex; border: 1px solid black;"></iframe>';
- // Just show a big box.... gray out the Save button if it's not saveable... (ie. not 777.)
- echo '
- <form action="', $scripturl, '?action=admin;area=theme;th=', $context['theme_id'], ';sa=edit" method="post" accept-charset="', $context['character_set'], '" name="stylesheetForm" id="stylesheetForm">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['theme_edit'], ' - ', $context['edit_filename'], '</h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">';
- if (!$context['allow_save'])
- echo '
- ', $txt['theme_edit_no_save'], ': ', $context['allow_save_filename'], '<br />';
- echo '
- <textarea name="entire_file" cols="80" rows="20" style="' . ($context['browser']['is_ie8'] ? 'width: 635px; max-width: 96%; min-width: 96%' : 'width: 96%') . '; font-family: monospace; margin-top: 1ex; white-space: pre;" onkeyup="setPreviewTimeout();" onchange="refreshPreview(true);">', $context['entire_file'], '</textarea><br />
- <div class="padding righttext">
- <input type="submit" name="submit" value="', $txt['theme_edit_save'], '"', $context['allow_save'] ? '' : ' disabled="disabled"', ' style="margin-top: 1ex;" class="button_submit" />
- <input type="button" value="', $txt['themeadmin_edit_preview'], '" onclick="refreshPreview(false);" class="button_submit" />
- </div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- <input type="hidden" name="filename" value="', $context['edit_filename'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- </form>
- </div>
- <br class="clear" />';
- }
- // This edits the template...
- function template_edit_template()
- {
- global $context, $settings, $options, $scripturl, $txt;
- if ($context['session_error'])
- echo '
- <div class="errorbox">
- ', $txt['error_session_timeout'], '
- </div>';
- if (isset($context['parse_error']))
- echo '
- <div class="errorbox">
- ', $txt['themeadmin_edit_error'], '
- <div><tt>', $context['parse_error'], '</tt></div>
- </div>';
- // Just show a big box.... gray out the Save button if it's not saveable... (ie. not 777.)
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=theme;th=', $context['theme_id'], ';sa=edit" method="post" accept-charset="', $context['character_set'], '">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['theme_edit'], ' - ', $context['edit_filename'], '</h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">';
- if (!$context['allow_save'])
- echo '
- ', $txt['theme_edit_no_save'], ': ', $context['allow_save_filename'], '<br />';
- foreach ($context['file_parts'] as $part)
- echo '
- <label for="on_line', $part['line'], '">', $txt['themeadmin_edit_on_line'], ' ', $part['line'], '</label>:<br />
- <div class="centertext">
- <textarea id="on_line', $part['line'] ,'" name="entire_file[]" cols="80" rows="', $part['lines'] > 14 ? '14' : $part['lines'], '" class="edit_file">', $part['data'], '</textarea>
- </div>';
- echo '
- <div class="padding righttext">
- <input type="submit" name="submit" value="', $txt['theme_edit_save'], '"', $context['allow_save'] ? '' : ' disabled="disabled"', ' class="button_submit" />
- <input type="hidden" name="filename" value="', $context['edit_filename'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- </div>
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </form>
- </div>';
- }
- function template_edit_file()
- {
- global $context, $settings, $options, $scripturl, $txt;
- if ($context['session_error'])
- echo '
- <div class="errorbox">
- ', $txt['error_session_timeout'], '
- </div>';
- //Is this file writeable?
- if (!$context['allow_save'])
- echo '
- <div class="errorbox">
- ', $txt['theme_edit_no_save'], ': ', $context['allow_save_filename'], '
- </div>';
- // Just show a big box.... gray out the Save button if it's not saveable... (ie. not 777.)
- echo '
- <div id="admincenter">
- <form action="', $scripturl, '?action=admin;area=theme;th=', $context['theme_id'], ';sa=edit" method="post" accept-charset="', $context['character_set'], '">
- <div class="cat_bar">
- <h3 class="catbg">', $txt['theme_edit'], ' - ', $context['edit_filename'], '</h3>
- </div>
- <div class="windowbg">
- <span class="topslice"><span></span></span>
- <div class="content">
- <textarea name="entire_file" id="entire_file" cols="80" rows="20" class="edit_file">', $context['entire_file'], '</textarea><br />
- <input type="submit" name="submit" value="', $txt['theme_edit_save'], '"', $context['allow_save'] ? '' : ' disabled="disabled"', ' class="button_submit" />
- <input type="hidden" name="filename" value="', $context['edit_filename'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />';
- // Hopefully it exists.
- if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token']))
- echo '
- <input type="text" name="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token_var'], '" value="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'], '" />';
- echo '
- </div>
- <span class="botslice"><span></span></span>
- </div>
- </form>
- </div>
- <br class="clear" />';
- }
- ?>
|