Lines Matching full:input

327         global $INPUT;
328 $value = (array_key_exists($INPUT->post->str($name), $entries)) ?
329 $INPUT->str($name) : key($entries);
438 * Create a form element for a labelled input element.
439 * The label text will be printed before the input.
441 * @param string $type Type attribute of input.
442 * @param string $name Name attribute of the input.
446 * @param string $label Label that will be printed before the input.
447 * @param string $id ID attribute of the input. If set, the label will
465 * Create a form element for a labelled input element.
466 * The label text will be printed after the input.
492 * Create a form element for a text input element with label.
517 * Create a form element for a password input element with label.
542 * Create a form element for a file input element with label
566 * Create a form element for a checkbox input element with label.
594 * Create a form element for a radio button input element with label.
629 * @param string $name Name attribute of the input.
635 * @param string $label Label that will be printed before the input.
636 * @param string $id ID attribute of the input. If set, the label will
675 * @param string $name Name attribute of the input.
681 * @param string $label Label that will be printed before the input.
682 * @param string $id ID attribute of the input. If set, the label will
806 * Print the HTML for a hidden input element.
817 return '<input type="hidden" name="' . $attrs['name'] . '" value="' . formText($attrs['value']) . '" />';
866 * Print the HTML for a form input field.
868 * _text : Text to display before the input. Not escaped.
869 * Other attributes are passed to buildAttributes() for the input tag.
882 $s .= ' <input ' . buildAttributes($attrs, true) . ' /></label>';
891 * Print the HTML for a form input field. (right-aligned)
893 * _text : Text to display after the input. Not escaped.
894 * Other attributes are passed to buildAttributes() for the input tag.
906 $s .= '><input ' . buildAttributes($attrs, true) . ' />';
916 * Print the HTML for a text input field.
918 * _text : Text to display before the input. Not escaped.
919 * Other attributes are passed to buildAttributes() for the input tag.
934 $s .= '<input type="text" ' . buildAttributes($attrs, true) . ' /></label>';
943 * Print the HTML for a password input field.
945 * _text : Text to display before the input. Not escaped.
946 * Other attributes are passed to buildAttributes() for the input tag.
961 $s .= '<input type="password" ' . buildAttributes($attrs, true) . ' /></label>';
970 * Print the HTML for a file input field.
972 * _text : Text to display before the input. Not escaped
975 * Other attributes are passed to buildAttributes() for the input tag
988 $s .= '<input type="file" ' . buildAttributes($attrs, true);
1000 * Print the HTML for a checkbox input field.
1002 * _text : Text to display after the input. Not escaped.
1003 * Other attributes are passed to buildAttributes() for the input tag.
1021 echo '<input type="hidden" name="' . hsc($attrs['name']) . '"'
1025 $s .= '<input type="checkbox" ' . buildAttributes($attrs, true) . ' />';
1035 * Print the HTML for a radio button input field.
1037 * _text : Text to display after the input. Not escaped.
1038 * Other attributes are passed to buildAttributes() for the input tag.
1052 $s .= '><input type="radio" ' . buildAttributes($attrs, true) . ' />';
1068 * Other attributes are passed to buildAttributes() for the input tag.
1116 * Other attributes are passed to buildAttributes() for the input tag.