2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - administration *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
if (! $group_id)
|
|
|
|
Header("Location: " . $phpgw->link("groups.php"));
|
|
|
|
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"]["currentapp"] = "admin";
|
2000-08-18 05:24:22 +02:00
|
|
|
include("../header.inc.php");
|
2000-08-19 05:38:35 +02:00
|
|
|
|
|
|
|
if ((($group_id) && ($confirm)) || $removeusers) {
|
|
|
|
if ($removeusers) {
|
|
|
|
$phpgw->db->query("select con,groups from accounts where groups like '%$group_id%'");
|
|
|
|
while ($phpgw->db->next_record()) {
|
|
|
|
$groups[$phpgw->db->f("con")] = $phpgw->db->f("groups");
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($user = each($groups)) {
|
2000-08-21 00:55:00 +02:00
|
|
|
$user_[1] = ereg_replace(",$group_id,",",",$user[1]);
|
|
|
|
if ($user_[1] == ",") {
|
|
|
|
$user_[1] = "";
|
|
|
|
}
|
|
|
|
$phpgw->db->query("update accounts set groups='$user_[1]' where con='$user[0]'");
|
2000-08-19 05:38:35 +02:00
|
|
|
}
|
|
|
|
$confirm = True;
|
|
|
|
}
|
|
|
|
|
2000-08-18 05:24:22 +02:00
|
|
|
$phpgw->db->query("select group_name from groups where group_id='$group_id'");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
|
|
|
$group_name = $phpgw->db->f("group_name");
|
|
|
|
|
|
|
|
$phpgw->db->query("select con,loginid from accounts where groups like '%$group_id%'");
|
|
|
|
if ($phpgw->db->num_rows()) {
|
2000-08-19 05:38:35 +02:00
|
|
|
$phpgw->common->header();
|
|
|
|
$phpgw->common->navbar();
|
|
|
|
|
2000-08-18 05:24:22 +02:00
|
|
|
echo '<p><center>';
|
2000-09-07 22:49:55 +02:00
|
|
|
echo lang("Sorry, the follow users are still a member of the group x",$group_name)
|
|
|
|
. '<br>' . lang("They must be removed before you can continue")
|
2000-08-26 21:20:27 +02:00
|
|
|
. '</td></tr>';
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
echo '<table border="0"><tr><td>';
|
|
|
|
|
|
|
|
while ($phpgw->db->next_record()) {
|
|
|
|
echo '<tr><td><a href="' . $phpgw->link("editaccount.php","con=" . $phpgw->db->f("con")) . '">' . $phpgw->db->f("loginid") . '</a></tr></td>';
|
|
|
|
}
|
|
|
|
echo "</table></center>";
|
2000-08-19 05:38:35 +02:00
|
|
|
echo "<a href=\"" . $phpgw->link("deletegroup.php","group_id=" . $group_id . "&removeusers=True")
|
2000-09-07 22:49:55 +02:00
|
|
|
. "\">" . lang("Remove all users from this group") . "</a>";
|
2000-08-18 05:24:22 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2000-08-19 05:38:35 +02:00
|
|
|
if ($confirm) {
|
|
|
|
$phpgw->db->query("select group_name from groups where group_id='$group_id'");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
$group_name = $phpgw->db->f("group_name");
|
|
|
|
|
|
|
|
$phpgw->db->query("delete from groups where group_id='$group_id'");
|
|
|
|
|
2000-08-26 22:12:01 +02:00
|
|
|
$sep = $phpgw->common->filesystem_separator();
|
2000-08-19 05:38:35 +02:00
|
|
|
|
2000-08-22 19:06:09 +02:00
|
|
|
$basedir = $phpgw_info["server"]["files_dir"] . $sep . "groups" . $sep;
|
2000-08-19 05:38:35 +02:00
|
|
|
|
|
|
|
if (! @rmdir($basedir . $group_name)) {
|
|
|
|
$cd = 38;
|
|
|
|
} else {
|
|
|
|
$cd = 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
Header("Location: " . $phpgw->link("groups.php","cd=$cd"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$phpgw->common->header();
|
|
|
|
$phpgw->common->navbar();
|
|
|
|
?>
|
2000-08-18 05:24:22 +02:00
|
|
|
<center>
|
|
|
|
<table border=0 with=65%>
|
|
|
|
<tr colspan=2>
|
|
|
|
<td align=center>
|
2000-09-07 22:49:55 +02:00
|
|
|
<?php echo lang("Are you sure you want to delete this group ?"); ?>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2000-09-07 22:49:55 +02:00
|
|
|
<a href="<?php echo $phpgw->link("groups.php") . "\">" . lang("No") . "</a>"; ?>
|
2000-08-18 05:24:22 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2000-09-07 22:49:55 +02:00
|
|
|
<a href="<?php echo $phpgw->link("deletegroup.php","group_id=$group_id&confirm=true") . "\">" . lang("Yes") . "</a>"; ?>
|
2000-08-18 05:24:22 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</center>
|
|
|
|
<?
|
|
|
|
include($phpgw_info["server"]["api_dir"] . "/footer.inc.php");
|
|
|
|
|