$p) { $ts = &$timeslots[$tid]; post_int($ts['start'], array('ts', $tid, 'start')); // $timeslot_start = strtotime($_POST['ts'][$tid]['start']); // if($timeslot_start === false) { // $ts['start'] = 0; // } else { // $ts['start'] = (int)(($timeslot_start - $fair_start) / 60); // } if($ts['start'] < 0 || $ts['start'] > 100000) { $ts['start'] = 0; } post_int($ts['round'],array('ts', $tid, 'round') ); post_int($ts['num_timeslots'],array('ts', $tid, 'num_timeslots') ); post_int($ts['timeslot_length'],array('ts', $tid, 'timeslot_length')); timeslot_save($mysqli, $ts); } form_ajax_response(0); exit(); case 'del': $tid = (int)$_POST['tid']; if($tid > 0) { timeslot_delete($mysqli, $tid); form_ajax_response(0); exit(); } form_ajax_response(1); exit(); case 'add': $tid = timeslot_create($mysqli); $ts = timeslot_load($mysqli, $tid); $x = count($timeslots) + 1; $ts['name'] = "Round ".$x; print_timeslot_div($form_id, $tid, $ts); exit(); } $help = '

Edit the award'; sfiab_page_begin($u, "Timeslot Editor", $page_id, $help); function print_timeslot_div($form_id, $tid, &$ts) { global $config; ?>

Judging Round Number

Delete Timeslot

Timeslots

So for example, Round one might be defined as: 120 start, 9 timeslots, 20 minute timeslot length. That means the first judging round starts 2 hours after the fair begins and has 9 timeslots each of 20 minutes (3 hours total).

The judge scheduler uses the round number (automatically assigned in order), number of timeslots, and timeslot length to schedule judges.

The report system uses the timeslot start time, number of timeslots, and timeslot length to create project and judge schedules.

The judge registration pages uses the timeslot start time, total length (num timeslots * timeslot length), and name to ask judges to select which judging rounds (by name) they are available for judging.

Create a New Timeslot