mirror of
				https://github.com/Mibew/tray.git
				synced 2025-10-03 00:03:34 +03:00 
			
		
		
		
	git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@614 c66351dc-e62f-0410-b875-e3a5c0b9693f
		
			
				
	
	
		
			88 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*
 | 
						|
 * This file is part of Mibew Messenger project.
 | 
						|
 * 
 | 
						|
 * Copyright (c) 2005-2009 Mibew Messenger Community
 | 
						|
 * All rights reserved. The contents of this file are subject to the terms of
 | 
						|
 * the Eclipse Public License v1.0 which accompanies this distribution, and
 | 
						|
 * is available at http://www.eclipse.org/legal/epl-v10.html
 | 
						|
 * 
 | 
						|
 * Alternatively, the contents of this file may be used under the terms of
 | 
						|
 * the GNU General Public License Version 2 or later (the "GPL"), in which case
 | 
						|
 * the provisions of the GPL are applicable instead of those above. If you wish
 | 
						|
 * to allow use of your version of this file only under the terms of the GPL, and
 | 
						|
 * not to allow others to use your version of this file under the terms of the
 | 
						|
 * EPL, indicate your decision by deleting the provisions above and replace them
 | 
						|
 * with the notice and other provisions required by the GPL.
 | 
						|
 * 
 | 
						|
 * Contributors:
 | 
						|
 *    Evgeny Gryaznov - initial API and implementation
 | 
						|
 */
 | 
						|
 | 
						|
require_once('../libs/common.php');
 | 
						|
require_once('../libs/operator.php');
 | 
						|
require_once('../libs/settings.php');
 | 
						|
 | 
						|
$operator = check_login();
 | 
						|
 | 
						|
$page = array('agentId' => '');
 | 
						|
$errors = array();
 | 
						|
 | 
						|
$options = array(
 | 
						|
		'online_timeout', 'updatefrequency_operator', 'updatefrequency_chat',
 | 
						|
		'updatefrequency_oldchat', 'max_connections_from_one_host');
 | 
						|
 | 
						|
loadsettings();
 | 
						|
$params = array();
 | 
						|
foreach($options as $opt) {
 | 
						|
	$params[$opt] = $settings[$opt];
 | 
						|
}
 | 
						|
 | 
						|
if (isset($_POST['onlinetimeout'])) {
 | 
						|
    $params['online_timeout'] = getparam('onlinetimeout');
 | 
						|
    if(!is_numeric($params['online_timeout'])) {
 | 
						|
    	$errors[] = wrong_field("settings.onlinetimeout");
 | 
						|
    }
 | 
						|
    
 | 
						|
    $params['updatefrequency_operator'] = getparam('frequencyoperator');
 | 
						|
    if(!is_numeric($params['updatefrequency_operator'])) {
 | 
						|
    	$errors[] = wrong_field("settings.frequencyoperator");
 | 
						|
    }
 | 
						|
    
 | 
						|
    $params['updatefrequency_chat'] = getparam('frequencychat');
 | 
						|
    if(!is_numeric($params['updatefrequency_chat'])) {
 | 
						|
    	$errors[] = wrong_field("settings.frequencychat");
 | 
						|
    }
 | 
						|
    
 | 
						|
    $params['updatefrequency_oldchat'] = getparam('frequencyoldchat');
 | 
						|
    if(!is_numeric($params['updatefrequency_oldchat'])) {
 | 
						|
    	$errors[] = wrong_field("settings.frequencyoldchat");
 | 
						|
    }
 | 
						|
 | 
						|
	$params['max_connections_from_one_host'] = getparam('onehostconnections');
 | 
						|
    if(!is_numeric($params['max_connections_from_one_host'])) {
 | 
						|
    	$errors[] = getlocal("settings.wrong.onehostconnections");
 | 
						|
    }
 | 
						|
	
 | 
						|
    if (count($errors) == 0) {
 | 
						|
		foreach($options as $opt) {
 | 
						|
			$settings[$opt] = $params[$opt];
 | 
						|
		}
 | 
						|
    	update_settings();
 | 
						|
        header("Location: $webimroot/operator/performance.php?stored");
 | 
						|
        exit;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$page['formonlinetimeout'] = $params['online_timeout'];
 | 
						|
$page['formfrequencyoperator'] = $params['updatefrequency_operator'];
 | 
						|
$page['formfrequencychat'] = $params['updatefrequency_chat'];
 | 
						|
$page['formfrequencyoldchat'] = $params['updatefrequency_oldchat'];
 | 
						|
$page['formonehostconnections'] = $params['max_connections_from_one_host'];
 | 
						|
$page['stored'] = isset($_GET['stored']);
 | 
						|
 | 
						|
prepare_menu($operator);
 | 
						|
setup_settings_tabs(2);
 | 
						|
start_html_output();
 | 
						|
require('../view/performance.php');
 | 
						|
?>
 |