i18n/src/messenger/webim/operator/opgroups.php

90 lines
2.8 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of Mibew Messenger project.
*
2011-02-16 03:22:22 +03:00
* Copyright (c) 2005-2011 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/operator_settings.php');
$operator = check_login();
2011-02-26 17:06:19 +03:00
function update_operator_groups($operatorid, $newvalue)
{
global $mysqlprefix;
$link = connect();
2011-02-26 16:13:16 +03:00
perform_query("delete from ${mysqlprefix}chatgroupoperator where operatorid = $operatorid", $link);
2011-02-26 17:06:19 +03:00
foreach ($newvalue as $groupid) {
2011-02-26 16:13:16 +03:00
perform_query("insert into ${mysqlprefix}chatgroupoperator (groupid, operatorid) values ($groupid,$operatorid)", $link);
}
mysql_close($link);
}
2011-02-26 17:06:19 +03:00
$opId = verifyparam("op", "/^\d{1,9}$/");
$page = array('opid' => $opId);
$link = connect();
$page['groups'] = get_all_groups($link);
mysql_close($link);
$errors = array();
2011-02-26 17:06:19 +03:00
$canmodify = ($opId == $operator['operatorid'] && is_capable($can_modifyprofile, $operator))
|| is_capable($can_administrate, $operator);
$op = operator_by_id($opId);
2011-02-26 17:06:19 +03:00
if (!$op) {
$errors[] = getlocal("no_such_operator");
2011-02-26 17:06:19 +03:00
} else if (isset($_POST['op'])) {
2011-02-26 17:06:19 +03:00
if (!$canmodify) {
$errors[] = getlocal('page_agent.cannot_modify');
}
2011-02-26 17:06:19 +03:00
if (count($errors) == 0) {
$new_groups = array();
2011-02-26 17:06:19 +03:00
foreach ($page['groups'] as $group) {
if (verifyparam("group" . $group['groupid'], "/^on$/", "") == "on") {
$new_groups[] = $group['groupid'];
}
}
2011-02-26 17:06:19 +03:00
update_operator_groups($op['operatorid'], $new_groups);
header("Location: $webimroot/operator/opgroups.php?op=$opId&stored");
exit;
}
}
$page['formgroup'] = array();
2011-02-26 17:06:19 +03:00
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : "-not found-";
$page['canmodify'] = $canmodify ? "1" : "";
2011-02-26 17:06:19 +03:00
if ($op) {
foreach (get_operator_groupids($opId) as $rel) {
$page['formgroup'][] = $rel['groupid'];
}
}
$page['stored'] = isset($_GET['stored']);
prepare_menu($operator);
2011-02-26 17:06:19 +03:00
setup_operator_settings_tabs($opId, 2);
start_html_output();
require('../view/operator_groups.php');
?>