Lines Matching refs:form

131 …$form = $this->_startFieldSet($this->getLang('ImportMasterLanguage'), 'translator_master_import', …
133 …$form->addElement(form_makeListboxField('Category', $categories, $_REQUEST['Category'], 'Select th…
134 $form->addElement(form_makeTag('br'));
135 $form->addElement(form_makeTextField('Version', $_REQUEST['Version'], 'Product Version:'));
136 $form->addElement(form_makeTag('br'));
137 …$form->addElement(form_makeFileField('File[]', 'Upload File:', null, null, array('multiple' => 'tr…
138 $form->addElement(form_makeTag('br'));
139 $form->addElement(form_makeField('submit', 'fn[uploadmaster]', 'Upload', ''));
141 $this->_finishFieldset($form);
152 $form = $this->_startFieldSet($this->getLang('RemoveMasterLanguage'), 'translator_master_remove');
158 …$form->addElement(form_makeCheckboxField("deletemaster[$name][$Version]", 1, $name . " ($Version)"…
159 $form->addElement(form_makeTag('br'));
163 $form->addElement(form_makeField('submit', 'fn[deletemaster]', 'Delete', ''));
166 $this->_finishFieldset($form);
178 $form = $this->_startFieldSet($this->getLang('CategoryManager'), 'translator_categories');
181 …$form->addElement(form_makeCheckboxField("deletecategory[{$data['CategoryID']}]", 1, $name . " ({$…
182 $form->addElement(form_makeTag('br'));
185 … $form->addElement(form_makeField('submit', 'fn[updatecategories]', $this->getLang('Delete'), ''));
186 $this->_finishFieldset($form);
190 $form = $this->_startFieldSet($this->getLang('AddCategory'), 'translator_new_categories');
192 …$form->addElement(form_makeTextField('CategoryName', $_REQUEST['CategoryName'], $this->getLang('Ca…
193 $form->addElement(form_makeTag('br'));
194 …$form->addElement(form_makeTextField('FileName', $_REQUEST['FileName'], $this->getLang('CategoryFi…
195 $form->addElement(form_makeTag('br'));
197 $form->addElement(form_makeField('submit', 'fn[createcategories]', $this->getLang('Create'), ''));
198 $this->_finishFieldset($form);
210 $form = $this->_startFieldSet($this->getLang('UserManager'), 'translator_users');
214 …$form->addElement(form_makeTextField("user[$user]", $lang, tpl_link(wl($ID, array('do' => 'admin',…
215 $form->addElement(form_makeTag('br'));
219 $form->addElement(form_makeField('submit', 'fn[set_user]', $this->getLang('Update'), ''));
220 $this->_finishFieldset($form);
229 $form = new Doku_Form($hid, wl($ID), 'post', $formType);
230 $form->addHidden('do', 'admin');
231 $form->addHidden('page', 'translator');
232 $form->startFieldset( $name );
234 return $form;
253 function _finishFieldset($form=null) { argument
254 if ( empty($form) ) return;
256 $form->endFieldset();
257 $form->printForm();
589 …$form = $this->_startFieldSet($this->functions->_messageReplacer('RemoveUserLanguage', $user), 'tr…
590 $form->addHidden("manageUser", $user);
592 $form->addElement(form_makeOpenTag("table", array('class' => 'translation_table')));
593 $form->addElement(form_makeOpenTag("tr"));
594 …$form->addElement(form_makeOpenTag("th")); $form->addElement($this->getLang('Category')); $form->a…
595 …$form->addElement(form_makeOpenTag("th")); $form->addElement($this->getLang('Version')); $form->ad…
596 …$form->addElement(form_makeOpenTag("th")); $form->addElement($this->getLang('AmountOfValues')); $f…
597 $form->addElement(form_makeCloseTag("tr"));
618 $form->addElement(form_makeOpenTag("tr"));
619 …$form->addElement(form_makeOpenTag("td", $onclick)); $form->addElement($Name); $form->addElement(f…
620 …$form->addElement(form_makeOpenTag("td", $onclick)); $form->addElement($data['Version']); $form->a…
621 …$form->addElement(form_makeOpenTag("td", $onclick)); $form->addElement($data['Amount']); $form->ad…
622 $form->addElement(form_makeOpenTag("td"));
623 …$form->addElement(form_makeCheckboxField("deleteuser[$Name][{$data['Version']}]", 1, '', '', 'edit…
624 $form->addElement(form_makeCloseTag("td"));
625 $form->addElement(form_makeCloseTag("tr"));
644 $form->addElement(form_makeCloseTag("table"));
645 $form->addElement(form_makeField('submit', 'fn[deleteuser]', 'Delete', ''));
646 $form->addElement(form_makeTag('br'));
652 $this->_finishFieldset($form);