query("UPDATE awards SET ord='$ord' WHERE id='$aid'"); } form_ajax_response(0); exit(); case 'prize_order': /* Called prizes in an award are reordered. prizes is an array * of prizes, in order, starting from ord=1 */ $ord = 0; // print_r($_POST); foreach($_POST['prizes'] as $prize_id) { $ord++; $prize_id = (int)$prize_id; if($prize_id == 0) continue; $mysqli->query("UPDATE award_prizes SET ord='$ord' WHERE id='$prize_id'"); } form_ajax_response(0); exit(); case 'add': /* Create an award with a default name and ord=1 (move all other awards down one). * Create a prize for it too */ $mysqli->real_query("UPDATE awards SET `ord` = `ord`+1 WHERE year='{$config['year']}'"); $mysqli->real_query("INSERT INTO awards (`name`,`ord`,`year`,`type`) VALUES('New Award',1,'{$config['year']}','special')"); $aid = $mysqli->insert_id; $a = award_load($mysqli, $aid); $pid = prize_create($mysqli, $a); $a['prizes'][$pid]['name'] = 'New prize'; $a['prizes'][$pid]['number'] = 1; $a['prizes'][$pid]['ord'] = 1; award_save($mysqli, $a); /* Print the award id, the js function takes this and redirects to c_awards_edit?aid=..." */ print("$aid"); exit(); } $sponsors = sponsors_load_all($mysqli); $fairs = fair_load_all_upstream($mysqli); /* Update divisional awards. This will be a noop if everything is up to date */ award_update_divisional($mysqli); $help = 'Use the button to edit the award and prizes. Drag and drop the icon to reorder the awards. Drag the [=] handle before each prize to re-order the prizes within the award. Awards/Prizes at the top of the list will go first in the award ceremony.'; sfiab_page_begin($u, "Edit Awards", $page_id, $help); ?>

Use the button to edit the award and prizes. Drag and drop the icon to reorder the awards.

Drag the [=] handle before each prize to re-order the prizes within the award. Awards/Prizes at the top of the list will go first in the award ceremony. $a) { $prizes = ''; if(count($a['prizes']) == 0) { $prizes = 'Award has NO prizes (it can\'t be awarded)'; } ?>
Order /
Type
Name / Prize(s) Include
in
Script
Sched.
Judges
Students
Self-
Nominate



From Upstream Fair:
Presented By: 0 && array_key_exists($a['sponsor_uid'], $sponsors) ) { $s = $sponsors[$a['sponsor_uid']]['organization']; } else { $s = "NOT SET -- Please set a sponsor"; } ?>
Sponsored By:
Script':'No
Script
'?>
Judges':'No
Judges
'?>
Nom.':'No
Nom.
'?>

Award has NO prizes which means it can't be awarded. Edit the award to add prizes. 0) $strs[] = "$".$p['cash']." cash"; if($p['scholarship'] > 0) $strs[] = "$".$p['scholarship']." scholarship"; if($p['value'] > 0) $strs[] = "$".$p['value']." value"; foreach($p['trophies'] as $t) { $strs[] = "Trophy ".$award_trophies[$t]; } $str = join("
", $strs); ?>
[=]
New Award