Lines Matching refs:form
126 $form = new Form([
130 $form->addTagOpen('div')->addClass('no');
131 $form->addTextInput('q', $this->getLang('search_for'))
134 $form->addButton('submit', $this->getLang('search'))
136 $form->addTagClose('div');
137 $html .= $form->toHTML();
157 $form = new Form([
162 $form->addTagOpen('div')->addClass('no');
163 $form->addTextInput('installurl', $this->getLang('install_url'))
166 $form->addTag('br');
167 $form->addTextInput('installfile', $this->getLang('install_upload'))
170 $form->addTag('br');
171 $form->addCheckbox('overwrite', $lang['js']['media_overwrt'])
173 $form->addTag('br');
174 $form->addButton('', $this->getLang('btn_install'))
176 $form->addTagClose('div');
177 $html .= $form->toHTML();