Lines Matching refs:html
94 $html = '';
95 $html .= '<link href="' . DOKU_BASE .
97 $html .= '<link href="' . DOKU_BASE .
99 $html .= '<script src="' . DOKU_BASE .
101 $html .= '<script src="' . DOKU_BASE .
103 return $html;
122 $html = "<tr class=\"$class\">";
124 $html .= '<td class="sort">';
125 …$html .= '<input type="text" name="' . $base . '[sort]" value="' . hsc($col->getSort()) . '" size=…
126 $html .= '</td>';
128 $html .= '<td class="label">';
129 …$html .= '<input type="text" name="' . $base . '[label]" value="' . hsc($col->getType()->getLabel(…
130 $html .= '</td>';
132 $html .= '<td class="ismulti">';
134 $html .= '<input type="checkbox" name="' . $base . '[ismulti]" value="1" ' . $checked . '>';
135 $html .= '</td>';
137 $html .= '<td class="config">';
139 $html .= '<textarea name="' . $base . '[config]" cols="45" rows="10" class="config">' .
142 $html .= '</td>';
145 $html .= '<td class="class">';
146 $html .= '<select name="' . $base . '[class]">';
149 … $html .= '<option value="' . hsc($type) . '" ' . $selected . '>' . hsc($type) . '</option>';
151 $html .= '</select>';
152 $html .= '</td>';
155 $html .= '<td class="isenabled">';
157 … $html .= '<input type="checkbox" name="' . $base . '[isenabled]" value="1" ' . $checked . '>';
158 $html .= '</td>';
160 $html .= '</tr>';
162 return $html;