Размер файла: 4.54Kb
<?php
include ('../../config.php');
include ('../../templates/run.php');
include ('../../templates/func.php');
include ('../../modules/chat/config.php');
$title_page = 'Настройки чата';
$m_polozhenie = 'В админке';
############
if($_GET['act']=='set')
{
if(isset($_SESSION['sespass']) && isset($passw) && $_SESSION['sespass'] == $passw && $status == '1')
{ $configdata="<?php\r\n".
'$'.'room1="'.filter($_POST[room1])."\"; # Комната №1\r\n".
'$'.'room2="'.filter($_POST[room2])."\"; # Комната №2\r\n".
'$'.'room3="'.filter($_POST[room3])."\"; # Комната №3\r\n".
'$'.'room4="'.filter($_POST[room4])."\"; # Комната №4\r\n".
'$'.'room5="'.filter($_POST[room5])."\"; # Комната №5\r\n".
'$'.'top1="'.filter($_POST[top1])."\"; # Топик №1\r\n".
'$'.'top2="'.filter($_POST[top2])."\"; # Топик №2\r\n".
'$'.'top3="'.filter($_POST[top3])."\"; # Топик №3\r\n".
'$'.'top4="'.filter($_POST[top4])."\"; # Топик №4\r\n".
'$'.'top5="'.filter($_POST[top5])."\"; # Топик №5\r\n?>";
$fp = fopen('../../modules/chat/config.php','a+');
flock ($fp,LOCK_EX);
ftruncate ($fp,0);
fputs($fp,$configdata);
fflush ($fp);
flock ($fp,LOCK_UN);
fclose($fp);
$date = date('d.m.Y / H:i:s', time() + ($sdvigclock*3600));
$adm_log_f = @file('../../data/adm_log.php'); $adm_log_count = count($adm_log_f) - 2;
$mes_to_adm_log = "$login|$date|Настраивал чат\r\n";
for($i=2; $i < $adm_log_count; $i++)
{
$mes_to_adm_log .= $adm_log_f[$i];
}
$mes_to_adm_log = trim($mes_to_adm_log);
$adm_log_file = fopen('../../data/adm_log.php','w');
flock ($adm_log_file,LOCK_EX);
fputs($adm_log_file,"<?php\r\n/*\r\n$mes_to_adm_log\r\n*/\r\n?>");
fflush ($adm_log_file);
flock ($adm_log_file,LOCK_UN);
fclose($adm_log_file);
header ('location: set_chat.php?set=1&'.session_name().'='.session_id().'');
}
else
{
include '../../themes/'.$themes.'.php';
echo'<p class="err">Вы не авторизованы!!! Войдите в личный кабинет.<br /></p>';
echo'<p><a href="../kabinet/index.php?'.session_name().'='.session_id().'">В кабинет</a><br /></p>';
include '../../templates/foot.php';
}
}
################
if(empty($_GET['act']))
{
include '../../themes/'.$themes.'.php';
include '../../config.php';
if(isset($_SESSION['sespass']) && isset($passw) && $_SESSION['sespass'] == $passw && $status == '1')
{
echo'<p class="modul_name"align="center">Настройки чата';
if($_GET[set]=='1')
{
echo'<p class="b">Чат настроен.</p>';
}
echo'<form method="post" action="set_chat.php?act=set&'.session_name().'='.session_id().'">';
echo'<p class="a">Названия комнат</p>';
echo'<p class="b">Комната №1:<br />
<input name="room1" maxlength="100" value="'.$room1.'" /><br />';
echo'Комната №2:<br />
<input name="room2" maxlength="100" value="'.$room2.'" /><br />';
echo'Комната №3:<br />
<input name="room3" maxlength="100" value="'.$room3.'" /><br />';
echo'Комната №4:<br />
<input name="room4" maxlength="100" value="'.$room4.'" /><br />';
echo'Комната №5:<br />
<input name="room5" maxlength="100" value="'.$room5.'" /><br /></p>';
echo'<p class="a">Топики в комнатах</p>';
echo'<p class="b">Топик в комнате №1:<br />
<input name="top1" maxlength="300" value="'.$top1.'" /><br />';
echo'Топик в комнате №2:<br />
<input name="top2" maxlength="300" value="'.$top2.'" /><br />';
echo'Топик в комнате №3:<br />
<input name="top3" maxlength="300" value="'.$top3.'" /><br />';
echo'Топик в комнате №4:<br />
<input name="top4" maxlength="300" value="'.$top4.'" /><br />';
echo'Топик в комнате №5:<br />
<input name="top5" maxlength="300" value="'.$top5.'" /><br />';
echo'<input value="Настроить" name="do" type="submit" /></p></form>';
echo'<p><a href="index.php?'.session_name().'='.session_id().'">В админку</a></p>';
}
else
{
echo'<p class="err">Вы не авторизованы!!! Войдите в личный кабинет.<br /></p>';
}
echo'<p><a href="../kabinet/index.php?'.session_name().'='.session_id().'">В кабинет</a><br /></p>';
include '../../templates/foot.php';
}
?>