Lines Matching defs:form
16 protected $form = '';
31 * Initialize the extension table form
35 $this->form .= '<ul class="extensionList">';
53 * Adds a header to the form
61 $this->form .= '<h' . $level . ' id="' . $id . '">' . hsc($header) . '</h' . $level . '>' . DOKU_LF;
65 * Adds a paragraph to the form
71 $this->form .= '<p>' . hsc($data) . '</p>' . DOKU_LF;
75 * Add hidden fields to the form with the given data
81 $this->form .= '<div class="no">';
83 $this->form .= '<input type="hidden" name="' . hsc($key) . '" value="' . hsc($value) . '" />';
85 $this->form .= '</div>' . DOKU_LF;
93 $this->form .= '</ul>';
102 $this->form .= '<li class="notfound">' . $lang['nothingfound'] . '</li>';
106 * Print the form
112 if ($returnonly) return $this->form;
113 echo $this->form;
123 $this->form .= '<li id="extensionplugin__' . hsc($extension->getID()) .
134 $this->form .= '<div class="' . $class . ' col">' . $html . '</div>' . DOKU_LF;
142 $this->form .= '</li>' . DOKU_LF;