egroupware_official/admin/editaccount.php

179 lines
6.5 KiB
PHP
Raw Normal View History

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$ */
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "admin");
2000-08-18 05:24:22 +02:00
include("../header.inc.php");
include($phpgw_info["server"]["server_root"] . "/admin/inc/accounts_"
. $phpgw_info["server"]["account_repository"] . ".inc.php");
if (! $account_id) {
2000-08-18 05:24:22 +02:00
Header("Location: " . $phpgw->link("accounts.php"));
}
2000-08-18 05:24:22 +02:00
if ($submit) {
$totalerrors = 0;
if ($phpgw_info["server"]["account_repository"] == "ldap") {
if (strlen($n_loginid) > 8) {
$error[$totalerrors++] = lang("The loginid can not be more then 8 characters");
}
}
if ($old_loginid != $n_loginid) {
if (account_exsists($n_loginid)) {
$error[$totalerrors++] = lang("That loginid has already been taken");
}
$c_loginid = $n_loginid;
$n_loginid = $old_loginid;
}
if ($n_passwd || $n_passwd_2) {
if ($n_passwd != $n_passwd_2) {
$error[$totalerrors++] = lang("The two passwords are not the same");
}
if (! $n_passwd){
$error[$totalerrors++] = lang("You must enter a password");
}
}
if (count($new_permissions) == 0){
$error[$totalerrors++] = "<br>" . lang("You must add at least 1 permission to this account");
}
if (! $totalerrors) {
$cd = account_edit(array("loginid" => $n_loginid, "permissions" => $new_permissions,
2000-11-06 01:27:52 +01:00
"firstname" => $n_firstname, "lastname" => $n_lastname,
"passwd" => $n_passwd, "account_status" => $n_account_status,
"c_loginid" => $c_loginid, "account_id" => rawurldecode($account_id),
"groups" => $phpgw->accounts->groups_array_to_string($n_groups)));
}
2000-10-26 03:16:10 +02:00
Header("Location: " . $phpgw->link("accounts.php", "cd=$cd"));
exit;
2000-08-18 05:24:22 +02:00
} // if $submit
$phpgw->common->phpgw_header();
2000-08-18 05:24:22 +02:00
$phpgw->common->navbar();
2000-08-27 03:52:30 +02:00
2000-11-06 01:27:52 +01:00
$userData = $phpgw->accounts->read_userData($account_id);
$db_perms = $phpgw->accounts->read_apps($userData["account_lid"]);
2000-09-06 17:55:58 +02:00
?>
<form method="POST" action="<?php echo $phpgw->link("editaccount.php"); ?>">
2000-11-12 10:26:54 +01:00
<input type="hidden" name="account_id" value="<?
if ($phpgw_info["server"]["account_repository"] == "ldap")
2000-11-12 10:26:54 +01:00
{
echo rawurlencode($userData["account_dn"]);
}
else
{
echo $userData["account_id"];
}?>">
2000-11-06 01:27:52 +01:00
<input type="hidden" name="old_loginid" value="<? echo $userData["account_lid"]; ?>">
2000-09-06 17:55:58 +02:00
<?php
if ($error) {
echo "<center>" . $phpgw->common->error_list($error) . "</center>";
2000-09-06 17:55:58 +02:00
}
?>
2000-08-18 05:24:22 +02:00
<center>
<table border=0 width=65%>
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("LoginID"); ?></td>
2000-11-06 01:27:52 +01:00
<td><input name="n_loginid" value="<? echo $userData["account_lid"]; ?>"></td>
2000-08-18 05:24:22 +02:00
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("First Name"); ?></td>
2000-11-06 01:27:52 +01:00
<td><input name="n_firstname" value="<?echo $userData["firstname"]; ?>"></td>
2000-08-18 05:24:22 +02:00
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("Last Name"); ?></td>
2000-11-06 01:27:52 +01:00
<td><input name="n_lastname" value="<? echo $userData["lastname"]; ?>"></td>
2000-08-18 05:24:22 +02:00
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("Groups"); ?></td>
2000-08-18 05:24:22 +02:00
<td><select name="n_groups[]" multiple size="5">
2000-09-06 17:55:58 +02:00
<?php
2000-11-06 01:27:52 +01:00
$user_groups = $phpgw->accounts->read_group_names($userData["account_lid"]);
2000-09-06 17:55:58 +02:00
$phpgw->db->query("select * from groups");
while ($phpgw->db->next_record()) {
echo "<option value=\"" . $phpgw->db->f("group_id") . "\"";
for ($i=0; $i<count($user_groups); $i++) {
if ($user_groups[$i][0] == $phpgw->db->f("group_id")) {
2000-09-06 17:55:58 +02:00
echo " selected";
2000-08-18 05:24:22 +02:00
}
}
echo ">" . $phpgw->db->f("group_name") . "</option>\n";
2000-09-06 17:55:58 +02:00
}
?>
</select>
</tr>
<?php
$i = 0;
while ($permission = each($phpgw_info["apps"])) {
if ($permission[1]["enabled"]) {
$perm_display[$i][0] = $permission[0];
$perm_display[$i][1] = $permission[1]["title"];
2000-08-18 05:24:22 +02:00
$i++;
2000-09-06 17:55:58 +02:00
}
}
2000-09-06 17:55:58 +02:00
for ($i=0;$i<200;) { // The $i<200 is only used for a brake
if (! $perm_display[$i][1]) break;
2000-09-07 22:49:55 +02:00
echo '<tr><td>' . lang($perm_display[$i][1]) . '</td>'
2000-09-06 17:55:58 +02:00
. '<td><input type="checkbox" name="new_permissions['
. $perm_display[$i][0] . ']" value="True"';
if ($new_permissions[$perm_display[$i][0]] || $db_perms[$perm_display[$i][0]]) {
echo " checked";
}
echo "></td>";
$i++;
if (! $perm_display[$i][1]) break;
2000-09-07 22:49:55 +02:00
echo '<td>' . lang($perm_display[$i][1]) . '</td>'
2000-09-06 17:55:58 +02:00
. '<td><input type="checkbox" name="new_permissions['
. $perm_display[$i][0] . ']" value="True"';
if ($new_permissions[$perm_display[$i][0]] || $db_perms[$perm_display[$i][0]]) {
echo " checked";
}
echo "></td></tr>";
$i++;
}
?>
2000-08-18 05:24:22 +02:00
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("Account active"); ?></td>
2000-11-06 01:27:52 +01:00
<td>
<input type="checkbox" name="n_account_status" value="A"
<?php if ($userData["status"] == "A") { echo " checked"; } ?>
>
2000-09-06 17:55:58 +02:00
</td>
2000-08-18 05:24:22 +02:00
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("New password [ Leave blank for no change ]"); ?></td>
2000-08-18 05:24:22 +02:00
<td><input type=password name="n_passwd"></td>
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><?php echo lang("Re-enter password"); ?></td>
2000-08-18 05:24:22 +02:00
<td><input type=password name="n_passwd_2"></td>
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td colspan=2><input type="submit" name="submit" value="<?php echo lang("submit"); ?>"></td>
2000-08-18 05:24:22 +02:00
</tr>
</table>
</center>
</form>
<?php
account_close();
$phpgw->common->phpgw_footer();
?>