Файл: panel/settings_sys.php
Строк: 95
<?php
/* DCMS S (Special)
* Версия файла 0.0.1
* Дата последнего редактирования 15.11.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';
user::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'] = text::esc($_POST['meta_keywords']);
$temp_set['meta_description'] = text::esc($_POST['meta_description']);
$temp_set['title'] = text::esc(stripcslashes(htmlspecialchars($_POST['title'])), 1);
$temp_set['mail_backup'] = text::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 = 'Нет прав для изменения файла настроек';
}
}
title();
aut();
err();
echo "<div class = 'list-group-item'><center><b>Настройки системы</b></center></div>";
echo "<form method = 'post' class = 'list-group-item' action = '?'>";
echo "<b>Название сайта</b><br />";
echo "<input class='form-control' name = 'title' value = '$temp_set[title]' type = 'text' />";
echo "<b>Пунктов на страницу</b><br />";
echo "<input class='form-control' name = 'p_str' value = '$temp_set[p_str]' type = 'text' />";
echo "<b>Ключевые слова (META)</b><br />n";
echo "<textarea class='form-control' rows='3' name = 'meta_keywords'>$temp_set[meta_keywords]</textarea>n";
echo "<b>Описание (META)</b><br />n";
echo "<textarea class='form-control' rows='3' name = 'meta_description'>$temp_set[meta_description]</textarea>n";
echo "<div class='checkbox'>";
echo "<label><input type = 'checkbox'" . ($temp_set['antidos'] ? " checked = 'checked'" : null) . " name = 'antidos' value='1' /> Анти-Dos*</label><br />n";
echo "<label><input type = 'checkbox'" . ($temp_set['show_err_php'] ? " checked = 'checked'" : null) . " name = 'show_err_php' value='1' /> Ошибки интерпретатора</label><br />n";
echo "<label><input type = 'checkbox'" . ($temp_set['antimat'] ? " checked = 'checked'" : null) . " name = 'antimat' value='1' /> Анти-Мат</label><br />n";
echo "</div>";
echo "<b>E-mail для BackUp</b><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'></span> Сохранить</button>";
echo "</form>n";
if (user::access('adm_panel_show')) {
echo "<div class='list-group-item'><a href='/panel/'><span class='fa fa-arrow-left'></span> Панель управления</a></div>";
}
require_once H . 'sys/inc/tfoot.php';