Lines Matching refs:s

783     $s = '<fieldset ' . buildAttributes($attrs, true) . '>';
784 if (!is_null($attrs['_legend'])) $s .= '<legend>' . $attrs['_legend'] . '</legend>';
785 return $s;
878 $s = '<label';
879 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
880 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
881 $s .= '><span>' . $attrs['_text'] . '</span>';
882 $s .= ' <input ' . buildAttributes($attrs, true) . ' /></label>';
884 $s .= '<br />';
885 return $s;
903 $s = '<label';
904 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
905 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
906 $s .= '><input ' . buildAttributes($attrs, true) . ' />';
907 $s .= ' <span>' . $attrs['_text'] . '</span></label>';
909 $s .= '<br />';
910 return $s;
930 $s = '<label';
931 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
932 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
933 $s .= '><span>' . $attrs['_text'] . '</span> ';
934 $s .= '<input type="text" ' . buildAttributes($attrs, true) . ' /></label>';
936 $s .= '<br />';
937 return $s;
957 $s = '<label';
958 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
959 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
960 $s .= '><span>' . $attrs['_text'] . '</span> ';
961 $s .= '<input type="password" ' . buildAttributes($attrs, true) . ' /></label>';
963 $s .= '<br />';
964 return $s;
984 $s = '<label';
985 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
986 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
987 $s .= '><span>' . $attrs['_text'] . '</span> ';
988 $s .= '<input type="file" ' . buildAttributes($attrs, true);
989 if (!empty($attrs['_maxlength'])) $s .= ' maxlength="' . $attrs['_maxlength'] . '"';
990 if (!empty($attrs['_accept'])) $s .= ' accept="' . $attrs['_accept'] . '"';
991 $s .= ' /></label>';
993 $s .= '<br />';
994 return $s;
1016 $s = '<label';
1017 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
1018 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
1019 $s .= '>';
1025 $s .= '<input type="checkbox" ' . buildAttributes($attrs, true) . ' />';
1026 $s .= ' <span>' . $attrs['_text'] . '</span></label>';
1028 $s .= '<br />';
1029 return $s;
1049 $s = '<label';
1050 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
1051 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
1052 $s .= '><input type="radio" ' . buildAttributes($attrs, true) . ' />';
1053 $s .= ' <span>' . $attrs['_text'] . '</span></label>';
1055 $s .= '<br />';
1056 return $s;
1078 $s = '<label';
1079 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
1080 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
1081 $s .= '><span>' . $attrs['_text'] . '</span>';
1082 $s .= ' <select ' . buildAttributes($attrs, true) . '>' . DOKU_LF;
1097 $s .= '<option' . $p . '>' . formText($text) . '</option>';
1100 $s .= '<option></option>';
1102 $s .= DOKU_LF . '</select></label>';
1104 $s .= '<br />';
1105 return $s;
1125 $s = '<label';
1126 if ($attrs['_class']) $s .= ' class="' . $attrs['_class'] . '"';
1127 if (!empty($attrs['id'])) $s .= ' for="' . $attrs['id'] . '"';
1128 $s .= '><span>' . $attrs['_text'] . '</span> ';
1129 $s .= '<select ' . buildAttributes($attrs, true) . '>' . DOKU_LF;
1138 $s .= '<option' . $p . '>' . formText($text) . '</option>';
1141 $s .= '<option></option>';
1143 $s .= DOKU_LF . '</select></label>';
1145 $s .= '<br />';
1146 return $s;