mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 01:43:47 +01:00
Removed commented out code that was no longer needed
This commit is contained in:
parent
75a45c9405
commit
9ba288fab7
@ -210,111 +210,6 @@
|
||||
$phpgw->template->set_var("lang_button",lang("Edit"));
|
||||
$phpgw->template->pparse("out","form");
|
||||
|
||||
/*
|
||||
?>
|
||||
<form method="POST" action="<?php echo $phpgw->link("editaccount.php"); ?>">
|
||||
<input type="hidden" name="account_id" value="<?
|
||||
if ($phpgw_info["server"]["account_repository"] == "ldap")
|
||||
{
|
||||
echo rawurlencode($userData["account_dn"]);
|
||||
}
|
||||
else
|
||||
{
|
||||
echo $userData["account_id"];
|
||||
}?>">
|
||||
<input type="hidden" name="old_loginid" value="<? echo $userData["account_lid"]; ?>">
|
||||
<?php
|
||||
if ($error) {
|
||||
echo "<center>" . $phpgw->common->error_list($error) . "</center>";
|
||||
}
|
||||
?>
|
||||
<center>
|
||||
<table border=0 width=65%>
|
||||
<tr>
|
||||
<td><?php echo lang("LoginID"); ?></td>
|
||||
<td><input name="n_loginid" value="<? echo $userData["account_lid"]; ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang("First Name"); ?></td>
|
||||
<td><input name="n_firstname" value="<?echo $userData["firstname"]; ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang("Last Name"); ?></td>
|
||||
<td><input name="n_lastname" value="<? echo $userData["lastname"]; ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang("Groups"); ?></td>
|
||||
<td><select name="n_groups[]" multiple size="5">
|
||||
<?php
|
||||
$user_groups = $phpgw->accounts->read_group_names($userData["account_lid"]);
|
||||
|
||||
$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")) {
|
||||
echo " selected";
|
||||
}
|
||||
}
|
||||
echo ">" . $phpgw->db->f("group_name") . "</option>\n";
|
||||
}
|
||||
?>
|
||||
</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"];
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
||||
for ($i=0;$i<200;) { // The $i<200 is only used for a brake
|
||||
if (! $perm_display[$i][1]) break;
|
||||
echo '<tr><td>' . lang($perm_display[$i][1]) . '</td>'
|
||||
. '<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;
|
||||
echo '<td>' . lang($perm_display[$i][1]) . '</td>'
|
||||
. '<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++;
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo lang("Account active"); ?></td>
|
||||
<td>
|
||||
<input type="checkbox" name="n_account_status" value="A"
|
||||
<?php if ($userData["status"] == "A") { echo " checked"; } ?>
|
||||
>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang("New password [ Leave blank for no change ]"); ?></td>
|
||||
<td><input type=password name="n_passwd"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang("Re-enter password"); ?></td>
|
||||
<td><input type=password name="n_passwd_2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=2><input type="submit" name="submit" value="<?php echo lang("submit"); ?>"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</form>
|
||||
<?php */
|
||||
account_close();
|
||||
$phpgw->common->phpgw_footer();
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user