0,'location'=>'c_jteam_edit.php')); exit(); case 'jdel': /* Remove a judge from a judging team */ $jteam_id = (int)$_POST['jteam_id']; $j_uid = (int)$_POST['uid']; $jteam = jteam_load($mysqli, $jteam_id); /* Need to fix this, deleting timeslot assignments can leave holds in the timeslot, we need a way to automatically fix them , * what we need is an incremental way to build a judge timeslot schedule that doesn't depend on running the full * timeslot scheduler */ // $mysqli->query("DELETE FROM timeslot_assignments WHERE judging_team_id='$jteam_id' AND judge_id='$j_uid'"); $new_uids = array(); foreach($jteam['user_ids'] as $uid) { if($uid == $j_uid) continue; $new_uids[] = $uid; } $jteam['user_ids'] = $new_uids; jteam_save($mysqli, $jteam); form_ajax_response(array('status'=>$jteam['round'])); exit(); case 'jadd': /* Add a judge to a jduging team */ $jteam_id = (int)$_POST['jteam_id']; $j_uid = (int)$_POST['uid']; $jteam = jteam_load($mysqli, $jteam_id); $jteam['user_ids'][] = $j_uid; jteam_save($mysqli, $jteam); /* Pass back the jteam round so the JS can setup the proper links * and mvoe table elements around from the right unused judge list */ form_ajax_response(array('status'=>$jteam['round'])); exit(); case 'jautoadd': $projects = projects_load_all($mysqli); /* Add a best-match single free judge to a judging team */ $jteam_id = (int)$_POST['jteam_id']; $jteam = jteam_load($mysqli, $jteam_id); $j_uid = false; /* Build a list of divs for this jteam */ $jteam_divs = array(); foreach($jteam['project_ids'] as $pid) { $p = &$projects[$pid]; $pref = $p['isef_id']; if($isef_divs[$pref]['parent'] != false) $div = $isef_divs[$pref]['parent']; else $div = $isef_divs[$pref]['div']; if(!array_key_exists($div, $jteam_divs)) { $jteam_divs[$div] = 0; } $jteam_divs[$div] += 1; } $best_matches = -1; $best_judge_id = 0; foreach($judges as $uid=>&$j) { if(!in_array($jteam['round'], $j['j_rounds'])) continue; if(!$j['attending'] || !$j['j_complete'] || !$j['enabled']) continue; /* Make sure this judge isn't assigned to a slot already */ $q = $mysqli->query("SELECT * FROM judging_teams WHERE FIND_IN_SET('$uid',`user_ids`)>0 AND round='{$jteam['round']}'"); if($q->num_rows > 0) { /* Judge is already assigned in this round */ continue; } /* This judge is free in this round, see how their expertise matches */ $matches = 0; foreach($j['j_div_pref'] as $pref) { if($pref > 0) { if($isef_divs[$pref]['parent'] != false) $d = $isef_divs[$pref]['parent']; else $d = $isef_divs[$pref]['div']; if(array_key_exists($d, $jteam_divs) && $jteam_divs[$d] > 0) { $matches += 1; } } } if($matches > $best_matches) { $best_matches = $matches; $best_judge_id = $uid; } } if($best_matches > -1) { $jteam['user_ids'][] = $best_judge_id; jteam_save($mysqli, $jteam); } form_ajax_response(array('status'=>$jteam['round'], 'info'=>$best_judge_id)); exit(); case 'pdel': /* Remove a project from a judging team */ $jteam_id = (int)$_POST['jteam_id']; $del_pid = (int)$_POST['pid']; $jteam = jteam_load($mysqli, $jteam_id); $mysqli->query("DELETE FROM timeslot_assignments WHERE judging_team_id='$jteam_id' AND pid='$del_pid'"); $new_pids = array(); foreach($jteam['project_ids'] as $pid) { if($pid == $del_pid) continue; $new_pids[] = $pid; } $jteam['project_ids'] = $new_pids; jteam_save($mysqli, $jteam); form_ajax_response(array('status'=>0)); exit(); case 'padd': /* Add a project to a jduging team */ $jteam_id = (int)$_POST['jteam_id']; $pid = (int)$_POST['pid']; $jteam = jteam_load($mysqli, $jteam_id); $jteam['project_ids'][] = $pid; jteam_save($mysqli, $jteam); form_ajax_response(array('status'=>0)); exit(); } $projects = projects_load_all($mysqli, $config['year']); $jteams = jteams_load_all($mysqli, $config['year']); $rounds = timeslots_load_rounds($mysqli); $page_id = 'c_jteam_list'; $help = '

ISEF divisions:

'; sfiab_page_begin($u, "Judging Teams List", $page_id, $help); /*
*/ ?>

Unused Judges

&$r) { $judge_list = array(); foreach($judges as $jid=>&$j) { if(in_array($round, $j['j_rounds']) && $j['j_complete'] == 1 && $j['attending']) { /* Is this judge on a jteam in ths round? */ $found = false; foreach($jteams as &$jteam) { if($jteam['round'] != $round) continue; foreach($jteam['user_ids'] as $uid) { if($uid == $j['uid']) { $found = true; break; } } if($found == true) break; } if(!$found) { $judge_list[] =& $j; } } } ?>

- Unused Judges

count($judge_list)/2 ) { ?>

Judging Teams

    &$r) { foreach(array('Divisional','Special','Other') as $t) { ?>
  • -

  • 0) { $a =& $awards[$jteam['award_id']]; if($t == 'Divisional' && $a['type'] != 'divisional') continue; if($t == 'Special' && $a['type'] != 'special') continue; if($t == 'Other' && ($a['type'] == 'divisional' || $a['type'] == 'special') ) continue; } else { if($t != 'Other') continue; } jteam_li($jteam); } unset($jteam); } } unset($r); ?>
JudgeCat Pref Div Pref Years Langs Lead? 0) { if($isef_divs[$pref]['parent'] != false) $d = $isef_divs[$pref]['parent']; else $d = $isef_divs[$pref]['div']; $div_pref .= $d.' '; } } $exp = $j['j_years_regional'] + $j['j_years_national']; } $langs = ''; if(is_array($j['j_languages'])) { if(in_array('en', $j['j_languages'])) $langs.= 'en '; if(in_array('fr', $j['j_languages'])) $langs.= 'fr '; } $lead = $j['j_willing_lead'] ? 'y' : 'n'; if($tr == true) { ?> 50) $title = substr($title, 0, 47)."..."; $lang = $p['language']; if($tr == true) { ?> 0 ? $awards[$jteam['award_id']]['name'] : 'None'; ?>
  • # -

    ProjectTitle Cat Div Lang
    INVALID PROJECT Project ID
  • &$j) { judge_row($j); } unset($j); ?>
    &$p) { project_row($p); } unset($p); ?>