type="checkbox" =$d?> >
'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"': '';
?>