Файл: RootPanel 1.7.0 FreeCode/RootPanel 1.7.0 FreeCode/_rootadmin/_editor.inc.php
Строк: 32
<?
if ($tpl and $tlng) {
if ($tpl == "tpl_tarifsphp") { $txt="tarifs.php"; }
if ($tpl == "tpl_faktura") { $txt="Счет-фактура для юридических лиц"; }
if ($tpl == "tpl_sberbank") { $txt="Квитанция для физических лиц"; }
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="<?=$do?>">
<input type=hidden name=sub value="save">
<input type=hidden name=tpl value="<?=$tpl?>">
<table cellpadding=3 width=100%>
<tr><td align=center bgcolor=<?=$font_head?>><B>HTML-редактор страниц :: <?=$txt?></b></td></tr>
<tr><td align=center><textarea name="editorarea" id="editorarea" cols="20" rows="30" style="width: 100%"><?=$tpll[template]?></textarea></td></tr>
<tr><td align=center><input type=submit value=Сохранить></td></tr>
</table>
</form>
<?
}
?>