'English', 'fr' => 'French' ); $rounds = timeslots_load_rounds($mysqli); $num_rounds = count($rounds); switch($action) { case 'save': if($closed) exit(); post_bool($u['j_willing_lead'], 'j_willing_lead'); if($config['judge_ask_dinner']) { post_bool($u['j_dinner'], 'j_dinner'); } else { $u['j_dinner'] = 0; } $u['j_rounds'] = array(); if($config['judge_require_all_rounds']) { /* Fill the rounds as though they selected 'yes' to each round for time availability */ for($r = 0; $r<$num_rounds; $r++) { $u['j_rounds'][$r] = $r; } } else { for($r = 0; $r<$num_rounds; $r++) { post_int($u['j_rounds'][$r], array('j_rounds', $r) ); } } $u['j_languages'] = NULL; post_array($u['j_languages'], 'j_languages', $langs); user_save($mysqli, $u); incomplete_check($mysqli, $ret, $u, $page_id, true); $e = ''; if(count($incomplete_errors) > 0) { $e = join('
', $incomplete_errors); } form_ajax_response(array('status'=>0, 'missing'=>$ret, 'error'=>$e)); exit(); } $dinner_time = ''; $dinner_help = ''; if($config['judge_ask_dinner'] == 1) { if($num_rounds >= 2) { $dinner_start = date('g:ia', $rounds[0]['end_timestamp']); $dinner_end = date('g:ia', $rounds[1]['start_timestamp']); $dinner_time = " from $dinner_start - $dinner_end on judging day"; } $dinner_help = "
  • Dinner - There is a judge's dinner$dinner_time for all judges. This helps us guage the amount of food to purchse."; } $help = " "; sfiab_page_begin($u, "Options", $page_id, $help); ?>
    0) { $e = join('
    ', $incomplete_errors); } form_page_begin($page_id, $fields, $e); form_disable_message($page_id, $closed); $form_id=$page_id.'_form'; form_begin($form_id,'j_options.php', $closed); ?>

    Judging Options

    Judging Languages

    Time Availability

    Note: You will be scheduled to judge in ALL of the judging rounds listed below. If you are unable to commit to all the times below, you can let the committee know by selecting "No, I can't make it" on the Main Judging Page. Note: You will be scheduled to judge in ALL of the judging rounds you answer 'Yes' to, not just one. 'No', $r => 'Yes'); $v = array_key_exists($r, $u['j_rounds']) ? $u['j_rounds'][$r] : ''; if($config['judge_require_all_rounds']) { form_label($form_id, "j_rounds[$r]", "{$ts['name']}", "$date_str", true); } else { form_radio_h($form_id, "j_rounds[$r]", "Are you available to judge in {$ts['name']} ($date_str)?", $data_values, $u['j_rounds'][$r], true); } } form_submit($form_id, 'save','Save','Information Saved'); form_end($form_id); ?>