Файл: _rootadmin/_editor.inc.php
Строк: 38
<?
if ($tpl and $tlng) {
if ($tpl == "tpl_tarifsphp") { $txt="tarifs.php"; }
if ($tpl == "tpl_faktura") { $txt="Счет для юридических лиц (HTML)"; }
if ($tpl == "tpl_faktura_pdf") { $txt="Счет для юридических лиц (PDF)"; }
if ($tpl == "tpl_faktura_faktura_pdf") { $txt="Счет-фактура для юридических лиц (PDF)"; }
if ($tpl == "tpl_sberbank") { $txt="Квитанция для физических лиц (HTML)"; }
if ($tpl == "tpl_sberbank_pdf") { $txt="Квитанция для физических лиц (PDF)"; }
if ($tpl == "tpl_dogovor") { $txt="Договор с клиентом"; }
if ($tpl == "tpl_dogovor_dodatok") { $txt="Договор с клиентом (приложение №1)"; }
if ($sub == "save") {
checkAdminAccess('sHTMLEdit',1);
@mysql_query("update templates set template='$editorarea' where param='$tpl' and language='$tlng'") or die("File: ".__FILE__."<BR>Line: ".__LINE__."<BR>MySQL Error: ".mysql_error());
writeAdminLog("Изменен шаблон в HTML-редакторе: $txt");
print "Страница успешно сохранена.<BR><BR>";
}
checkAdminAccess('sHTMLRead',1);
$tpll = GetTpl($tpl,$tlng,1);
?>
<form method=POST>
<input type=hidden name=do value="<? print $do?>">
<input type=hidden name=sub value="save">
<input type=hidden name=tpl value="<? print $tpl?>">
<table cellpadding=3 width=100%>
<tr><td align=center bgcolor=<? print $font_head?>><B>HTML-редактор страниц :: <? print $txt?></b></td></tr>
<tr><td align=center><textarea name="editorarea" id="editorarea" cols="20" rows="30" style="width: 100%"><? print $tpll[template]?></textarea></td></tr>
<tr><td align=center><input type=submit value=Сохранить></td></tr>
</table>
</form>
<?
}
?>