0) ? true : false; if(!$remote_award) { post_text($a['name'],'name'); post_text($a['type'],'type'); post_text($a['j_desc'],'j_desc'); post_text($a['s_desc'],'s_desc'); post_int($a['sponsor_uid'], 'sponsor_uid'); post_bool($a['self_nominate'],'self_nominate'); post_int($a['ord'],'ord'); post_array($a['categories'], 'categories', $cats); $a['feeder_fair_ids'] = array(); post_array($a['feeder_fair_ids'], 'feeder_fair_ids', $fairs); post_bool($a['upstream_register_winners'], 'upstream_register_winners'); post_bool($a['cwsf_award'],'cwsf_award'); } post_bool($a['include_in_script'],'include_in_script'); post_bool($a['schedule_judges'],'schedule_judges'); post_text($a['presenter'],'presenter'); post_text($a['c_desc'],'c_desc'); $updates = array(); if(!$remote_award && $a['sponsor_uid'] == 0) { /* Insert a new sponsor, provided the name doesn't already exist */ $updates['sponsor_uid'] = 1; $sponsor_org = "New Sponsor"; post_text($sponsor_org, 'sponsor_organization'); $sponsor_uid = sponsor_create_or_get($mysqli, $sponsor_org); $updates['sponsor_uid'] = $sponsor_uid; $a['sponsor_uid'] = $sponsor_uid; } if(!$remote_award) { /* Iterate over the $_POST['prizes'][prize_id] and save data for each prize */ if(array_key_exists('prize', $_POST)) { foreach($_POST['prize'] as $pid=>$p) { $pid = (int)$pid; if(!array_key_exists($pid, $a['prizes'])) { print("Prize id not found, stop."); exit(); } $prize = &$a['prizes'][$pid]; post_text($prize['name'],array('prize', $pid, 'name') ); post_int($prize['number'],array('prize', $pid, 'number') ); post_float($prize['cash'],array('prize', $pid, 'cash')); post_float($prize['scholarship'],array('prize', $pid, 'scholarship')); post_float($prize['value'],array('prize', $pid, 'value')); post_array($prize['trophies'], array('prize',$pid,'trophies'), $award_trophies); } } } award_save($mysqli, $a); $response = array('status'=>0, 'val'=>$updates); if($action == 'save_back') { $response['location'] = 'back'; } form_ajax_response($response); exit(); case 'del': $aid = (int)$_POST['aid']; if($aid > 0) { $a = award_load($mysqli, $aid); if($a['upstream_fair_id'] > 0) { /* Can't del an award with an upstream fair id, someone is trying to bypass the html? */ exit(); } $mysqli->real_query("UPDATE awards SET `ord`=`ord`-1 WHERE year='{$config['year']}' AND ord > '{$a['ord']}'"); /* Delete prizes and awards */ $mysqli->real_query("DELETE FROM award_prizes WHERE award_id='$aid'"); $mysqli->real_query("DELETE FROM awards WHERE id='$aid'"); form_ajax_response(0); exit(); } form_ajax_response(1); exit(); case 'pdel': $pid = (int)$_POST['pid']; if($pid) { /* Load prize by pid, because that's all we have */ $prize = prize_load($mysqli, $pid); /* Now load the entire award so we can modify it and push out an update */ $a = award_load($mysqli, $prize['award_id']); if($a['upstream_fair_id'] > 0) { /* Can't prize del an award with an upstream fair id, someone is trying to bypass the html? */ exit(); } prize_delete($mysqli, $a, $pid); award_save($mysqli, $a); form_ajax_response(0); exit(); } form_ajax_response(1); exit(); case 'padd': $aid = (int)$_POST['aid']; if($aid > 0) { $a = award_load($mysqli, $aid); if($a['upstream_fair_id'] > 0) { /* Can't prize add an award with an upstream fair id, someone is trying to bypass the html? */ exit(); } $pid = prize_create($mysqli, $a); $a['prizes'][$pid]['name'] = 'New prize'; $a['prizes'][$pid]['number'] = 1; award_save($mysqli, $a); print_prize_div($form_id, $a['prizes'][$pid], true); } exit(); } $help = '
Edit the award'; sfiab_page_begin($u, "Edit Award", $page_id, $help); function print_prize_div($form_id, &$p, $show) { global $award_trophies; global $form_disabled; global $div_award; $pid = $p['id']; $show_attr = $show ? 'data-collapsed="false"' : ''; ?>
This award was automatically downloaded from the =$fair['name']?>. Because it is a downloaded award, some field cannot be changed. Upstream changes are automatically downloaded.
This is a divisional award. It is created automatically and some field cannot be changed. To edit the prize names, go to the Judge Scheduling options in the Configuration Variables.
Cancel, Go BackPrizes are listed in the order they will appear in the ceremony script. To change the prize order, drag and drop the prizes in the list below (or on the Award List page).
Any fair you check below will automatically download this award and it will appear in their awards list. If/when each fair assigns winners, they will be automatically uploaded back to this fair.
You can also make accounts for winners assigned by a feeder fair so they can become participants in this fair. When winners are assigned, an option will appear on the main committee page to send welcome emails to these participants. Welcome emails are not sent automatically because winner uploading is automatic and a feeder fair could assign a winner by mistake, then remove the assignment. We don't want to immediately send welcome emails in that case.