<?php /* $Id: adm_edit.php,v 1.13 2006/01/24 05:03:30 joe Exp $ ---------------------------------------------------------------------- AlternC - Web Hosting System Copyright (C) 2006 Le réseau Koumbit Inc. http://koumbit.org/ Copyright (C) 2002 by the AlternC Development Team. http://alternc.org/ ---------------------------------------------------------------------- Based on: Valentin Lacambre's web hosting softwares: http://altern.org/ ---------------------------------------------------------------------- LICENSE This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. To read the license please visit http://www.gnu.org/copyleft/gpl.html ---------------------------------------------------------------------- Original Author of file: Benjamin Sonntag Purpose of file: Show a form to edit a member ---------------------------------------------------------------------- */ require_once("../class/config.php"); if (!$admin->enabled) { __("This page is restricted to authorized staff"); exit(); } if (!$admin->checkcreator($uid)) { __("This page is restricted to authorized staff"); exit(); } if (!$r=$admin->get($uid)) { $error=$err->errstr(); } include("head.php"); ?> </head> <body> <h3><?php __("Member Edition"); ?></h3> <?php if ($error) { echo "<p class=\"error\">$error</p>"; } ?> <form method="post" action="adm_doedit.php"> <table border="1" cellspacing="0" cellpadding="4"> <tr> <th><input type="hidden" name="uid" value="<?php echo $uid ?>" /> <?php __("Username"); ?></th> <td><?php echo $r["login"]; ?></td> </tr> <tr> <th><label for="enabled"><?php __("Account Enabled ?"); ?></label></th> <td><select class="inl" name="enabled" id="enabled"> <?php echo "<option"; if ($r["enabled"]=="0") echo " selected=\"selected\""; echo " value=\"0\">"._("No")."</option>"; echo "<option"; if ($r["enabled"]=="1") echo " selected=\"selected\""; echo " value=\"1\">"._("Yes")."</option>"; ?></select></td> </tr> <tr> <th><label for="pass"><?php __("Password"); ?></label></th> <td><input type="password" class="int" id="pass" name="pass" value="" size="20" maxlength="64" /></td> </tr> <tr> <th><label for="passconf"><?php __("Confirm password"); ?></label></th> <td><input type="password" class="int" id="passconf" name="passconf" value="" size="20" maxlength="64" /></td> </tr> <tr> <th><label for="canpass"><?php __("Can he change its password"); ?></label></th> <td><select class="inl" name="canpass" id="canpass"> <?php for($i=0;$i<count($bro->l_icons);$i++) { echo "<option"; if ($r["canpass"]==$i) echo " selected=\"selected\""; echo " value=\"$i\">"._($bro->l_icons[$i])."</option>"; } ?></select> </td> </tr> <tr> <th><label for="nom"><?php echo _("Surname")."</label> / <label for=\"prenom\">"._("First Name"); ?></label></th> <td><input type="text" class="int" name="nom" id="nom" value="<?php echo $r["nom"]; ?>" size="20" maxlength="128" /> / <input type="text" class="int" name="prenom" id="prenom" value="<?php echo $r["prenom"]; ?>" size="20" maxlength="128" /></td> </tr> <tr> <th><label for="nmail"><?php __("Email address"); ?></label></th> <td><input type="text" class="int" name="nmail" id="nmail" value="<?php echo $r["mail"]; ?>" size="30" maxlength="128" /></td> </tr> <tr> <th><label for="type"><?php __("Account type"); ?></label></th> <td><select name="type" id="type"> <?php $db->query("SELECT distinct(type) FROM defquotas ORDER by type"); while($db->next_record()) { $type = $db->f("type"); echo "<option value=\"$type\""; if($type == $r['type']) echo " selected"; echo ">$type</option>"; } ?></select><label for="reset_quotas"><?php __("Reset quotas to default ?") ?></label><input type="checkbox" name="reset_quotas" id="reset_quotas"></td> </tr> <tr> <th><label for="duration"><?php __("Period"); ?></label></th> <td><?php echo duration_list('duration', $r['duration']) ?></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Edit this account"); ?>" /> </td> </tr> </table> </form> <?php if($r['duration']) { ?> <p> <form method="post" action="adm_dorenew.php"> <input type="hidden" name="uid" value="<?php echo $uid ?>" /> <table border="1" cellspacing="0" cellpadding="4"> <tr> <th><label for="periods"><?php __("Renew for") ?></label></th> <td><input name="periods" id="periods" type="text" size="2" value="1"/><?php echo ' ' . _('period(s)') ?></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Renew"); ?>" /> </td> </tr> </table> </form> </p> <?php } /* Renouvellement */ ?> <p> <?php if ($mem->user[uid]==2000) { // PATCHBEN only admin can change su/nosu :) if ($r["su"]) { ?> <b><?php __("This account is a super-admin account"); ?></b><br /> <?php if ($admin->onesu()) { __("There is only one administrator account, you cannot turn this account back to normal"); } else { ?> <a href="adm_donosu.php?uid=<?php echo $r["uid"]; ?>"><?php __("Turn this account back to normal"); ?></a> <?php } } else { ?> <a href="adm_dosu.php?uid=<?php echo $r["uid"]; ?>"><?php __("Make this account a super admin one"); ?></a> <?php } ?> </p> <p><?php } $c=$admin->get($r["creator"]); printf(_("Account created by %s"),$c["login"]); ?> </p> <p><a href="adm_list.php"><?php __("Back to the account list"); ?></a></p> </body> </html>