Exemple #1
0
 case "changepassword":
     $form = "<form action='base_user.php?action=change' Method='POST'>";
     $form = $form . "<table border=1 class='query'>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("Old Password:"******"</td>";
     $form = $form . "<td align='left'><input type='password' name='oldpasswd'></td></tr>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("New Password:"******"</td>";
     $form = $form . "<td align='left'><input type='password' name='newpasswd1'></td></tr>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("New Password Again:") . "</td>";
     $form = $form . "<td align='left'><input type='password' name='newpasswd2'></td></tr>";
     $form = $form . "<tr><td colspan='2' align='center'><input type='submit' name='submit'></td>";
     $form = $form . "</tr></table>";
     $page_body = $page_body . $form;
     break;
 case "display":
     $user = new BaseUser();
     $userlogin = $user->returnUser();
     $userid = $user->returnUserID($userlogin);
     $userinfo = $user->returnEditUser($userid);
     $form = "<table border=1 class='query'>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("User ID:") . "</td>";
     $form = $form . "<td align='left'>" . $userinfo[0] . "</td></tr>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("Login:"******"</td>";
     $form = $form . "<td align='left'>" . $userinfo[1] . "</td></tr>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("Full Name:") . "</td>";
     $form = $form . "<td align='left'>" . $userinfo[3] . "</td></tr>";
     $form = $form . "<tr><td width='25%' align='right'>" . gettext("Role:") . "</td>";
     $form = $form . "<td align='left'>" . $user->roleName($userinfo[2]) . "</td></tr>";
     $form = $form . "</tr></table>";
     $page_body = $form;
     break;
 default: