Файл: adm_panel/settings_foto.php
Строк: 62
<?php
/* Мод "Панель управления"
* Версия v0.0.1
* Дата последнего редактирования 30.11.2014
* Двиг DCMS Special
* Модифицировал densnet
* Файл settings_foto.php
* Описание: Настройки фотогалереи
*/
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_foto', null, 'index.php?' . SID);
adm_check();
$set['title'] = 'Настройки фотогалереи';
require_once H . 'sys/inc/thead.php';
if (isset($_POST['save'])) {
$temp_set['max_upload_foto_x'] = intval($_POST['max_upload_foto_x']);
$temp_set['max_upload_foto_y'] = intval($_POST['max_upload_foto_y']);
if (save_settings($temp_set)) {
admin_log('Настройки', 'Фотогалерея', 'Изменение настроек фотогалереи');
msg('Настройки успешно приняты');
} else
$err = 'Нет прав для изменения файла настроек';
}
title();
err();
aut();
#Навигация
echo "<div class = 'razd'><a href = '/index.php'>Главная</a> > <a href = '/umenu.php'>Кабинет</a> > <a href = '/adm_panel/'>Панель управления</a> > <a href = '?'><b>Настройки фотогалереи</b></a></div>";
echo "<div style = 'font-size: 18px;font-weight: bold;' class = 'razdel'>" . img('other.png') . " Настройки фотогалереи</div>";
echo "<form method = 'post' class = 'razd' action = '?'>";
echo "<b>Ширина фото (max)</b><br /><input type = 'text' name = 'max_upload_foto_x' value = '$temp_set[max_upload_foto_x]' /><br />n";
echo "<b>Высота фото (max)</b><br /><input type = 'text' name = 'max_upload_foto_y' value = '$temp_set[max_upload_foto_y]' /><br />n";
echo "<button name = 'save' class = 'action'>";
echo "<span class = 'label'><span class = 'icon icon67' /> Сохранить</span>";
echo "</button></form>n";
if (user::access('adm_panel_show')) {
echo "<a href = '/adm_panel/'><div class = 'razd'>" . img('left.png') . " Панель управления</div></a>";
}
require_once H . 'sys/inc/tfoot.php';