File size: 2.33Kb
<?
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_forum',null,'index.php?'.SID);
adm_check();
$set['title']='Настройки форума';
include_once '../sys/inc/thead.php';
title();
if (isset($_POST['save']))
{
$temp_set['show_num_post']=(isset($_POST['show_num_post']) && $_POST['show_num_post']);
$temp_set['echo_rassh_forum']=(isset($_POST['echo_rassh_forum']) && $_POST['echo_rassh_forum']);
$temp_set['forum_counter']=(isset($_POST['forum_counter']) && $_POST['forum_counter']);
if (save_settings($temp_set))
{
admin_log('Настройки','Форум','Изменение настроек форума');
msg('Настройки успешно приняты');
}
else $err[]='Нет прав для изменения файла настроек';
}
err();
aut();
$smarty = new Smarty_conf();
$smarty->assign('form_title','Настройки форума');
$smarty->assign('method','POST');
$smarty->assign('action',"?$passgen");
$elements=array();
$elements[]=array('type'=>'checkbox', 'br'=>1,
'info'=>array('value'=>1,'checked'=>$temp_set['show_num_post'], 'name'=>'show_num_post', 'text'=>'Показывать номера постов'));
$elements[]=array('type'=>'checkbox', 'br'=>1,
'info'=>array('value'=>1,'checked'=>$temp_set['forum_counter'], 'name'=>'forum_counter', 'text'=>'Счетчик в виде количества пользователей'));
$elements[]=array('type'=>'checkbox', 'br'=>1,
'info'=>array('value'=>1,'checked'=>$temp_set['echo_rassh_forum'], 'name'=>'echo_rassh_forum', 'text'=>'Расширения файлов'));
$elements[]=array('type'=>'submit', 'br'=>0, 'info'=>array('name'=>'save', 'value'=>'Применить')); // кнопка
$smarty->assign('el',$elements);
$smarty->display('input.form.tpl');
$smarty = new Smarty_conf();
$smarty->assign('menu_title','Навигация');
$menu=array();
$menu[]=array('.','Админка');
$smarty->assign('menu',$menu);
$smarty->display('links.path.tpl');
include_once '../sys/inc/tfoot.php';
?>