Файл: adm_panel/settings_sys.php
Строк: 138
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
$temp_set=$set;
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/adm_check.php';
include_once '../sys/inc/user.php';
user_access('adm_set_sys',null,'index.php?'.SID);
adm_check();
$set['title']='Настройки системы';
include_once '../sys/inc/thead.php';
title();
if (isset($_POST['save'])){
//ShaMan
$temp_set['title']=esc(stripcslashes(htmlspecialchars($_POST['title'])),1);
// Тут конец моих дум
$temp_set['mail_backup']=esc($_POST['mail_backup']);
$temp_set['p_str']=intval($_POST['p_str']);
mysql_query("ALTER TABLE `user` CHANGE `set_p_str` `set_p_str` INT( 11 ) DEFAULT '$temp_set[p_str]'");
if (!preg_match('#..#',$_POST['set_them']) && is_dir(H.'style/themes/'.$_POST['set_them'])){
$temp_set['set_them']=$_POST['set_them'];
mysql_query("ALTER TABLE `user` CHANGE `set_them` `set_them` VARCHAR( 32 ) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT '$temp_set[set_them]'");
}
if (!preg_match('#..#',$_POST['set_them2']) && is_dir(H.'style/themes/'.$_POST['set_them2'])){
$temp_set['set_them2']=$_POST['set_them2'];
mysql_query("ALTER TABLE `user` CHANGE `set_them2` `set_them2` VARCHAR( 32 ) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT '$temp_set[set_them2]'");
}
if ($_POST['show_err_php']==1 || $_POST['show_err_php']==0){
$temp_set['show_err_php']=intval($_POST['show_err_php']);
}
if (isset($_POST['antidos']) && $_POST['antidos']==1)
$temp_set['antidos']=1; else $temp_set['antidos']=0;
if (isset($_POST['antimat']) && $_POST['antimat']==1)
$temp_set['antimat']=1; else $temp_set['antimat']=0;
$temp_set['meta_keywords']=esc(stripcslashes(htmlspecialchars($_POST['meta_keywords'])),1);
$temp_set['meta_description']=esc(stripcslashes(htmlspecialchars($_POST['meta_description'])),1);
if (save_settings($temp_set)){
admin_log('Настройки','Система','Изменение системных настроек');
msg('Настройки успешно приняты');
}
else
$err='Нет прав для изменения файла настроек';
}
err();
aut();
echo '<div class="block">';
echo '<form method="post" action="?">';
echo 'Название сайта:</br>
<input class="input" name="title" value="'.$temp_set[title].'" type="text">';
echo 'Пунктов на страницу:</br>
<input class="input" name="p_str" value="'.$temp_set[p_str].'" type="text">';
echo 'Тема (WAP):</br>
<select class="input" name="set_them">';
$opendirthem=opendir(H.'style/themes');
while ($themes=readdir($opendirthem)){
//Пропускаем корневые папки и файлы
if ($themes=='.' || $themes=='..' || !is_dir(H."style/themes/$themes"))continue;
//Пропускаем темы для web браузеров
if (file_exists(H."style/themes/$themes/.only_for_web"))continue;
echo "<option value='$themes'".($temp_set['set_them']==$themes?" selected='selected'":null).">".trim(file_get_contents(H.'style/themes/'.$themes.'/them.name'))."</option>n";
}
closedir($opendirthem);
echo '</select>';
echo 'Тема (WEB):</br>
<select class="input" name="set_them2">';
$opendirthem=opendir(H.'style/themes');
while ($themes=readdir($opendirthem)){
//Пропускаем корневые папки и файлы
if ($themes=='.' || $themes=='..' || !is_dir(H."style/themes/$themes"))continue;
//Пропускаем темы для wap браузеров
if (file_exists(H."style/themes/$themes/.only_for_wap"))continue;
echo "<option value='$themes'".($temp_set['set_them2']==$themes?" selected='selected'":null).">".trim(file_get_contents(H.'style/themes/'.$themes.'/them.name'))."</option>n";
}
closedir($opendirthem);
echo '</select>';
echo 'Ключевые слова (META):</br>
<textarea class="input2" name="meta_keywords">'.$temp_set[meta_keywords].'</textarea>';
echo 'Описание (META):</br>
<textarea class="input2" name="meta_description">'.$temp_set[meta_description].'</textarea>';
echo '<label><input type="checkbox"'.($temp_set['antidos']?' checked="checked"':null).' name="antidos" value="1"> Анти-Dos</label></br>';
echo '<label><input type="checkbox"'.($temp_set['antimat']?' checked="checked"':null).' name="antimat" value="1"> Анти-Мат</label></br>';
echo 'Ошибки интерпретатора:</br>
<select class="input" name="show_err_php">
<option value="0"'.($temp_set['show_err_php']==0?' selected="selected"':null).'">Скрывать</option>
<option value="1"'.($temp_set['show_err_php']==1?' selected="selected"':null).'">Показывать администрации</option>
</select>';
echo 'Email для отправки бекапа:</br>
<input class="input" type="text" name="mail_backup" value="'.$temp_set[mail_backup].'">';
echo '<input class="button" value="Изменить" name="save" type="submit">';
echo '</form>';
echo '</div>';
if (user_access('adm_panel_show')){
echo '<a class="link3" href="/adm_panel/"><i class="material-icons icon">keyboard_arrow_left</i> Админ панель</a>';
}
include_once '../sys/inc/tfoot.php';
?>