From 7c918c0167de121b460c94f818aea02ca84f66b2 Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 13 Jul 2010 03:30:26 +0000 Subject: [PATCH] update the user personal information editor, the superuser edit flags for admin/config/super don't quite work yet. --- user.inc.php | 3 +- user_personal.php | 81 ++++++++++++++++++++++++++++++----------------- 2 files changed, 54 insertions(+), 30 deletions(-) diff --git a/user.inc.php b/user.inc.php index dbd685a5..7dedde87 100644 --- a/user.inc.php +++ b/user.inc.php @@ -38,7 +38,8 @@ function user_valid_role($role) function user_load($users_id, $accounts_id = false) { - $query = "SELECT * FROM users WHERE "; + /* Load user, join accounts so we also load the email, superuser flag */ + $query = "SELECT * FROM users JOIN accounts ON accounts.id=users.accounts_id WHERE "; if($accounts_id != false) { $accounts_id = intval($accounts_id); $query .= "`users`.`accounts_id`='$accounts_id' ORDER BY `users`.`year` DESC LIMIT 1"; diff --git a/user_personal.php b/user_personal.php index 7a5f6789..289ebab6 100644 --- a/user_personal.php +++ b/user_personal.php @@ -25,10 +25,9 @@ 0) { error_("That email address is in use by another user"); echo "email error"; @@ -182,7 +206,7 @@ case 'save': echo "
"; } else { send_header("Personal Information for {$u['firstname']} {$u['lastname']}", - array($user_what[$type]." Registration" => "{$type}_main.php") + array("Main" => "user_main.php") ,"edit_profile" ); } @@ -211,12 +235,12 @@ $(document).ready( function() { personal_update_status('');}); "; -if(count($u['types']) > 1) { - $roles=''; - foreach($u['types'] as $t) { - $roles.= (($roles=='')?'':', ').i18n($user_what[$t]); +if(count($u['roles']) > 1) { + $str=''; + foreach(array_keys($u['roles']) as $r) { + $str.= (($str=='')?'':', ').i18n($roles[$r]['name']); } - echo notice(i18n('This user has multiple roles, the fields shown below are a combination of every role. Some may not apply to some roles. This user has the following roles:').' '.$roles); + echo notice(i18n('This user has multiple roles, the fields shown below are a combination of every role. Some may not apply to some roles. This user has the following roles:').' '.$str); } function item($user, $fname, $subtext='') @@ -347,7 +371,7 @@ echo "
"; echo ""; /* Committee specific fields */ -if(in_array('committee', $u['types'])) { +if(array_key_exists('committee', $u['roles'])) { echo ""; echo "\n"; @@ -358,17 +382,16 @@ if(in_array('committee', $u['types'])) { if($u['displayemail']=="yes") $checked="checked=\"checked\""; else $checked=""; echo "".i18n("Yes"); - if(committee_auth_has_access("super")) - { + if($_SESSION['superuser'] == 'yes') { /* If the user is a committee member, only print these fields * if the editer has super access */ echo ""; echo ""; }
".i18n("Email (Private)").":

".i18n("Access Controls").":"; - $ch = ($u['access_admin']=="yes") ? 'checked="checked"' : ''; + $ch = (array_key_exists('admin',$u['roles'])) ? 'checked="checked"' : ''; echo " ".i18n("Administration")."
"; - $ch = ($u['access_config']=="yes") ? 'checked="checked"' : ''; + $ch = (array_key_exists('config',$u['roles'])) ? 'checked="checked"' : ''; echo " ".i18n("Configuration")."
"; - $ch = ($u['access_super']=="yes") ? 'checked="checked"' : ''; + $ch = ($u['superuser']=="yes") ? 'checked="checked"' : ''; echo " ".i18n("Superuser")."
"; echo "