Lines Matching refs:form
106 $form = new Doku_Form(array('method'=>'post'));
107 $form->addHidden('page','dataau_aliases');
108 $form->addElement(
124 $form->addElement('<tr>');
126 $form->addElement('<td>');
127 $form->addElement(form_makeTextField('d['.$cur.'][name]',$row['name'],''));
128 $form->addElement('</td>');
130 $form->addElement('<td>');
131 $form->addElement(form_makeMenuField(
136 $form->addElement('</td>');
138 $form->addElement('<td>');
139 $form->addElement(form_makeTextField('d['.$cur.'][prefix]',$row['prefix'],''));
140 $form->addElement('</td>');
142 $form->addElement('<td>');
143 $form->addElement(form_makeTextField('d['.$cur.'][postfix]',$row['postfix'],''));
144 $form->addElement('</td>');
146 $form->addElement('<td>');
147 $form->addElement(form_makeTextField('d['.$cur.'][enum]',$row['enum'],''));
148 $form->addElement('</td>');
150 $form->addElement('</tr>');
155 $form->addElement('</table>');
156 $form->addElement(form_makeButton('submit','admin',$this->getLang('submit')));
157 $form->printForm();