<?
/*
=============================================
Движок: SHCMS Engine
=============================================
Название файла: Системные настройки
=============================================
Official website: http://shcms.ru
=============================================
*/
define('SHCMS', true);
include_once'../system/inc/basic_settings.php';
$shcmsengine['title'] = 'SHCMS Engine Системные настройки.';
include_once'../template/head.php';
registrat();
$adminka ->admin();
$resting == false;
if($user4['team'] < 6) {
echo 'Ошибка';
header('Refresh: 1; url=/index.php?'.$conservation.'&');
include_once'../template/foot.php';
exit();
}
include_once'secu.php';
$loa = mysql_query("SELECT * FROM `settings_shcms`");
$load_shcms = mysql_fetch_array($loa);
if($_POST['sub_save'])
{$sub_save = $_POST['sub_save'];}
if(isset($sub_save))
{
if($_POST['name'])
{$name = $_POST['name'];}
if($_POST['keywords'])
{$keywords = $_POST['keywords'];}
if($_POST['description'])
{$description = $_POST['description'];}
if($_POST['onlin'])
{$onlin = $_POST['onlin'];}
$load_shcms['title'] = isset($name) ? (substr($name,0,40)):'';
$load_shcms['keywords'] = isset($keywords) ? (substr($keywords,0,255)):'';
$load_shcms['description'] = isset($description) ? (substr($description,0,2000)):'';
$load_shcms['onlin'] = (isset ($onlin) && $onlin);
$ok_mysq = mysql_query("UPDATE `settings_shcms` SET `description`='$description',`keywords`='$keywords',`title`='$name',`onoff`='$onlin'");
if($ok_mysq == true)
{
echo '<div class="actshcms">Изминение успешно сохранены</div>';
header("Refresh: 1; url=?");
include_once'../template/foot.php';
exit();
}
else
{
echo '<div class="errors">Настройки не сохранены</div>';
header("Refresh: 1; url=?");
include_once'../template/foot.php';
exit();
}
}
$form = new form("?");
$form->input('Заголовок гл. страницы:','name','text',$load_shcms['title'],true);
$form->input('Домашняя страница сайта:',false,'text',"http://".$_SERVER['HTTP_HOST']."",true);
$form->input('Используемая кодировка на сайте:','coding','text',$load_shcms['coding'],true);
$form->textarea('Описание (Description) сайта:','description',$load_shcms['description']);
$form->textarea('Ключевые слова (Keywords) для сайта:','keywords',$load_shcms['keywords']);
$form->select('Поддержка статуса (online/offline):','onlin',array('Включить'=> 0,'Выключить' => 1, 'Показывать на END'=> 2),$load_shcms['onoff']);
$form->submit('Применить','sub_save');
$form->finish();
echo '<div class="posts"><a href="?act=cleanup">Очистить журнал авторизаций</a></div>';
switch($act):
case'cleanup':
if(isset($_POST['submit'])) {$submit = $_POST['submit'];}
if(isset($_POST['no_list'])) {$no_list = $_POST['no_list'];}
if(isset($no_list)) {
header('Location: options.php');
}
if(isset($submit)) {
$jurnal_mail = mysql_query("SELECT DISTINCT(`user_id`) FROM `logs_aut`");
while($jurnal_mails = mysql_fetch_array($jurnal_mail)){
mysql_query("INSERT INTO `mails` (`user_id`,`read`,`text`,`time`,`posted`) VALUES ('$jurnal_mails[user_id]','no','Администратор почистил ваш журнал авторизаций <a href=".DIR_SHCMS."jurnal_aut.php>Посмотреть журнал</a>','".time()."','0')");
}
$jurnal = mysql_query("DELETE FROM `logs_aut`");
mysql_query("TRUNCATE TABLE `logs_aut`");
if($jurnal == true) {
messag('Журнал успешно очищен');
header('Refresh: 1; url=options.php');
include_once'../template/foot.php';
exit();
}
else {
errors('Ошибка очистки журнала.');
header('Refresh: 1; url=options.php');
include_once'../template/foot.php';
exit();
}
}
echo messag('Вы действительно хотите очистить журнал');
echo '<center>';
$form = new form('?act=cleanup');
$form->submit('Да очистить','submit');
$form->submit('Нет назад','no_list');
$form->finish();
echo '</center>';
break;
endswitch;
include_once'../template/foot.php';
?>