Lines Matching refs:form

46         $form = new Doku_Form('multiorphan', null, 'post');
47 $form->startFieldset($this->getLang('startProcess'));
49 $form->addElement(form_makeTextField('ns', getNS($ID), $this->getLang('ns') . ':', 'ns'));
50 $form->addElement(form_makeTag('br'));
52 … $form->addElement(form_makeTextField('filter', '', $this->getLang('idFilter') . ':', 'filter'));
53 $form->addElement(form_makeTag('br'));
58 …$form->addElement(form_makeCheckboxField('includeHidden', 1, $this->getLang('includeHidden') . ':'…
59 $form->addElement(form_makeTag('br'));
61 …$form->addElement(form_makeCheckboxField('checkExternal', 1, $this->getLang('checkExternal') . '<s…
62 $form->addElement(form_makeTag('br'));
64 …$form->addElement(form_makeCheckboxField('includeWindowsShares', 1, $this->getLang('includeWindows…
65 $form->addElement(form_makeTag('br'));
67 …$form->addElement(form_makeTextField('throttle', 0, $this->getLang('throttle') . ':', 'throttle'));
68 $form->addElement(form_makeTag('br'));
70 …$form->addElement(form_makeButton('submit', 'multiorphan', $this->getLang('start') , array('style'…
72 $form->addElement(form_makeTag('br'));
73 $form->addElement(form_makeOpenTag('sub'));
74 $form->addElement('<span style="color:#00f">*</span> ');
75 $form->addElement($this->getLang('checkExternalHint'));
76 $form->addElement(form_makeTag('br'));
77 $form->addElement('<span style="color:#00f">**</span> ');
78 $form->addElement($this->getLang('includeWindowsSharesHint'));
79 $form->addElement(form_makeCloseTag('sub'));
80 $form->endFieldset();
82 $form->startFieldset( $this->getLang('status') );
83 $form->addElement(form_makeTag('div', array('id' => 'multiorphan__out')));
84 $form->addElement(form_makeOpenTag('span', array('class' => 'multiorphan__throbber')));
85 …$form->addElement(form_makeTag('img', array('src' => DOKU_BASE.'lib/images/throbber.gif', 'id' => …
86 $form->addElement(form_makeCloseTag('span'));
87 $form->addElement(form_makeCloseTag('div'));
88 $form->endFieldset();
90 $this->__makeForm($form, 'pages');
91 $this->__makeForm($form, 'media');
93 $form->printForm();
97 private function __makeForm(&$form, $type) { argument
99 $form->startFieldset($this->getLang($type . '-result'));
100 …$form->addElement(form_makeOpenTag('div', array('class' => 'multiorphan__result_group ' . $type)));
102 $form->addElement(form_makeOpenTag('h3', array('class' => 'header wanted')));
103 $form->addElement($this->getLang('wanted'));
104 $form->addElement(form_makeCloseTag('h3'));
105 $form->addElement(form_makeOpenTag('div', array('class' => 'multiorphan__result wanted')));
106 $form->addElement(form_makeCloseTag('div'));
108 $form->addElement(form_makeOpenTag('h3', array('class' => 'header orphan')));
109 $form->addElement($this->getLang('orphan'));
110 $form->addElement(form_makeCloseTag('h3'));
111 $form->addElement(form_makeOpenTag('div', array('class' => 'multiorphan__result orphan')));
112 $form->addElement(form_makeCloseTag('div'));
114 $form->addElement(form_makeOpenTag('h3', array('class' => 'header linked')));
115 $form->addElement($this->getLang('linked'));
116 $form->addElement(form_makeCloseTag('h3'));
117 $form->addElement(form_makeOpenTag('div', array('class' => 'multiorphan__result linked')));
118 $form->addElement(form_makeCloseTag('div'));
120 $form->addElement(form_makeCloseTag('div'));
121 $form->endFieldset();