"); $filter_jteam = 0; if (array_key_exists('id', $_GET)) { $filter_jteam = (int)$_GET['id']; } $pdf=new pdf( "Judging Team Hand-In Form", $config['year'] ); function td_box() { return "
   
1-4 H/M/L
"; } foreach($generate_rounds as $round ) { $ts = &$timeslots_by_round[$round]; $timeslot_id = $ts['id']; foreach($jteams as $jteam_id=>&$jteam) { if($jteam['round'] != $round) continue; if($filter_jteam != 0 && $jteam_id != $filter_jteam) continue; if(!array_key_exists($jteam['award_id'], $awards)) { /* A judging team with no award can happen if they create a judging team and don't assign it to an award. */ continue; } $award = $awards[$jteam['award_id']]; if(!in_array($award['type'], $generate_types)) { continue; } $n_judges = count($jteam['user_ids']); $pdf->AddPage(); $x = $pdf->GetX(); $y = $pdf->GetY(); $pdf->setFontSize(14); $pdf->SetXY(-40, 10); $pdf->Cell(30, 0, $ts['name'], 0); $pdf->SetXY($x, $y); $pdf->setFontSize(11); $n = array(); foreach($jteam['user_ids'] as $judge_id) { $n[] = $judges[$judge_id]['name']; } $names = join(', ', $n); $html = "

{$jteam['name']}



"; if($award['s_desc'] != '') $html .= ""; if($award['j_desc'] != '') $html .= ""; $html .= "
Team Members:  $names
Award:  {$award['name']}
Student Description:  {$award['s_desc']}
Judge Information:  {$award['j_desc']}



"; $pdf->WriteHTML($html); $sorted_project_ids = array(); foreach($jteam['project_ids'] as $pid) { $project = &$projects[$pid]; $sorted_project_ids[$project['number_sort']] = $pid; } ksort($sorted_project_ids); if($award['type'] == 'divisional' && $round != 1) { $html = ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; foreach($sorted_project_ids as $pid) { $row = array(); $project = &$projects[$pid]; $short_title = substr($project['title'], 0, 65); if(strlen($project['title']) > 65) $short_title .= "..."; $html .= ""; for($x=0;$x<3;$x++) { $html .= ''; } $html .= ''; } $html.= '
Scientific ThoughtCreativity and
Originality
Communication

{$project['number']}  
 $short_title
           '.td_box().'

'; $pdf->WriteHTML($html); } else if($award['type'] == 'divisional' && $round == 1) { /* Special CUSP report, print the exact number of boxes with the exact number of UP and DOWN prize names, e.g., so * the judges assign 3 gold and 4 silver */ /* The up prize is the prize attached to the jteam */ $prize = $award['prizes'][$jteam['prize_id']]; /* The down prize is the previous one in the sorted prize list, could * be NULL (Nothing) */ foreach($award['prizes_in_order'] as &$p) { debug("{$award['name']}:{$p['name']}\n"); } unset($down_prize); $down_prize = NULL; foreach($award['prizes_in_order'] as &$p) { if($p['id'] == $jteam['prize_id']) { break; } $down_prize = &$p; } $down_name = ($down_prize === NULL) ? 'Nothing' : $down_prize['name']; $n_up = $jteam['cusp_n_up']; $n_down = count($jteam['project_ids']) - $n_up; $html = "

CUSP Instructions: Assign $n_up {$prize['name']} and $n_down $down_name

"; $html .= '
 
'; $html .= ''; $html .= "'; $html .= ''; $html .= '
"; foreach($sorted_project_ids as $pid) { $project = &$projects[$pid]; $short_title = substr($project['title'], 0, 50); if(strlen($project['title']) > 50) $short_title .= "..."; $html .= "{$project['number']}
$short_title

"; } $html .= '
'; $html .= ''; $html .= ''; for($x=0; $x<$n_up; $x++) { $html .= ""; $html .= ''; } $html .= ""; $html .= '
 Project Number
 {$prize['name']}:    

All remaining projects will be awarded $down_name
'; $html .= '
'; $pdf->WriteHTML($html); } else { /* Use the same logic for cusp and SA teams, except query a different slot type */ $html = ''; foreach($award['prizes_in_order'] as $p) { $plural = ($p['number'] == 1) ? '' : 's'; $html .= '

'.$p['name'].' - '.$p['number']." Prize$plural To Award

"; $html .= ''; $html .= ""; $html .= ""; $html .= ""; for($y=1;$y<=$p['number'];$y++) { $html .= ""; $html .= ""; $html .= ""; } $html .= ""; $html .= ""; $html .= ""; $html .= '
Project Number
 Award #$y:   
Backups:    
'; } $pdf->WriteHTML($html); } $pdf->WriteHTML("

Important Notes:

"); } } print($pdf->output()); ?>