Fix user_save to properly update the status of all roles that the user has

Fix special awards tab to load&save properly
Fix volunteer positions tab to load&save properly
This commit is contained in:
james 2011-02-01 20:10:11 +00:00
parent 347b12ab2e
commit b4d018f771
5 changed files with 41 additions and 31 deletions

View File

@ -123,7 +123,6 @@ function judge_status_update(&$u)
else else
$u['judge_complete'] = 'no'; $u['judge_complete'] = 'no';
user_save($u);
return ($u['judge_complete'] == 'yes') ? 'complete' : 'incomplete'; return ($u['judge_complete'] == 'yes') ? 'complete' : 'incomplete';
} }

View File

@ -45,14 +45,14 @@ $u = user_load($eid);
switch($_GET['action']) { switch($_GET['action']) {
case 'save': case 'save':
if(array_key_exists('spaward', $_POST)) { if(array_key_exists('spaward', $_POST)) {
foreach($u['special_awards'] as $id => $val){ $awards=array();
if(in_array($id, $_POST['spaward'])){ foreach($_POST['spaward'] AS $a) {
$u['special_awards'][$id] = 'yes'; $awards[]=$a;
}else{
$u['special_awards'][$id] = 'no';
}
} }
$u['special_awards']=$awards;
} }
else
$u['special_awards']=array();
user_save($u); user_save($u);
happy_("Special Award preferences successfully saved"); happy_("Special Award preferences successfully saved");
exit; exit;
@ -105,10 +105,6 @@ if($_SESSION['embed'] != true) {
echo "<br />"; echo "<br />";
echo "<br />"; echo "<br />";
$q=mysql_query("SELECT * FROM judges_specialaward_sel WHERE users_id='{$u['id']}'");
$spawards = array();
while($r=mysql_fetch_object($q)) $spawards[] = $r->award_awards_id;
echo "<table>\n"; echo "<table>\n";
@ -133,9 +129,9 @@ if($_SESSION['embed'] != true) {
while($r=mysql_fetch_object($q)) while($r=mysql_fetch_object($q))
{ {
?> ?>
<tr><td rowspan=\"2\"> <tr><td rowspan="2">
<? $ch = (in_array($r->id,$spawards)) ? "checked=\"checked\"" : ""; ?> <? $ch = (in_array($r->id,$u['special_awards'])) ? "checked=\"checked\"" : ""; ?>
<input onclick="checkboxclicked(this)" <?=$ch?> type="checkbox" name="spaward[]" value="<?=$r->id?>" /> <input <?=$ch?> type="checkbox" name="spaward[]" value="<?=$r->id?>" />
</td><td> </td><td>
<b><?=$r->name?></b> (<?=$r->organization?>)</td> <b><?=$r->name?></b> (<?=$r->organization?>)</td>
</tr><tr> </tr><tr>

View File

@ -24,6 +24,13 @@
?> ?>
<? <?
include_once('account.inc.php'); include_once('account.inc.php');
//we need these for the <type>_status_update() functions, to determine who's complete and who's isnt
//these are called on user_save for each role, if the function exists. The functions themselves
//shoudlnt change anything, just return the results, the user_save does the updating
require_once('judge.inc.php');
require_once('volunteer.inc.php');
function user_valid_role($role) function user_valid_role($role)
{ {
global $roles; global $roles;
@ -712,16 +719,15 @@ function user_save(&$u)
if(mysql_error() != '') return "SQLERR2: " . mysql_error(); if(mysql_error() != '') return "SQLERR2: " . mysql_error();
// Save the other user data that is not stored in the users table // Save the other user data that is not stored in the users table
if( // if this user has an altered special awards selection, it needs to be saved if( // if this user has an altered special awards selection, it needs to be saved
array_key_exists('special_awards', $u) && array_key_exists('special_awards', $u)
count(array_diff_assoc($u['special_awards'], $u['orig']['special_awards'])) > 0
){ ){
mysql_query("DELETE FROM judges_specialaward_sel WHERE users_id = {$u['id']}"); mysql_query("DELETE FROM judges_specialaward_sel WHERE users_id = {$u['id']}");
if(count($u['special_awards']) > 0){ if(count($u['special_awards']) > 0){
$query = "INSERT INTO judges_specialaward_sel (users_id, award_awards_id) VALUES (" . $u['id'] . ", "; $query = "INSERT INTO judges_specialaward_sel (users_id, award_awards_id) VALUES (" . $u['id'] . ", ";
$query .= implode('), (' . $u['id'] . ', ', $u['special_awards']); $query .= implode('), (' . $u['id'] . ', ', $u['special_awards']);
$query .= ")"; $query .= ")";
echo $query;
mysql_query($query); mysql_query($query);
} }
} }
@ -765,10 +771,8 @@ function user_save(&$u)
} }
} }
if(mysql_error() != '') return "SQLERR4: " . mysql_error(); if(mysql_error() != '') return "SQLERR4: " . mysql_error();
if( // if this user has volunteer positions, or at least, an empty array for volunteer positions...
if( // if this user has an altered selection of volunteer positions, we'll need to change that too array_key_exists('volunteer_positions', $u)
array_key_exists('volunteer_positions', $u) &&
count(array_diff_assoc($u['volunteer_positions'], $u['orig']['volunteer_positions'])) > 0
){ ){
mysql_query("DELETE FROM volunteer_positions_signup WHERE users_id = {$u['id']}"); mysql_query("DELETE FROM volunteer_positions_signup WHERE users_id = {$u['id']}");
if(count($u['volunteer_positions']) > 0){ if(count($u['volunteer_positions']) > 0){
@ -780,6 +784,17 @@ function user_save(&$u)
} }
if(mysql_error() != '') return "SQLERR5: " . mysql_error(); if(mysql_error() != '') return "SQLERR5: " . mysql_error();
foreach($new_roles as $r) {
$result = user_check_role_complete($u, $r);
if($result == 'complete'){
mysql_query("UPDATE user_roles SET complete='yes' WHERE roles_id='{$u['roles'][$r]['roles_id']}' AND users_id='{$u['id']}'");
echo mysql_error();
}else{
mysql_query("UPDATE user_roles SET complete='no' WHERE roles_id='{$u['roles'][$r]['roles_id']}' AND users_id='{$u['id']}'");
echo mysql_error();
}
}
/* Record all the data in orig that we saved so subsequent /* Record all the data in orig that we saved so subsequent
* calls to user_save don't try to overwrite data already * calls to user_save don't try to overwrite data already
* saved to the database */ * saved to the database */
@ -1594,7 +1609,6 @@ function user_invite($username, $password, $email, $roles_id){
if($returnval == null){ if($returnval == null){
// if we've gotten this far, then either the user was created successfully, or they've // if we've gotten this far, then either the user was created successfully, or they've
// been loaded and our permission to modify them has been confirmed; we can add the role. // been loaded and our permission to modify them has been confirmed; we can add the role.
//james1234
$result = user_add_role($newUser, $roletype); $result = user_add_role($newUser, $roletype);
if($result == 'ok'){ if($result == 'ok'){
$returnval = user_load($newUser['id']); $returnval = user_load($newUser['id']);

View File

@ -30,9 +30,9 @@ function volunteer_status_position($u)
global $conference; global $conference;
if($conferenceid === null) $conferenceid = $conference['id']; if($conferenceid === null) $conferenceid = $conference['id'];
// See if they have selected something // See if they have selected something
$q = "SELECT * FROM volunteer_positions_signup WHERE users_id = '{$u['id']}' AND conferences_id = $conferenceid"; $sql = "SELECT * FROM volunteer_positions_signup WHERE users_id = '{$u['id']}' AND conferences_id = $conferenceid";
$r = mysql_query($q); $q = mysql_query($sql);
if(mysql_num_rows($r) >= 1) { if(mysql_num_rows($q) >= 1) {
return "complete"; return "complete";
} }
return "incomplete"; return "incomplete";
@ -40,7 +40,6 @@ function volunteer_status_position($u)
function volunteer_status_update(&$u) function volunteer_status_update(&$u)
{ {
/*
global $config; global $config;
if( user_personal_info_status($u) == 'complete' if( user_personal_info_status($u) == 'complete'
@ -49,10 +48,7 @@ function volunteer_status_update(&$u)
else else
$u['volunteer_complete'] = 'no'; $u['volunteer_complete'] = 'no';
user_save($u);
return ($u['volunteer_complete'] == 'yes') ? 'complete' : 'incomplete'; return ($u['volunteer_complete'] == 'yes') ? 'complete' : 'incomplete';
*/
return 'complete';
} }
?> ?>

View File

@ -36,6 +36,7 @@ if(array_key_exists('embed_edit_id', $_SESSION)){
if($_GET['action']=="save"){ if($_GET['action']=="save"){
$vals = ''; $vals = '';
print_r($_POST);
if(is_array($_POST['posn'])) { if(is_array($_POST['posn'])) {
/* Load available IDs */ /* Load available IDs */
@ -51,8 +52,12 @@ if($_GET['action']=="save"){
if(!in_array($id, $posns)) continue; if(!in_array($id, $posns)) continue;
$vals[] = $id; $vals[] = $id;
} }
$u['volunteer_positions'] = $vals;
} }
$u['volunteer_positions'] = $vals; else {
//if they didnt select anything...
$u['volunteer_positions']=array();
}
user_save($u); user_save($u);
$newstatus = volunteer_status_position($u); $newstatus = volunteer_status_position($u);
?> ?>
@ -152,7 +157,7 @@ while($p = mysql_fetch_object($r)) {
} }
echo "</table>"; echo "</table>";
echo "<button>" . i18n("Save Information") . "</button>"; echo "<input type=\"submit\" value=\"" . i18n("Save Information") . "\">";
echo "</form>"; echo "</form>";
echo "<br />"; echo "<br />";