$userid = filterSql($_GET['userid']); $BUser = new BaseUser(); $BUser->enableUser($userid); base_header("Location: base_useradmin.php?action=list"); break; case "deleteuser": // Deletes user $userid = filterSql($_GET['userid']); $BUser = new BaseUser(); $BUser->deleteUser($userid); base_header("Location: base_useradmin.php?action=list"); break; case "list": // Build table to list users and return it as $usertable $user = new BaseUser(); $users = $user->returnUsers(); $tmpHTML = "<TABLE CELLSPACING=0 CELLPADDING=2 BORDER=0 WIDTH='100%' BGCOLOR='#000000'><TR><TD>"; $tmpHTML = $tmpHTML . "<table CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH='100%' BGCOLOR='#FFFFFF'>"; $tmpHTML = $tmpHTML . "<tr><td CLASS='plfieldhdr' width=25>" . _EDIT . "</td><td CLASS='plfieldhdr' width=35> " . _DELETE . "</td><td CLASS='plfieldhdr'>" . _ID . "</td><td CLASS='plfieldhdr'>" . _LOGIN; $tmpHTML = $tmpHTML . "</td><td CLASS='plfieldhdr'>" . _ROLEID . "</td><td CLASS='plfieldhdr'>" . _NAME; $tmpHTML = $tmpHTML . "</td><td CLASS='plfieldhdr'>" . _ENABLED . "</td></tr>"; // Verify that we have a user in the db --Kevin if ($users != "") { foreach ($users as $row) { //explode array rows and build table $tmpRow = explode("|", $row); $enabled = $tmpRow[4] == 1 ? "<a href='base_useradmin.php?action=disableuser&userid=" . urlencode($tmpRow[0]) . "'><img src='" . $BASE_urlpath . "/images/greencheck.png' border='0' alt='button_greencheck'></a>" : "<a href='base_useradmin.php?action=enableuser&userid=" . urlencode($tmpRow[0]) . "'><img src='" . $BASE_urlpath . "/images/button_exclamation.png' border='0' alt='button_exclamation'>"; $rolename = $user->roleName($tmpRow[2]); $name = $tmpRow[2] == 1 ? "<font color='#ff000'><b>" . htmlspecialchars($tmpRow[1]) . "</b></font>" : htmlspecialchars($tmpRow[1]); $tmpHTML = $tmpHTML . "<tr><td align='center'><a href='base_useradmin.php?action=edituser&userid=" . urlencode($tmpRow[0]) . "'>"; $tmpHTML = $tmpHTML . "<img src='" . $BASE_urlpath . "/images/button_edit.png' border='0' alt='button_edit'></a></td>";