2009-07-24 13:05:39 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of Mibew Messenger project.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2009-07-24 13:05:39 +04:00
|
|
|
* Copyright (c) 2005-2009 Mibew Messenger Community
|
2009-08-04 19:03:27 +04:00
|
|
|
* 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
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2009-08-04 17:38:37 +04:00
|
|
|
* 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.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2009-07-24 13:05:39 +04:00
|
|
|
* 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(
|
2009-08-10 17:50:25 +04:00
|
|
|
'online_timeout', 'updatefrequency_operator', 'updatefrequency_chat',
|
|
|
|
'updatefrequency_oldchat', 'max_connections_from_one_host');
|
2009-07-24 13:05:39 +04:00
|
|
|
|
|
|
|
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");
|
|
|
|
}
|
2009-08-10 17:50:25 +04:00
|
|
|
|
|
|
|
$params['max_connections_from_one_host'] = getparam('onehostconnections');
|
|
|
|
if(!is_numeric($params['max_connections_from_one_host'])) {
|
|
|
|
$errors[] = getlocal("settings.wrong.onehostconnections");
|
|
|
|
}
|
|
|
|
|
2009-07-24 13:05:39 +04:00
|
|
|
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'];
|
2009-08-10 17:50:25 +04:00
|
|
|
$page['formonehostconnections'] = $params['max_connections_from_one_host'];
|
2009-07-24 13:05:39 +04:00
|
|
|
$page['stored'] = isset($_GET['stored']);
|
|
|
|
|
|
|
|
prepare_menu($operator);
|
|
|
|
setup_settings_tabs(2);
|
|
|
|
start_html_output();
|
|
|
|
require('../view/performance.php');
|
|
|
|
?>
|