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).