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$ */
|
|
|
|
|
2000-11-21 01:41:31 +01:00
|
|
|
$phpgw_info = array();
|
2000-08-19 02:48:04 +02:00
|
|
|
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");
|
|
|
|
|
2001-01-21 13:59:41 +01:00
|
|
|
function is_odd($n)
|
|
|
|
{
|
|
|
|
$ln = substr($n,-1);
|
|
|
|
if ($ln == 1 || $ln == 3 || $ln == 5 || $ln == 7 || $ln == 9) {
|
|
|
|
return True;
|
|
|
|
} else {
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_file(array("form" => "groups_form.tpl"));
|
2000-08-20 06:11:43 +02:00
|
|
|
|
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) {
|
2001-01-18 05:55:34 +01:00
|
|
|
$error = "<br>" . lang("Sorry, that group name has already been taken.");
|
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) {
|
2001-02-01 05:02:01 +01:00
|
|
|
$phpgw->db->lock(array("groups","phpgw_acl","preferences"));
|
2001-01-21 02:26:23 +01:00
|
|
|
|
|
|
|
$phpgw->db->query("INSERT INTO groups (group_name) VALUES ('$n_group')");
|
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();
|
2001-01-31 06:55:38 +01:00
|
|
|
|
|
|
|
$group_id = $phpgw->db->f("group_id");
|
|
|
|
|
|
|
|
$apps = CreateObject('phpgwapi.applications',array(intval($group_id),'g'));
|
|
|
|
@reset($n_group_permissions);
|
|
|
|
while($app = each($n_group_permissions)) {
|
|
|
|
if($app[1]) {
|
|
|
|
$apps->add_app($app[0]);
|
|
|
|
$new_apps[] = $app[0];
|
|
|
|
}
|
2001-01-10 06:01:56 +01:00
|
|
|
}
|
2001-01-31 06:55:38 +01:00
|
|
|
$apps->save_apps();
|
|
|
|
|
2000-08-19 02:48:04 +02:00
|
|
|
for ($i=0; $i<count($n_users);$i++) {
|
2001-02-01 05:02:01 +01:00
|
|
|
$phpgw->acl->add("phpgw_group","$group_id",$n_users[$i],"u",1);
|
2001-01-18 05:55:34 +01:00
|
|
|
|
|
|
|
$pref = CreateObject('phpgwapi.preferences',intval($n_users[$i]));
|
|
|
|
$t = $pref->get_preferences();
|
|
|
|
|
|
|
|
$docommit = False;
|
|
|
|
for ($j=0;$j<count($new_apps);$j++) {
|
|
|
|
if($new_apps[$j]=="admin") {
|
|
|
|
$check = "common";
|
|
|
|
} else {
|
|
|
|
$check = $new_apps[$j];
|
|
|
|
}
|
|
|
|
if (!$t["$check"]) {
|
|
|
|
$phpgw->common->hook_single("add_def_pref", $new_apps[$j]);
|
|
|
|
$docommit = True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($docommit) {
|
|
|
|
$pref->commit();
|
|
|
|
}
|
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-10-02 10:30:23 +02:00
|
|
|
umask(000);
|
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"));
|
2000-12-23 23:50:32 +01:00
|
|
|
$phpgw->common->phpgw_exit();
|
2000-08-19 02:48:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($error) {
|
2000-09-28 17:01:11 +02:00
|
|
|
$phpgw->common->phpgw_header();
|
2001-01-06 05:11:13 +01:00
|
|
|
echo parse_navbar();
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("error","<p><center>$error</center>");
|
2000-08-20 06:11:43 +02:00
|
|
|
} else {
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("error","");
|
2000-08-20 06:11:43 +02:00
|
|
|
}
|
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("form_action",$phpgw->link("newgroup.php"));
|
|
|
|
$phpgw->template->set_var("hidden_vars","");
|
|
|
|
$phpgw->template->set_var("lang_group_name",lang("New group name"));
|
|
|
|
$phpgw->template->set_var("group_name_value","");
|
2000-08-20 06:11:43 +02:00
|
|
|
|
2000-09-28 00:36:15 +02:00
|
|
|
$phpgw->db->query("select count(*) from accounts where account_status !='L'");
|
2000-08-20 06:11:43 +02:00
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
|
|
|
if ($phpgw->db->f(0) < 5) {
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("select_size",$phpgw->db->f(0));
|
2000-08-20 06:11:43 +02:00
|
|
|
} else {
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("select_size","5");
|
2000-08-20 06:11:43 +02:00
|
|
|
}
|
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->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";
|
|
|
|
}
|
|
|
|
|
2000-09-26 00:35:09 +02:00
|
|
|
$phpgw->db->query("SELECT account_id,account_firstname,account_lastname,account_lid FROM accounts where "
|
|
|
|
. "account_status != 'L' ORDER BY account_lastname,account_firstname,account_lid asc");
|
2000-08-20 06:11:43 +02:00
|
|
|
while ($phpgw->db->next_record()) {
|
2000-09-26 00:35:09 +02:00
|
|
|
$user_list .= "<option value=\"" . $phpgw->db->f("account_id") . "\""
|
|
|
|
. $selected_users[$phpgw->db->f("account_id")] . ">"
|
|
|
|
. $phpgw->common->display_fullname($phpgw->db->f("account_lid"),
|
|
|
|
$phpgw->db->f("account_firstname"),
|
|
|
|
$phpgw->db->f("account_lastname")) . "</option>";
|
2000-08-20 06:11:43 +02:00
|
|
|
}
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("user_list",$user_list);
|
2000-08-20 06:11:43 +02:00
|
|
|
|
2001-01-21 02:26:23 +01:00
|
|
|
$phpgw->template->set_var("lang_permissions",lang("Permissions this group has"));
|
2000-08-20 06:11:43 +02:00
|
|
|
|
2001-01-21 02:26:23 +01:00
|
|
|
$i = 0;
|
|
|
|
$sorted_apps = $phpgw_info["apps"];
|
|
|
|
@asort($sorted_apps);
|
|
|
|
@reset($sorted_apps);
|
2001-01-31 06:55:38 +01:00
|
|
|
while ($permission = each($sorted_apps)) {
|
2000-08-20 06:11:43 +02:00
|
|
|
if ($permission[1]["enabled"]) {
|
2001-01-21 02:26:23 +01:00
|
|
|
$perm_display[$i][0] = $permission[0];
|
|
|
|
$perm_display[$i][1] = $permission[1]["title"];
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$perm_html = "";
|
|
|
|
for ($i=0;$i<200;) { // The $i<200 is only used for a brake
|
|
|
|
if (! $perm_display[$i][1]) break;
|
|
|
|
$perm_html .= '<tr bgcolor="'.$phpgw_info["theme"]["row_on"].'"><td>' . lang($perm_display[$i][1]) . '</td>'
|
|
|
|
. '<td><input type="checkbox" name="n_group_permissions['
|
|
|
|
. $perm_display[$i][0] . ']" value="True"';
|
2001-01-31 06:55:38 +01:00
|
|
|
if ($n_group_permissions[$perm_display[$i][0]]) {
|
2001-01-21 02:26:23 +01:00
|
|
|
$perm_html .= " checked";
|
2000-08-20 06:11:43 +02:00
|
|
|
}
|
2001-01-21 02:26:23 +01:00
|
|
|
$perm_html .= "></td>";
|
|
|
|
$i++;
|
|
|
|
|
|
|
|
if ($i == count($perm_display) && is_odd(count($perm_display))) {
|
|
|
|
$perm_html .= '<td colspan="2"> </td></tr>';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $perm_display[$i][1]) break;
|
|
|
|
$perm_html .= '<td>' . lang($perm_display[$i][1]) . '</td>'
|
|
|
|
. '<td><input type="checkbox" name="n_group_permissions['
|
|
|
|
. $perm_display[$i][0] . ']" value="True"';
|
2001-01-31 06:55:38 +01:00
|
|
|
if ($n_group_permissions[$perm_display[$i][0]]) {
|
2001-01-21 02:26:23 +01:00
|
|
|
$perm_html .= " checked";
|
|
|
|
}
|
|
|
|
$perm_html .= "></td></tr>\n";
|
|
|
|
$i++;
|
2000-08-19 02:48:04 +02:00
|
|
|
}
|
2001-01-21 02:26:23 +01:00
|
|
|
|
|
|
|
$phpgw->template->set_var("permissions_list",$perm_html);
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("lang_submit_button",lang("Create Group"));
|
2000-08-20 06:11:43 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->pparse("out","form");
|
2000-08-20 06:11:43 +02:00
|
|
|
|
2000-09-29 07:24:18 +02:00
|
|
|
$phpgw->common->phpgw_footer();
|
2000-09-28 00:36:15 +02:00
|
|
|
?>
|