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.
Order / Type |
Name / Prize(s) | Include in Script |
Sched. Judges |
Students Self- Nominate |
|||||||
---|---|---|---|---|---|---|---|---|---|---|---|
=$a['ord']?> =$award_types[$a['type']]?> |
Award has NO prizes which means it can't be awarded. Edit the award to add prizes.
|