Файл: core/adminka/protection.php
Строк: 83
<?
require_once ("../../core/cuctema/core.php");
$temp_set=$set;
require_once ("../../core/cuctema/adm_check.php");
user_access('adm_log_read',null,'index.php?'.SID);
adm_check();
$set['title']='Админ-панель / Защита';
require_once ("../../core/cuctema/head.php");
aut();
err();
if (user_access('adm_show_adm')){
$act = (isset($_GET['act'])) ? $_GET['act'] : NULL;
switch ($act){
default:
echo "<a href='/adminka/'><div class='main123 main1234 display'><img src='/images/user/user_admin_man_online.png'/> Админ-панель</div></a>n";
echo "<div class='d2'>Защита от DDOS: ".($temp_set['antidos']==1?"<font color='green'>Включена</font>":"<font color='red'>Выключена</a>")."</font><span style='float:right'><a href='?act=ddos'><img src='/core/adminka/images/ddos.png'/></a></span></div>";
echo "<div class='d2'>Антимат: ".($temp_set['antimat']==1?"<font color='green'>Включена</font>":"<font color='red'>Выключена</a>")."</font><span style='float:right'><a href='?act=antimat'><img src='/core/adminka/images/antimat.png'/></a></span></div>";
echo "<a href='/adminka/'><div class='main123 main1234 display'><img src='/images/user/user_admin_man_online.png'/> Админ-панель</div></a>n";
break;
case 'ddos':
if (isset($_POST['save'])){
if (isset($_POST['antidos']) && $_POST['antidos']==1)$temp_set['antidos']=1; else $temp_set['antidos']=0;
if (save_settings($temp_set)){
admin_log('Настройки','Система','Изменение системных настроек');
msg('Настройки успешно приняты');
header( 'Refresh: 0; url=/adminka/protection/' );
}
}
echo "<form method="post" action="?act=ddos">";
echo "<div class='d2'><label><input type='checkbox'".($temp_set['antidos']?" checked='checked'":null)." name='antidos' value='1' /> Анти-Dos - защита от частых запросов с одного IP-адреса</label></div>";
echo "<div class='d2'><input value="Сохранить" name='save' type="submit" /></div>";
echo "</form>n";
break;
case 'antimat':
if (isset($_POST['save'])){
if (isset($_POST['antimat']) && $_POST['antimat']==1)$temp_set['antimat']=1; else $temp_set['antimat']=0;
if (save_settings($temp_set)){
admin_log('Настройки','Система','Изменение системных настроек');
msg('Настройки успешно приняты');
header( 'Refresh: 0; url=/adminka/protection/' );
}
}
echo "<form method="post" action="?act=antimat">";
echo "<div class='d2'><label><input type='checkbox'".($temp_set['antimat']?" checked='checked'":null)." name='antimat' value='1' /> Запрещает материться пользователям</label></div>";
echo "<div class='d2'><input value="Сохранить" name='save' type="submit" /></div>";
echo "</form>n";
break;
}
}
require_once ("../../core/cuctema/foot.php");
?>