Lines Matching refs:html

6  * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
33 * Output appropriate html
35 public function html() {
102 $html = '<input type="button" class="button"';
104 $html .= ' id="' . $id . '"';
105 $html .= ' name="' . $id . '"';
106 $html .= ' value="' . $this->locale->getLang('btn_' . $action) . '"';
107 $html .= ' />';
109 return $html;
256 $html = '<input type="text" class="edit"';
258 $html .= ' id="' . $id . '"';
259 $html .= ' name="' . $id . '"';
260 $html .= ' value=""';
261 $html .= ' />';
263 return $html;
273 $html = '<input type="button" class="button"';
274 $html .= ' id="' . $id . '"';
275 $html .= ' name="' . $id . '"';
276 $html .= ' value="' . $label . '"';
277 $html .= ' />';
279 return $html;
523 $html = '';
526 $html = '<span class="outkey">' . $this->settingName . '</span>';
529 return $html;
556 $html = '<div class="input">';
557 $html .= '<input type="checkbox" class="checkbox"';
558 $html .= ' id="' . $this->id . '"';
559 $html .= ' name="' . $this->id . '" value="1"';
560 $html .= '/></div>';
562 return $html;
586 $html = '<div class="input">';
588 $html .= '<select class="edit"';
589 $html .= ' id="' . $this->id . '"';
590 $html .= ' name="' . $this->id . '">' . DOKU_LF;
593 $html .= '<option value="' . $option . '">' . $locale->getLang('opt_' . $option) . '</option>' . DOKU_LF;
596 $html .= '</select>';
597 $html .= '</div>';
599 return $html;
617 $html = '<div class="input">';
619 $html .= '<input type="text" class="edit"';
620 $html .= ' id="' . $this->id . '"';
621 $html .= ' name="' . $this->id . '" />' . DOKU_LF;
623 $html .= '</div>';
625 return $html;
645 $html = '<div class="input">';
647 $html .= '<input type="text" class="edit"';
648 $html .= ' id="' . $this->id . '"';
649 $html .= ' name="' . $this->id . '" />' . DOKU_LF;
651 $html .= '<input type="button" class="button"';
652 $html .= ' id="' . $this->id . '-inherit"';
653 $html .= ' name="' . $this->id . '-inherit"';
654 $html .= ' value="' . $buttonLabel . '"';
655 $html .= ' />';
657 $html .= '</div>';
659 return $html;
681 $html = '<div class="input">';
682 $html .= '<textarea class="edit"';
683 $html .= ' id="' . $this->id . '"';
684 $html .= ' name="' . $this->id . '"';
685 $html .= ' cols="40" rows="' . $this->rows . '">';
686 $html .= '</textarea></div>';
688 return $html;