diff --git a/admin/user_list.php b/admin/user_list.php index 7dd36a96..54790486 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -27,6 +27,24 @@ user_auth_required('committee', 'admin'); include "judges.inc.php"; + $show_types = $_GET['show_types']; + if(user_valid_type($show_types) == false) $show_types = array('judge'); + + $show_complete = ($_GET['show_complete'] == 'yes') ? 'yes' : 'no'; + $show_year = ($_GET['show_year'] == 'all') ? 'all' : 'current'; + + $uid = intval($_GET['uid']); + + if($_GET['action']=='remove') { + if(!$uid) { + echo "Invalid uid for delete"; + exit; + } + user_delete($uid); + message_push(happy(i18n('User deleted.'))); + + } + send_header("User Editor", array('Committee Main' => 'committee_main.php', 'Administration' => 'admin/index.php') @@ -36,10 +54,7 @@ function openeditor(id) { - if(id) - currentid=id; -/* else - currentid=document.forms.judges["judgelist[]"].options[document.forms.judges["judgelist[]"].selectedIndex].value;*/ + if(id) currentid=id; window.open("user_editor_window.php?id="+currentid,"User Editor","location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes"); return false; @@ -61,25 +76,6 @@ function toggleoptions() "; echo "- ".i18n('Hide Display Options').""; @@ -167,9 +163,10 @@ function toggleoptions() echo mysql_error(); echo ""; echo " ".i18n("Name").""; - echo " ".i18n("Type(s)").""; echo " ".i18n("Email Address").""; echo " ".i18n("Year").""; + echo " ".i18n("Type(s)").""; + echo " ".i18n("Active").""; echo " ".i18n("Complete").""; echo " ".i18n("Actions").""; echo ""; @@ -179,11 +176,6 @@ function toggleoptions() { echo ""; echo "{$r['firstname']} {$r['lastname']}"; - echo ""; - $types = split(',', $r['types']); - foreach($types as $t) { - echo $user_what[$t]."
"; - } echo ""; echo "{$r['email']}"; @@ -191,8 +183,22 @@ function toggleoptions() echo "{$r['year']}"; echo ""; - foreach($types as $t) { + $types = split(',', $r['types']); + foreach($types as $t) echo $user_what[$t]."
"; + echo ""; + echo ""; + foreach($types as $t) { + if($r["{$t}_active"] == 'yes') { + echo "
".i18n("yes")."
"; + } else { + echo "
".i18n("no")."
"; + } + } + echo ""; + + echo ""; + foreach($types as $t) { if($r["{$t}_complete"] == 'yes') { echo "
".i18n("yes")."
"; $completeyes++; @@ -203,13 +209,14 @@ function toggleoptions() } echo ""; echo ""; - echo "id\">"; + echo " "; + echo ""; echo ""; echo ""; } echo ""; - echo i18n("Note: Deleting judges from this list only deactivates the judge for this year's fair. To completely delete a judge, use the 'Manage Judges' page"); + echo i18n("Note: Deleting users from this list is a permanent operation and cannot be undone. Consider editting the user and deactivating or deleting roles in their account instead."); echo "
"; echo "
"; echo "$num ".i18n("people listed.");