Lines Matching refs:value

57 	function formSubmit($value = FALSE)  argument
61 if(!$value)
62 $value = $messages->text("submit", "Submit");
64 $value = $messages->text("submit", $value);
66 <input type="submit" value=" $value " />
75 $value = $messages->text("submit", "reset");
77 <input type="reset" value=" $value " />
82 function hidden($name, $value) argument
85 <input type="hidden" name="$name" value="$value" />
90 function radioButton($label, $name, $value = FALSE, $checked = FALSE) argument
97 <input type="radio" name="$name" value="$value" $checked />
125 $value = array_shift($array);
126 $string = $formMisc->reduceLongText($value, $override);
127 $pString .= "<option value=\"$value\" selected=\"selected\">" . $string . "</option>\n";
128 foreach($array as $value)
130 $string = $formMisc->reduceLongText($value, $override);
131 $pString .= "<option value=\"$value\">$string</option>\n";
148 foreach($array as $value)
150 if($value == $select)
152 $string = $formMisc->reduceLongText($value, $override);
153 $pString .= "<option value=\"$value\" selected=\"selected\">$string</option>\n";
157 $value = $formMisc->reduceLongText($value, $override);
158 $pString .= "<option>$value</option>\n";
180 foreach($array as $key => $value)
182 $value = $formMisc->reduceLongText($value, $override);
188 $pString .= "<option value=\"$key\">$value</option>\n";
206 foreach($array as $key => $value)
208 $value = $formMisc->reduceLongText($value, $override);
210 $pString .= "<option value=\"$key\" selected=\"selected\">$value</option>\n" :
211 $pString .= "<option value=\"$key\">$value</option>\n";
234 foreach($array as $key => $value)
236 $value = $formMisc->reduceLongText($value, $override);
242 $pString .= "<option value=\"$key\">$value</option>\n";
263 foreach($array as $key => $value)
265 if($value == $messages->text("misc", "ignore"))
267 $pString .= "<option value=\"$key\">$value</option>\n";
270 $value = $formMisc->reduceLongText($value, $override);
273 "\" selected=\"selected\">" . $value . "</option>\n";
275 $pString .= "<option value=\"$key\">$value</option>\n";
302 function passwordInput($label, $name, $value = FALSE, $size = 20, $maxLength = 255) argument
308 <input type="password" name="$name" value="$value" size="$size" maxlength="$maxLength" />
313 function textInput($label, $name, $value = FALSE, $size = 20, $maxLength = 255) argument
319 <input type="text" name="$name" value="$value" size="$size" maxlength="$maxLength" />
324 function textareaInput($label, $name, $value = FALSE, $cols = 30, $rows = 5) argument
330 <textarea name="$name" id="$name" cols="$cols" rows="$rows">$value</textarea>