2000-08-19 02:48:04 +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$ */
|
|
|
|
|
|
|
|
if ($submit) {
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
|
2000-08-19 02:48:04 +02:00
|
|
|
}
|
|
|
|
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"]["currentapp"] = "admin";
|
2000-08-19 02:48:04 +02:00
|
|
|
include("../header.inc.php");
|
|
|
|
|
2000-08-20 06:11:43 +02:00
|
|
|
$t = new Template($phpgw_info["server"]["template_dir"]);
|
|
|
|
$t->set_file(array("form" => "groups_form.tpl"));
|
|
|
|
|
2000-08-19 02:48:04 +02:00
|
|
|
if ($submit) {
|
|
|
|
$phpgw->db->query("select count(*) from groups where group_name='" . $n_group . "'");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
|
|
|
if ($phpgw->db->f(0) != 0) {
|
2000-09-07 22:49:55 +02:00
|
|
|
$error = "<br>" . lang("Sorry, that group name has already been taking.");
|
2000-09-04 20:26:32 +02:00
|
|
|
}
|
|
|
|
if (! $n_group) {
|
2000-09-07 22:49:55 +02:00
|
|
|
$error = "<br>" . lang("You must enter a group name.");
|
2000-08-19 02:48:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (! $error) {
|
2000-08-20 06:11:43 +02:00
|
|
|
$phpgw->db->lock(array("accounts","groups"));
|
2000-08-19 02:48:04 +02:00
|
|
|
|
2000-08-19 04:08:25 +02:00
|
|
|
$phpgw->db->query("INSERT INTO groups (group_name,group_apps) VALUES "
|
|
|
|
. "('$n_group','"
|
2000-08-26 21:20:27 +02:00
|
|
|
. $phpgw->accounts->array_to_string("none",$n_group_permissions) . "') ");
|
2000-08-19 02:48:04 +02:00
|
|
|
$phpgw->db->query("SELECT group_id FROM groups WHERE group_name='$n_group'");
|
2000-08-26 21:20:27 +02:00
|
|
|
$phpgw->db->next_record();
|
2000-08-19 04:32:35 +02:00
|
|
|
$group_con = $phpgw->db->f("group_id");
|
2000-08-19 02:48:04 +02:00
|
|
|
|
|
|
|
for ($i=0; $i<count($n_users);$i++) {
|
|
|
|
$phpgw->db->query("SELECT groups FROM accounts WHERE con=".$n_users[$i]);
|
2000-08-26 21:20:27 +02:00
|
|
|
$phpgw->db->next_record();
|
2000-08-19 02:48:04 +02:00
|
|
|
$user_groups = $phpgw->db->f("groups") . ",$group_con,";
|
2000-08-19 04:32:35 +02:00
|
|
|
|
2000-08-19 02:48:04 +02:00
|
|
|
$user_groups = ereg_replace(",,",",",$user_groups);
|
2000-08-26 21:20:27 +02:00
|
|
|
$phpgw->db->query("UPDATE accounts SET groups='$user_groups' WHERE con='" . $n_users[$i] . "'");
|
2000-08-19 02:48:04 +02:00
|
|
|
}
|
|
|
|
|
2000-08-26 22:12:01 +02:00
|
|
|
$sep = $phpgw->common->filesystem_separator();
|
2000-08-19 02:48:04 +02:00
|
|
|
|
2000-08-22 18:16:30 +02:00
|
|
|
$basedir = $phpgw_info["server"]["files_dir"] . $sep . "groups" . $sep;
|
2000-08-19 02:48:04 +02:00
|
|
|
|
|
|
|
$cd = 31;
|
|
|
|
|
2000-08-21 07:15:45 +02:00
|
|
|
if (! @mkdir ($basedir . $n_group, 0707)) $cd = 37;
|
2000-08-19 02:48:04 +02:00
|
|
|
|
2000-08-20 06:11:43 +02:00
|
|
|
$phpgw->db->unlock();
|
2000-08-19 02:48:04 +02:00
|
|
|
|
|
|
|
Header("Location: " . $phpgw->link("groups.php","cd=$cd"));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($error) {
|
|
|
|
$phpgw->common->header();
|
|
|
|
$phpgw->common->navbar();
|
2000-08-20 06:11:43 +02:00
|
|
|
$t->set_var("error","<p><center>$error</center>");
|
|
|
|
} else {
|
|
|
|
$t->set_var("error","");
|
|
|
|
}
|
|
|
|
|
2000-09-03 22:25:31 +02:00
|
|
|
$t->set_var("form_action",$phpgw->link("newgroup.php"));
|
2000-09-11 08:48:37 +02:00
|
|
|
$t->set_var("hidden_vars","");
|
2000-09-07 22:49:55 +02:00
|
|
|
$t->set_var("lang_group_name",lang("New group name"));
|
2000-08-20 06:11:43 +02:00
|
|
|
$t->set_var("group_name_value","");
|
|
|
|
|
|
|
|
$phpgw->db->query("select count(*) from accounts where status !='L'");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
|
|
|
if ($phpgw->db->f(0) < 5) {
|
|
|
|
$t->set_var("select_size",$phpgw->db->f(0));
|
|
|
|
} else {
|
|
|
|
$t->set_var("select_size","5");
|
|
|
|
}
|
|
|
|
|
2000-09-07 22:49:55 +02:00
|
|
|
$t->set_var("lang_include_user",lang("Select users for inclusion"));
|
2000-08-20 06:11:43 +02:00
|
|
|
for ($i=0; $i<count($n_users); $i++) {
|
|
|
|
$selected_users[$n_users[$i]] = " selected";
|
|
|
|
}
|
|
|
|
|
|
|
|
$phpgw->db->query("SELECT con,firstname,lastname, loginid FROM accounts where "
|
|
|
|
. "status != 'L' ORDER BY lastname,firstname,loginid asc");
|
|
|
|
while ($phpgw->db->next_record()) {
|
|
|
|
$user_list .= "<option value=\"" . $phpgw->db->f("con") . "\""
|
|
|
|
. $selected_users[$phpgw->db->f("con")] . ">"
|
|
|
|
. $phpgw->common->display_fullname($phpgw->db->f("loginid"),
|
2000-08-26 21:20:27 +02:00
|
|
|
$phpgw->db->f("firstname"),
|
|
|
|
$phpgw->db->f("lastname")) . "</option>";
|
2000-08-20 06:11:43 +02:00
|
|
|
}
|
|
|
|
$t->set_var("user_list",$user_list);
|
|
|
|
|
2000-09-07 22:49:55 +02:00
|
|
|
$t->set_var("lang_permissions",lang("Select permissions this group will have"));
|
2000-08-20 06:11:43 +02:00
|
|
|
for ($i=0; $i<count($n_group_permissions); $i++) {
|
|
|
|
$selected_permissions[$n_group_permissions[$i]] = " selected";
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($permission = each($phpgw_info["apps"])) {
|
|
|
|
if ($permission[1]["enabled"]) {
|
|
|
|
$permissions_list .= "<option value=\"" . $permission[0] . "\""
|
|
|
|
. $selected_permissions[$permission[0]] . ">"
|
|
|
|
. $permission[1]["title"] . "</option>";
|
|
|
|
}
|
2000-08-19 02:48:04 +02:00
|
|
|
}
|
2000-08-20 06:11:43 +02:00
|
|
|
$t->set_var("permissions_list",$permissions_list);
|
2000-09-07 22:49:55 +02:00
|
|
|
$t->set_var("lang_submit_button",lang("Create Group"));
|
2000-08-20 06:11:43 +02:00
|
|
|
|
|
|
|
$t->pparse("out","form");
|
|
|
|
|
|
|
|
include($phpgw_info["server"]["api_dir"] . "/footer.inc.php");
|