Lines Matching refs:html
61 $html = '<form action="' . script() . '" method="get" accept-charset="utf-8">';
62 $html .= '<div class="no">';
63 $html .= '<input type="hidden" name="id" value="' . $ID . '" />';
64 if($REV) $html .= '<input type="hidden" name="rev" value="' . $REV . '" />';
66 $html .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
69 $html .= '<select name="do" class="edit quickselect" title="' . $lang['tools'] . '">';
70 $html .= '<option value="">' . $empty . '</option>';
74 $html .= '<optgroup label="' . $lang[$tools . '_tools'] . '">';
77 $html .= '<option value="' . $params['do'] . '">';
78 $html .= hsc($item->getLabel());
79 $html .= '</option>';
81 $html .= '</optgroup>';
85 $html .= '</select>';
86 $html .= '<button type="submit">' . $button . '</button>';
87 $html .= '</div>';
88 $html .= '</form>';
90 return $html;