2009-03-25 02:34:57 +03:00
|
|
|
<?php
|
|
|
|
/*
|
2009-06-04 02:44:32 +04:00
|
|
|
* This file is part of Mibew Messenger project.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2011-02-16 03:22:22 +03:00
|
|
|
* Copyright (c) 2005-2011 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-03-25 02:34:57 +03:00
|
|
|
* Contributors:
|
|
|
|
* Evgeny Gryaznov - initial API and implementation
|
|
|
|
*/
|
|
|
|
|
2011-02-26 17:04:12 +03:00
|
|
|
function group_by_id($id)
|
|
|
|
{
|
|
|
|
global $mysqlprefix;
|
2009-03-25 02:34:57 +03:00
|
|
|
$link = connect();
|
|
|
|
$group = select_one_row(
|
2011-02-26 17:04:12 +03:00
|
|
|
"select * from ${mysqlprefix}chatgroup where groupid = $id", $link);
|
2009-03-25 02:34:57 +03:00
|
|
|
mysql_close($link);
|
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
|
2011-02-26 17:04:12 +03:00
|
|
|
function get_group_name($group)
|
|
|
|
{
|
2009-03-29 03:51:33 +04:00
|
|
|
global $home_locale, $current_locale;
|
2011-02-26 17:04:12 +03:00
|
|
|
if ($home_locale == $current_locale || !isset($group['vccommonname']) || !$group['vccommonname'])
|
2009-03-29 03:51:33 +04:00
|
|
|
return $group['vclocalname'];
|
|
|
|
else
|
|
|
|
return $group['vccommonname'];
|
|
|
|
}
|
|
|
|
|
2011-02-26 17:04:12 +03:00
|
|
|
function setup_group_settings_tabs($gid, $active)
|
|
|
|
{
|
2009-03-25 02:34:57 +03:00
|
|
|
global $page, $webimroot, $settings;
|
2011-02-26 17:04:12 +03:00
|
|
|
if ($gid) {
|
2009-03-25 02:34:57 +03:00
|
|
|
$page['tabs'] = array(
|
|
|
|
getlocal("page_group.tab.main") => $active != 0 ? "$webimroot/operator/group.php?gid=$gid" : "",
|
|
|
|
getlocal("page_group.tab.members") => $active != 1 ? "$webimroot/operator/groupmembers.php?gid=$gid" : "",
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$page['tabs'] = array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-26 17:04:12 +03:00
|
|
|
function get_operator_groupslist($operatorid, $link)
|
|
|
|
{
|
|
|
|
global $settings, $mysqlprefix;
|
|
|
|
if ($settings['enablegroups'] == '1') {
|
|
|
|
$groupids = array(0);
|
|
|
|
$allgroups = select_multi_assoc("select groupid from ${mysqlprefix}chatgroupoperator where operatorid = $operatorid order by groupid", $link);
|
|
|
|
foreach ($allgroups as $g) {
|
|
|
|
$groupids[] = $g['groupid'];
|
|
|
|
}
|
|
|
|
return implode(",", $groupids);
|
|
|
|
} else {
|
|
|
|
return "";
|
|
|
|
}
|
2011-02-26 14:57:56 +03:00
|
|
|
}
|
|
|
|
|
2009-08-04 20:30:39 +04:00
|
|
|
?>
|