Вход Регистрация
Файл: public_html/panel/includes/antiflood.php
Строк: 121
<?php

/**
* @package     JohnCMS
* @link        http://johncms.com
* @copyright   Copyright (C) 2008-2011 JohnCMS Community
* @license     LICENSE.txt (see attached file)
* @version     VERSION.txt (see attached file)
* @author      http://johncms.com/about
*/

defined('_IN_JOHNADM') or die('Error: restricted access');

// Проверяем права доступа
if ($rights 7) {
    
header('Location: http://johncms.com/?err');
    exit;
}

$set_af = isset($set['antiflood']) ? unserialize($set['antiflood']) : array ();
echo 
'<div class="phdr"><a href="index.php"><b>' $lng['admin_panel'] . '</b></a> | ' $lng['antiflood_settings'] . '</div>';
if (isset(
$_POST['submit']) || isset($_POST['save'])) {
    
// Принимаем данные из формы
    
$set_af['mode'] = isset($_POST['mode']) && $_POST['mode'] > && $_POST['mode'] < intval($_POST['mode']) : 1;
    
$set_af['day'] = isset($_POST['day']) ? intval($_POST['day']) : 10;
    
$set_af['night'] = isset($_POST['night']) ? intval($_POST['night']) : 30;
    
$set_af['dayfrom'] = isset($_POST['dayfrom']) ? intval($_POST['dayfrom']) : 10;
    
$set_af['dayto'] = isset($_POST['dayto']) ? intval($_POST['dayto']) : 22;
    
// Проверяем правильность ввода данных
    
if ($set_af['day'] < 4)
        
$set_af['day'] = 4;
    if (
$set_af['day'] > 300)
        
$set_af['day'] = 300;
    if (
$set_af['night'] < 4)
        
$set_af['night'] = 4;
    if (
$set_af['night'] > 300)
        
$set_af['night'] = 300;
    if (
$set_af['dayfrom'] < 6)
        
$set_af['dayfrom'] = 6;
    if (
$set_af['dayfrom'] > 12)
        
$set_af['dayfrom'] = 12;
    if (
$set_af['dayto'] < 17)
        
$set_af['dayto'] = 17;
    if (
$set_af['dayto'] > 23)
        
$set_af['dayto'] = 23;
    
mysql_query("UPDATE `cms_settings` SET `val` = '" serialize($set_af) . "' WHERE `key` = 'antiflood' LIMIT 1");
    echo 
'<div class="rmenu">' $lng['settings_saved'] . '</div>';
} elseif (empty(
$set_af) || isset($_GET['reset'])) {
    
// Устанавливаем настройки по умолчанию (если не заданы в системе)
    
echo '<div class="rmenu">' $lng['settings_default'] . '</div>';
    
$set_af['mode'] = 2;
    
$set_af['day'] = 10;
    
$set_af['night'] = 30;
    
$set_af['dayfrom'] = 10;
    
$set_af['dayto'] = 22;
    @
mysql_query("DELETE FROM `cms_settings` WHERE `key` = 'antiflood' LIMIT 1");
    
mysql_query("INSERT INTO `cms_settings` SET `key` = 'antiflood', `val` = '" serialize($set_af) . "'");
}

/*
-----------------------------------------------------------------
Форма ввода параметров Антифлуда
-----------------------------------------------------------------
*/
echo '<form action="index.php?act=antiflood" method="post">' .
    
'<div class="gmenu"><p><h3>' $lng['operation_mode'] . '</h3><table cellspacing="2">' .
    
'<tr><td valign="top"><input type="radio" name="mode" value="3" ' . ($set_af['mode'] == 'checked="checked"' '') . '/></td><td><b>' $lng['day'] . '</b></td></tr>' .
    
'<tr><td valign="top"><input type="radio" name="mode" value="4" ' . ($set_af['mode'] == 'checked="checked"' '') . '/></td><td><b>' $lng['night'] . '</b></td></tr>' .
    
'<tr><td valign="top"><input type="radio" name="mode" value="2" ' . ($set_af['mode'] == 'checked="checked"' '') . '/></td><td><b>' $lng['day'] . ' / ' $lng['night'] . '</b><br /><small>' $lng['antiflood_dn_help']
    . 
'</small></td></tr>' .
    
'<tr><td valign="top"><input type="radio" name="mode" value="1" ' . ($set_af['mode'] == 'checked="checked"' '') . '/></td><td><b>' $lng['adaptive'] . '</b><br /><small>' $lng['antiflood_ad_help'] . '</small></td></tr>' .
    
'</table></p></div>' .
    
'<div class="menu"><p><h3>' $lng['time_limit'] . '</h3>' .
    
'<input name="day" size="3" value="' $set_af['day'] . '" maxlength="3" />&#160;' $lng['day'] . '<br />' .
    
'<input name="night" size="3" value="' $set_af['night'] . '" maxlength="3" />&#160;' $lng['night'] .
    
'<br /><small>' $lng['antiflood_tl_help'] . '</small></p>' .
    
'<p><h3>' $lng['day_mode'] . '</h3>' .
    
'<input name="dayfrom" size="2" value="' $set_af['dayfrom'] . '" maxlength="2" style="text-align:right"/>:00&#160;' $lng['day_begin'] . ' <span class="gray">(6-12)</span><br />' .
    
'<input name="dayto" size="2" value="' $set_af['dayto'] . '" maxlength="2" style="text-align:right"/>:00&#160;' $lng['day_end'] . ' <span class="gray">(17-23)</span>' .
    
'</p><p><br /><input type="submit" name="submit" value="' $lng['save'] . '"/></p></div></form>' .
    
'<div class="phdr"><a href="index.php?act=antiflood&amp;reset">' $lng['reset_settings'] . '</a></div>' .
    
'<p><a href="index.php">' $lng['admin_panel'] . '</a></p>';
?>
Онлайн: 2
Реклама