Lines Matching refs:form
134 $form = new Form([
138 $form->addTagOpen('div')->addClass('no');
139 $form->addTextInput('q', $this->getLang('search_for'))
142 $form->addButton('submit', $this->getLang('search'))
144 $form->addTagClose('div');
145 $html .= $form->toHTML();
165 $form = new Form([
170 $form->addTagOpen('div')->addClass('no');
171 $form->addTextInput('installurl', $this->getLang('install_url'))
174 $form->addTag('br');
175 $form->addTextInput('installfile', $this->getLang('install_upload'))
178 $form->addTag('br');
179 $form->addCheckbox('overwrite', $lang['js']['media_overwrt'])
181 $form->addTag('br');
182 $form->addButton('', $this->getLang('btn_install'))
184 $form->addTagClose('div');
185 $html .= $form->toHTML();