mirror of
https://github.com/Mibew/java.git
synced 2025-04-10 23:00:13 +03:00
92 lines
2.5 KiB
PHP
92 lines
2.5 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2005-2013 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
require_once('../libs/common.php');
|
|
require_once('../libs/operator.php');
|
|
require_once('../libs/groups.php');
|
|
|
|
$operator = check_login();
|
|
|
|
function get_group_members($groupid)
|
|
{
|
|
global $mysqlprefix;
|
|
$link = connect();
|
|
$query = "select operatorid from ${mysqlprefix}chatgroupoperator where groupid = $groupid";
|
|
$result = select_multi_assoc($query, $link);
|
|
close_connection($link);
|
|
return $result;
|
|
}
|
|
|
|
function update_group_members($groupid, $newvalue)
|
|
{
|
|
global $mysqlprefix;
|
|
$link = connect();
|
|
perform_query("delete from ${mysqlprefix}chatgroupoperator where groupid = $groupid", $link);
|
|
foreach ($newvalue as $opid) {
|
|
perform_query("insert into ${mysqlprefix}chatgroupoperator (groupid, operatorid) values ($groupid,$opid)", $link);
|
|
}
|
|
close_connection($link);
|
|
}
|
|
|
|
function get_operators()
|
|
{
|
|
global $mysqlprefix;
|
|
$link = connect();
|
|
|
|
$query = "select * from ${mysqlprefix}chatoperator order by vclogin";
|
|
$result = select_multi_assoc($query, $link);
|
|
close_connection($link);
|
|
return $result;
|
|
}
|
|
|
|
$groupid = verifyparam("gid", "/^\d{1,9}$/");
|
|
$page = array('groupid' => $groupid);
|
|
$page['operators'] = get_operators();
|
|
$errors = array();
|
|
|
|
$group = group_by_id($groupid);
|
|
|
|
if (!$group) {
|
|
$errors[] = getlocal("page.group.no_such");
|
|
|
|
} else if (isset($_POST['gid'])) {
|
|
|
|
$new_members = array();
|
|
foreach ($page['operators'] as $op) {
|
|
if (verifyparam("op" . $op['operatorid'], "/^on$/", "") == "on") {
|
|
$new_members[] = $op['operatorid'];
|
|
}
|
|
}
|
|
|
|
update_group_members($groupid, $new_members);
|
|
header("Location: $webimroot/operator/groupmembers.php?gid=$groupid&stored");
|
|
exit;
|
|
}
|
|
|
|
$page['formop'] = array();
|
|
$page['currentgroup'] = $group ? topage(htmlspecialchars($group['vclocalname'])) : "";
|
|
|
|
foreach (get_group_members($groupid) as $rel) {
|
|
$page['formop'][] = $rel['operatorid'];
|
|
}
|
|
|
|
$page['stored'] = isset($_GET['stored']);
|
|
prepare_menu($operator);
|
|
setup_group_settings_tabs($groupid, 1);
|
|
start_html_output();
|
|
require('../view/groupmembers.php');
|
|
?>
|