java/src/messenger/webim/operator/features.php

52 lines
1.4 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of Web Instant Messenger project.
*
* Copyright (c) 2005-2008 Web Messenger Community
* All rights reserved. This program and the accompanying materials
* are made available under 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
*
* 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('enableban', 'usercanchangename');
loadsettings();
$params = array();
foreach($options as $opt) {
$params[$opt] = $settings[$opt];
}
if (isset($_POST['sent'])) {
$params['enableban'] = verifyparam("enableban","/^on$/", "") == "on" ? "1" : "0";
$params['usercanchangename'] = verifyparam("usercanchangename", "/^on$/", "") == "on" ? "1" : "0";
foreach($options as $opt) {
$settings[$opt] = $params[$opt];
}
update_settings();
header("Location: $webimroot/operator/features.php?stored");
exit;
}
$page['operator'] = topage(get_operator_name($operator));
$page['formenableban'] = $params['enableban'] == "1";
$page['formusercanchangename'] = $params['usercanchangename'] == "1";
$page['stored'] = isset($_GET['stored']);
setup_settings_tabs(1);
start_html_output();
require('../view/features.php');
?>