Lines Matching refs:html
165 $html = '<div class="secedit editbutton_' . $data['target'] . ' editbutton_' . $secid . '">';
166 $html .= html_btn('secedit', $ID, '', $params, 'post', $name);
167 $html .= '</div>';
168 return $html;
225 …$html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '">…
229 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
235 $html .= '<button type="submit" ';
238 $html .= 'accesskey="' . $akey . '" ';
240 $html .= 'title="' . $tip . '">';
242 $html .= '<span>' . hsc($label) . '</span>' . inlineSVG($svg);
244 $html .= hsc($label);
246 $html .= '</button>';
247 $html .= '</div></form>';
249 return $html;
294 * @param string $html
298 function html_hilight($html, $phrases) argument
308 if ($regex === '') return $html;
309 if (!Clean::isUtf8($regex)) return $html;
317 }, $html);
468 $html = '';
480 if ($i) $html .= '<li class="clear">';
481 $html .= "\n" . '<ul class="' . $class . '">' . "\n";
487 $html .= '</li>' . "\n";
490 $html .= '</ul>' . "\n" . '</li>' . "\n";
494 } elseif ($html !== '') {
496 $html .= '</li>' . "\n";
500 $html .= call_user_func($lifunc, $item);
501 $html .= '<div class="li">';
503 $html .= call_user_func($func, $item);
504 $html .= '</div>';
508 $html .= '</li>' . "\n";
510 $html .= '</ul></li>' . "\n";
516 $html = "\n" . '<ul class="' . $class . '">' . "\n" . $html . '</ul>' . "\n";
519 return $html;