Файл: panel/settings_sys.php
Строк: 104
<?php
/* DCMS Special
* Дата последнего редактирования 14.12.2015
* Модифицировал densnet
*/
require_once '../sys/inc/start.php';
require_once H . 'sys/inc/compress.php';
require_once H . 'sys/inc/sess.php';
require_once H . 'sys/inc/settings.php';
$temp_set = $set;
require_once H . 'sys/inc/db_connect.php';
require_once H . 'sys/inc/ipua.php';
require_once H . 'sys/inc/fnc.php';
require_once H . 'sys/inc/adm_check.php';
require_once H . 'sys/inc/user.php';
access('adm_set_sys', null, 'index.php?' . SID);
adm_check();
$set['title'] = 'Настройки системы';
require_once H . 'sys/inc/thead.php';
if (isset($_POST['save'])) {
$temp_set['show_err_php'] = (isset($_POST['show_err_php']) && $_POST['show_err_php']);
$temp_set['antidos'] = (isset($_POST['antidos']) && $_POST['antidos']);
$temp_set['antimat'] = (isset($_POST['antimat']) && $_POST['antimat']);
$temp_set['meta_keywords'] = esc($_POST['meta_keywords']);
$temp_set['meta_description'] = esc($_POST['meta_description']);
$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 (save_settings($temp_set)) {
admin_log('Настройки', 'Система', 'Изменение системных настроек');
msg('Настройки успешно приняты');
} else {
$err = 'Нет прав для изменения файла настроек';
}
}
aut();
err();
#Навигация
echo "<ol class='breadcrumb'>";
echo "<li><a href='/'><span class='fa fa-home fa-fw'></span></a></li>";
echo "<li><a href='/panel/'>Панель управления</a></li>";
echo "<li class='active'>Настройка системы</li>";
echo "</ol>";
echo "<form method = 'post' class = 'list-group-item' action = '?'>";
echo "Название сайта<br />";
echo "<input class='form-control' name = 'title' value = '$temp_set[title]' type = 'text' />";
echo "Пунктов на страницу<br />";
echo "<input class='form-control' name = 'p_str' value = '$temp_set[p_str]' type = 'text' />";
echo "Ключевые слова (META)<br />n";
echo "<textarea class='form-control' rows='3' name = 'meta_keywords'>$temp_set[meta_keywords]</textarea>n";
echo "Описание (META)<br />n";
echo "<textarea class='form-control' rows='3' name = 'meta_description'>$temp_set[meta_description]</textarea>n";
echo "<label class='c-input c-checkbox'><input type='checkbox'" . ($temp_set['antidos'] ? " checked='checked'" : null) . " name = 'antidos' value='1' /><span class='c-indicator'></span> Анти-Dos*</label><br />n";
echo "<label class='c-input c-checkbox'><input type='checkbox'" . ($temp_set['show_err_php'] ? " checked='checked'" : null) . " name = 'show_err_php' value='1' /><span class='c-indicator'></span> Ошибки интерпретатора</label><br />n";
echo "<label class='c-input c-checkbox'><input type='checkbox'" . ($temp_set['antimat'] ? " checked='checked'" : null) . " name = 'antimat' value='1' /><span class='c-indicator'></span> Анти-Мат</label><br />n";
echo "E-mail для BackUp<br /><input class='form-control' type='text' name='mail_backup' value='$temp_set[mail_backup]' />n";
echo "<br />n";
echo "* Анти-Dos - защита от частых запросов с одного IP-адреса<br />n";
echo "<button name='save' class='btn btn-success'><span class='fa fa-save fa-fw'></span> Сохранить</button>";
echo "</form>n";
require_once H . 'sys/inc/tfoot.php';