query("DELETE FROM winners WHERE `award_prize_id`='$prize_id' AND `pid`='$pid'"); if($prize['upstream_prize_id'] > 0) { /* Push the winner normally, this will query the winners table * to see if they're attached to the prize or not * and send the * appropriate delete */ remote_queue_push_winner_to_fair($mysqli, $prize['id'], $pid); } form_ajax_response(array('status'=>0, 'happy'=>get_prize_count($prize) )); exit(); case 'padd': /* Add a project to a prize */ $prize_id = (int)$_POST['prize_id']; $pid = (int)$_POST['pid']; $prize = prize_load($mysqli, $prize_id); /* This insert may fail because the table is keyed to unique (prize, project, year). That's * ok, just read the error and return that so the javascirpt doesn't think the insert was * successful */ $mysqli->query("INSERT INTO winners(`award_prize_id`,`pid`,`year`,`fair_id`) VALUES('$prize_id','$pid','{$config['year']}','0')"); if($mysqli->errno == 0) { $error = 0; if($prize['upstream_prize_id'] > 0) { remote_queue_push_winner_to_fair($mysqli, $prize['id'], $pid); } } else { $error = 1; } form_ajax_response(array('status'=>$error, 'happy'=>get_prize_count($prize) )); exit(); case 'padd_mass': /* Add a project to a prize */ $prize_id = (int)$_POST['prize_id']; $pids = $_POST['pid']; $prize = prize_load($mysqli, $prize_id); $projects = projects_load_all($mysqli, false, $config['year']); foreach($projects as $pid=>$p) { $key = sprintf("%03d", $p['floor_number']); $map[$key] = $pid; } /* This insert may fail because the table is keyed to unique (prize, project, year). That's * ok, just read the error and return that so the javascirpt doesn't think the insert was * successful */ $error = 0; foreach($pids as $pid) { if(array_key_exists($pid, $map)) { $ipid = $map[$pid]; $mysqli->query("INSERT INTO winners(`award_prize_id`,`pid`,`year`,`fair_id`) VALUES('$prize_id','$ipid','{$config['year']}','0')"); if($mysqli->errno == 0) { if($prize['upstream_prize_id'] > 0) { remote_queue_push_winner_to_fair($mysqli, $prize['id'], $ipid); } } else { $error = 1; } } else { $error = 1; } } form_ajax_response(array('status'=>$error, 'happy'=>get_prize_count($prize) )); exit(); } /* Load all winners */ $winners = array(); $q = $mysqli->query("SELECT * FROM winners WHERE year='{$config['year']}'"); while($r = $q->fetch_assoc()) { $prize_id = (int)$r['award_prize_id']; if(!array_key_exists($prize_id, $winners)) { $winners[$prize_id] = array(); } $winners[$prize_id][] = (int)$r['pid']; } $projects = projects_load_all($mysqli, false, $config['year']); $page_id = 'c_award_winners'; $help = '

Enter Winning Projects'; sfiab_page_begin($u, "Enter Winning Projects", $page_id, $help); ?>

To add/edit winners, click on the number count beside each prize (e.g., [0 / 4]).

Use the search bar to filter the list by award or prize names, or winners. After editing a project, refresh this page to update the search index (or the search won't reflect the recent edits).

75) $title = substr($title, 0, 72)."..."; $lang = $p['language']; if($p['disqualified_from_awards']) $pn = "DISQUALIFIED FROM AWARDS ".$p['number']; else $pn = $p['number']; if($tr == true) { ?> () () query("SELECT * FROM winners WHERE `award_prize_id`='{$prize['id']}'"); $pcount = (int)$q->num_rows; } else { if(!array_key_exists($prize['id'], $winners)) { $pcount = 0; } else { $pcount = count($winners[$prize['id']]); } } if($pcount == 0) { $colour = "red"; } else { $colour = "green"; } return "[$pcount / {$prize['number']}]"; } function award_li(&$a) { global $awards, $page_id, $awards, $projects, $winners; global $fairs; $filter_text = $a['type'].' '.$a['name']. ' '.$a['c_desc']; foreach($a['prizes'] as &$prize) { $filter_text .= ' '.$prize['name']; if(array_key_exists($prize['id'], $winners)) { foreach($winners[$prize['id']] as $pid) { if(!array_key_exists($pid, $projects)) continue; $filter_text .= ' '.$projects[$pid]['number'].' '.$projects[$pid]['title']; } } } ?>
  • 0) { ?>
    This award is from the . Winners will be automatically uploaded as they are assigned/removed. This award has a prize that registers winner at the . Once all winners are assigned you must finalize their registrations by going to Awards -> Finalize Upstream Winners. Accounts for all the uploaded winners will be created (and they will be sent emails) only when this is done. Assigning winners now does not create accounts or send any emails.