Lines Matching refs:form
208 $form = new Form(['enctype' => 'multipart/form-data']);
211 …$form->addElement(new dokuwiki\Form\InputElement('file', 'upload', $this->getLang('admin_upload'))…
213 $form->addHTML('<br>');
214 $form->addHTML('<br>');
217 $form->addTagOpen('div')->addClass('table');
218 $form->addTagOpen('table')->addClass('inline');
221 $form->addTagOpen('thead');
223 $form->addTagOpen('tr');
225 $form->addHTML('<th>' . $this->getLang('admin_conf_delete') . '</th>');
226 $form->addHTML('<th>' . $this->getLang('admin_conf_enabled') . '</th>');
227 $form->addHTML('<th>' . $this->getLang('admin_conf_force_runner') . '</th>');
228 $form->addHTML('<th>' . $this->getLang('admin_conf_local_name') . '</th>');
229 $form->addHTML('<th>' . $this->getLang('admin_conf_mtime') . '</th>');
230 $form->addHTML('<th>' . $this->getLang('admin_conf_docu_url') . '</th>');
231 $form->addHTML('<th>' . $this->getLang('admin_conf_remote_url') . '</th>');
232 $form->addHTML('<th>' . $this->getLang('admin_conf_update_period') . '</th>');
233 $form->addHTML('<th>' . $this->getLang('admin_conf_description') . '</th>');
235 $form->addTagClose('tr');
237 $form->addTagClose('thead');
240 $form->addTagOpen('tbody');
243 $form->addTagOpen('tr');
245 $form->addTagOpen('td');
246 $checkbox = $form->addCheckbox('tag_config[' . $key . '][delete]')
249 $form->addTagClose('td');
251 $form->addTagOpen('td');
252 $checkbox = $form->addCheckbox('tag_config[' . $key . '][enabled]')
255 $form->addTagClose('td');
257 $form->addTagOpen('td');
258 $checkbox = $form->addCheckbox('tag_config[' . $key . '][force_runner]')
261 $form->addTagClose('td');
263 $form->addTagOpen('td');
264 $new_name = $form->addTextInput('tag_config[' . $key . '][new_name]')
280 $form->addTagClose('td');
283 $form->addTagOpen('td');
285 $form->addLabel(dformat(@filemtime($this->helper->getFileName($key))));
287 $form->addTagClose('td');
289 $form->addTagOpen('td');
290 $form->addTextInput('tag_config[' . $key . '][docu_url]')
294 $form->addTagClose('td');
296 $form->addTagOpen('td');
297 $form->addTextInput('tag_config[' . $key . '][remote_url]')
301 $form->addTagClose('td');
303 $form->addTagOpen('td');
304 $period = $form->addTextInput('tag_config[' . $key . '][update_period]')
319 $form->addTagClose('td');
321 $form->addTagOpen('td');
322 $form->addTextInput('tag_config[' . $key . '][description]')
326 $form->addTagClose('td');
328 $form->addTagClose('tr');
335 $form->addTagOpen('tr');
336 $form->addTagOpen('td')
338 $form->addHTML($this->getLang('admin_new_entry'));
339 $form->addTagClose('td');
340 $form->addTagClose('tr');
342 $form->addTagOpen('tr');
343 $form->addHTML('<td></td>');
345 $form->addTagOpen('td');
346 $form->addCheckbox('tag_config[new][enabled]')
348 $form->addTagClose('td');
350 $form->addTagOpen('td');
351 $form->addCheckbox('tag_config[new][force_runner]')
353 $form->addTagClose('td');
355 $form->addTagOpen('td');
356 $form->addTextInput('tag_config[new][new_name]')
359 $form->addTagClose('td');
361 $form->addTagOpen('td');
362 $form->addTagClose('td');
364 $form->addTagOpen('td');
365 $form->addTextInput('tag_config[new][docu_url]')
368 $form->addTagClose('td');
370 $form->addTagOpen('td');
371 $form->addTextInput('tag_config[new][remote_url]')
374 $form->addTagClose('td');
376 $form->addTagOpen('td');
377 $form->addTextInput('tag_config[new][update_period]')
380 $form->addTagClose('td');
382 $form->addTagOpen('td');
383 $form->addTextInput('tag_config[new][description]')
386 $form->addTagClose('td');
387 $form->addTagClose('tr');
390 $form->addTagClose('tbody');
393 $form->addTagClose('table');
394 $form->addTagClose('div');
396 $form->addButton('cmd[save]', $lang['btn_save'])->attrs(['accesskey' => 's']);
397 $form->addButton('cmd[update]', $lang['btn_update']);
399 echo $form->toHTML();