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;
121 $html = "<tr class=\"$class\">";
123 $html .= '<td class="sort">';
124 $html .= '<input type="text" name="' . $base . '[sort]" value="' . hsc($col->getSort()) . '" size="3">';
125 $html .= '</td>';
127 $html .= '<td class="label">';
128 $html .= '<input type="text" name="' . $base . '[label]" value="' . hsc($col->getType()->getLabel()) . '">';
129 $html .= '</td>';
131 $html .= '<td class="ismulti">';
133 $html .= '<input type="checkbox" name="' . $base . '[ismulti]" value="1" ' . $checked . '>';
134 $html .= '</td>';
136 $html .= '<td class="config">';
138 $html .= '<textarea name="' . $base . '[config]" cols="45" rows="10" class="config">' .
141 $html .= '</td>';
144 $html .= '<td class="class">';
145 $html .= '<select name="' . $base . '[class]">';
148 $html .= '<option value="' . hsc($type) . '" ' . $selected . '>' . hsc($type) . '</option>';
150 $html .= '</select>';
151 $html .= '</td>';
154 $html .= '<td class="isenabled">';
156 $html .= '<input type="checkbox" name="' . $base . '[isenabled]" value="1" ' . $checked . '>';
157 $html .= '</td>';
159 $html .= '</tr>';
161 return $html;