mirror of
				https://github.com/Mibew/design.git
				synced 2025-11-03 20:05:11 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*
 | 
						|
 * This file is part of Mibew Messenger project.
 | 
						|
 * 
 | 
						|
 * 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();
 | 
						|
 | 
						|
function update_operator_groups($operatorid, $newvalue)
 | 
						|
{
 | 
						|
	global $mysqlprefix;
 | 
						|
	$link = connect();
 | 
						|
	perform_query("delete from ${mysqlprefix}chatgroupoperator where operatorid = $operatorid", $link);
 | 
						|
	foreach ($newvalue as $groupid) {
 | 
						|
		perform_query("insert into ${mysqlprefix}chatgroupoperator (groupid, operatorid) values ($groupid,$operatorid)", $link);
 | 
						|
	}
 | 
						|
	close_connection($link);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
$opId = verifyparam("op", "/^\d{1,9}$/");
 | 
						|
$page = array('opid' => $opId);
 | 
						|
$link = connect();
 | 
						|
$page['groups'] = get_all_groups($link);
 | 
						|
close_connection($link);
 | 
						|
$errors = array();
 | 
						|
 | 
						|
$canmodify = ($opId == $operator['operatorid'] && is_capable($can_modifyprofile, $operator))
 | 
						|
			 || is_capable($can_administrate, $operator);
 | 
						|
 | 
						|
$op = operator_by_id($opId);
 | 
						|
 | 
						|
if (!$op) {
 | 
						|
	$errors[] = getlocal("no_such_operator");
 | 
						|
 | 
						|
} else if (isset($_POST['op'])) {
 | 
						|
 | 
						|
	if (!$canmodify) {
 | 
						|
		$errors[] = getlocal('page_agent.cannot_modify');
 | 
						|
	}
 | 
						|
 | 
						|
	if (count($errors) == 0) {
 | 
						|
		$new_groups = array();
 | 
						|
		foreach ($page['groups'] as $group) {
 | 
						|
			if (verifyparam("group" . $group['groupid'], "/^on$/", "") == "on") {
 | 
						|
				$new_groups[] = $group['groupid'];
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		update_operator_groups($op['operatorid'], $new_groups);
 | 
						|
		header("Location: $webimroot/operator/opgroups.php?op=$opId&stored");
 | 
						|
		exit;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
$page['formgroup'] = array();
 | 
						|
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : "-not found-";
 | 
						|
$page['canmodify'] = $canmodify ? "1" : "";
 | 
						|
 | 
						|
if ($op) {
 | 
						|
	foreach (get_operator_groupids($opId) as $rel) {
 | 
						|
		$page['formgroup'][] = $rel['groupid'];
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
$page['stored'] = isset($_GET['stored']);
 | 
						|
prepare_menu($operator);
 | 
						|
setup_operator_settings_tabs($opId, 2);
 | 
						|
start_html_output();
 | 
						|
require('../view/operator_groups.php');
 | 
						|
?>
 |