?
Path : /home/admin/public_html/old/livesupport/view/ |
Current File : /home/admin/public_html/old/livesupport/view/groups.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("inc_menu.php"); $page['title'] = getlocal("page.groups.title"); $page['menuid'] = "groups"; function tpl_header() { global $page, $webimroot; ?> <script type="text/javascript" language="javascript" src="<?php echo $webimroot ?>/js/jquery-1.3.2.min.js"></script> <?php } function tpl_content() { global $page, $webimroot, $errors; ?> <?php echo getlocal("page.groups.intro") ?> <br /> <br /> <?php require_once('inc_errors.php'); ?> <?php if($page['canmodify']) { ?> <div class="tabletool"> <img src='<?php echo $webimroot ?>/images/buttons/createdep.gif' border="0" alt="" /> <a href='<?php echo $webimroot ?>/operator/group.php' title="<?php echo getlocal("page.groups.new") ?>"> <?php echo getlocal("page.groups.new") ?> </a> </div> <br clear="all"/> <?php } ?> <table class="list"> <thead> <tr class="header"> <th> <?php echo getlocal("form.field.groupname") ?> </th><th> <?php echo getlocal("form.field.groupdesc") ?> </th><th> <?php echo getlocal("page_agents.status") ?> </th><th> <?php echo getlocal("page.group.membersnum") ?> <?php if($page['canmodify']) { ?> </th><th> <?php } ?> </th> </tr> </thead> <tbody> <?php if(count($page['groups']) > 0) { foreach( $page['groups'] as $grp ) { ?> <tr> <td class="notlast"> <a href="<?php echo $webimroot ?>/operator/group.php?gid=<?php echo $grp['groupid'] ?>" id="ti<?php echo $grp['groupid'] ?>" class="man"> <?php echo htmlspecialchars(topage($grp['vclocalname'])) ?> </a> </td> <td class="notlast"> <?php echo $grp['vclocaldescription'] ? htmlspecialchars(topage($grp['vclocaldescription'])) : "<none>" ?> </td> <td class="notlast"> <?php if(is_online($grp)) { ?> <?php echo getlocal("page.groups.isonline") ?> <?php } else if(is_away($grp)) { ?> <?php echo getlocal("page.groups.isaway") ?> <?php } else { ?> <?php echo date_to_text(time() - ($grp['ilastseen'] ? $grp['ilastseen'] : time())) ?> <?php } ?> </td> <td> <a href="<?php echo $webimroot ?>/operator/groupmembers.php?gid=<?php echo $grp['groupid'] ?>"> <?php echo htmlspecialchars(topage($grp['inumofagents'])) ?> </a> </td> <?php if($page['canmodify']) { ?> <td> <a href="<?php echo $webimroot ?>/operator/groups.php?act=del&gid=<?php echo $grp['groupid'] ?>" id="i<?php echo $grp['groupid'] ?>" class="removelink"> remove </a> </td> <?php } ?> </tr> <?php } } else { ?> <tr> <td colspan="4"> <?php echo getlocal("tag.pagination.no_items.elements") ?> </td> </tr> <?php } ?> </tbody> </table> <script type="text/javascript" language="javascript"><!-- $('a.removelink').click(function(){ var groupname = $("#t"+this.id).text(); return confirm("<?php echo getlocalforJS("page.groups.confirm", array('"+$.trim(groupname)+"')) ?>"); }); //--></script> <?php } /* content */ require_once('inc_main.php'); ?>