type="" >
>
$val) { if(is_array($val)) $val = $val['name']; $sel = ($v === $key) ? 'checked="checked"' : ''; ?> type="radio" >
$val) { if(is_array($val)) $val = $val['name']; $sel = (in_array($key,$v)) ? 'checked="checked"' : ''; ?> type="checkbox" >
$val) { if(is_array($val)) $val = $val['name']; $sel = (in_array($key,$v)) ? 'checked="checked"' : ''; ?> type="checkbox" >
type="checkbox" > 'No', 1 => 'Yes'); /* v is usually 0 or 1, but could be NULL (no selection yet) */ $v = (is_array($value)) ? $value[$name] : $value; if(is_null($v)) { /* Ok */ } else if ((int)$v == 0 || (int)$v == 1) { $v = (int)$v; } else { $v = NULL; } if(!$slider ) { form_radio_h($form_id, $name, $label, $choices, $v, $wide); } else { form_select($form_id, $name, $label, $choices, $v, 'slider', $wide); } } function form_get_value($name, &$value) { /* If the value is not an array, return the value */ if(!is_array($value)) return $value; /* If it is, and the name request was something like j_pref_div[0], then pull out the specfic index and return * that. This can nest multiple leves deep. prize[0][1] for exmaple. * But if the specifier is [], then return the whole array */ $p = strpos($name, '['); if($p !== false) { /* Expect the name is either in the form: j_pref_div[0] */ $array_name = substr($name, 0, $p); $array_index_str = substr($name, $p+1, -1); if(strlen($array_index_str) > 0 && array_key_exists($array_name, $value)) { $array_index = (int)$array_index_str; if(is_array($value[$array_name])) { if(array_key_exists($array_index, $value[$array_name])) { /* Return the double array deref at index */ return $value[$array_name][$array_index]; } else { /* Array exists, but index doesn't */ return ''; } } else { print("form_get_value(): values[$array_name] is not an array, but an index was specified."); exit(); } } else { /* Set the name to the array name, and fall through to return the whole array */ $name = $array_name; } } /* Value is an array, but name is not pointing to an array */ return $value[$name]; } function form_select($page_id, $name, $label, $data, &$value, $data_role='', $wide=false, $multi=false, $inline=false, $filterable=false) { global $form_disabled; $id = $page_id.'_'.$name; $select_attrs = ''; if($data_role != '') $select_attrs .= " data-role=\"$data_role\""; if($multi) $select_attrs .= ' multiple="true" data-native-menu="false"'; if($form_disabled) $select_attrs .= ' disabled="disabled"'; if($inline) $select_attrs .= ' data-inline="true"'; if($filterable) $select_attrs .= 'data-native-menu="false" class="filterable-select"'; /* For a multiselect, $v could be an array */ $v = form_get_value($name, $value); form_label_div_begin($id, $name, $label, $wide); ?> 'English', 'fr'=>'Français'); form_select($page_id, $name, $label, $data, $value); } function form_province($page_id, $name, $label, &$value) { $data = array( 'ab' => 'Alberta', 'bc' => 'British Columbia', 'ma' => 'Manitoba', 'nb' => 'New Brunswick', 'nf' => 'Newfoundland and Labrador', 'ns' => 'Nova Scotia', 'no' => 'Northwest Territories', 'on' => 'Ontario', 'pe' => 'Prince Edward Island', 'qb' => 'Quebec', 'sk' => 'Saskatchewan', 'yk' => 'Yukon'); form_select($page_id, $name, $label, $data, $value); } function form_textbox($form_id, $name, $label, &$value, $minwords=false, $maxwords=false) { global $form_disabled; /* Enabling word counts depends on having an object with ID= {$id}_count so * onchange function in the .js can update it */ $id = $form_id.'_'.$name; /* This is so we can pass $u or $p in, and use the name to index into the array */ $v = (is_array($value)) ? $value[$name] : $value; $cnt = false; $hook = ''; if($minwords !== false || $maxwords !== false) { $cnt = true; $hook = 'data-word-count="true"'; } $d = $form_disabled ? ' disabled="disabled"': ''; ?>
0) ? "Min: $minwords" : ''; $max = ($maxwords > 0) ? "Max: $maxwords" : ''; ?>
Word Count: ( )
>
> "); } function form_page_begin($page_id, $fields, $error_msg = '', $happy_msg = '', $missing_message = '') { global $form_incomplete_fields; global $form_page_id; $form_page_id = $page_id; if($missing_message == '') { $missing_message = "This page is incomplete. Missing information fields are highlighted in red."; } $form_incomplete_fields = array_merge($form_incomplete_fields, $fields); $none = 'style="display:none"'; ?>
>
>
>
>
Your signature form has been received. Information on this page cannot be changed.
Registration is closed. Information on this page cannot be changed.
$status, 'error'=>$error)); } function form_ajax_response($response) { $headers = array( 'status', 'missing', 'left_error_count', 'error', 'happy', 'info', 'location'); if(!is_array($response)) { $response = array('status'=>$response); } foreach($headers as $h) { if(array_key_exists($h, $response)) { $r[$h] = $response[$h]; } else { $r[$h] = ''; } } $r['val'] = array(); if(array_key_exists('val', $response)) { foreach($response['val'] as $k=>$v) { $r['val'][] = array($k, $v); } } print(json_encode($r)); } ?>