Lines Matching refs:form

108             $form = new Doku_Form([
113 $form->addHidden('id', $ID);
114 $form->addElement('<table>');
115 $form->addElement('<thead>');
116 $form->addElement('<tr>');
117 $form->addElement('<th>');
118 $form->addElement(hsc('Tags'));
119 $form->addElement('</th>');
122 $form->addElement('<th>');
123 $form->addElement(form_makeListboxField('tagcompare_page[' . $ii . ']', $dropdownValues, $selectedValues[$ii] ?? null, '', '', 'tagcompare', []));
124 $form->addElement('</th>');
126 $form->addElement('</tr>');
127 $form->addElement('</thead>');
129 $form->addElement('<tbody>');
134 $form->addElement('<tr>');
135 $form->addElement('<th></th>');
137 $form->addElement('<td>');
139 $form->addElement($HPageimage->td($selectedValues[$ii], ['firstimage' => true])); //fixme pageimage->td() does not accept flags as 2nd arg.
141 $form->addElement('</td>');
143 $form->addElement('</tr>');
148 $form->addElement('<tr>');
149 $form->addElement('<th>');
150 $form->addElement(hsc($tagFilters['label'][$idx]));
151 $form->addElement('</th>');
154 $form->addElement('<td>');
158 $form->addElement(hsc($Htagfilter->getTagLabel($tagName)) . '<br>');
161 $form->addElement('</td>');
164 $form->addElement('</tr>');
167 $form->addElement('<tr>');
168 $form->addElement('<th>');
169 $form->addElement('Link');
170 $form->addElement('</th>');
174 $form->addElement('<th>');
177 $form->addElement('<a href="' . wl($selectedValues[$ii]) . '" class="wikilink1">Link</a>');
180 $form->addElement('</th>');
183 $form->addElement('</tr>');
185 $form->addElement('</tbody>');
186 $form->addElement('</table>');
187 $form->addElement('</div>');
190 $renderer->doc .= $form->getForm();