Lines Matching refs:form

88             // display form
114 // input came from form
160 * Display the simple move form
172 $form = new Doku_Form(array('action' => wl($ID), 'method' => 'post', 'class' => 'plugin_move_form'));
173 $form->addHidden('page', 'move_main');
174 $form->addHidden('id', $ID);
176 $form->startFieldset($this->getLang('legend'));
178 $form->addElement(form_makeRadioField('class', 'page', $this->getLang('movepage') . ' <code>' . $ID . '</code>', '', 'block radio click-page', array('checked' => 'checked')));
179 $form->addElement(form_makeRadioField('class', 'namespace', $this->getLang('movens') . ' <code>' . getNS($ID) . '</code>', '', 'block radio click-ns'));
181 $form->addElement(form_makeTextField('dst', $ID, $this->getLang('dst'), '', 'block indent'));
182 $form->addElement(form_makeMenuField('type', array('pages' => $this->getLang('move_pages'), 'media' => $this->getLang('move_media'), 'both' => $this->getLang('move_media_and_pages')), 'both', $this->getLang('content_to_move'), '', 'block indent select'));
184 $form->addElement(form_makeCheckboxField('autoskip', '1', $this->getLang('autoskip'), '', 'block', ($this->getConf('autoskip') ? array('checked' => 'checked') : array())));
185 $form->addElement(form_makeCheckboxField('autorewrite', '1', $this->getLang('autorewrite'), '', 'block', ($this->getConf('autorewrite') ? array('checked' => 'checked') : array())));
187 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('btn_start')));
188 $form->endFieldset();
189 $form->printForm();
262 $form = new Doku_Form(array('action' => wl($ID), 'method' => 'post', 'class' => $class));
263 $form->addHidden('page', 'move_main');
264 $form->addHidden('id', $ID);
265 $form->addHidden('ctl', $control);
266 $form->addHidden('skip', $skip);
267 $form->addElement(form_makeButton('submit', 'admin', $label, array('class' => 'btn ctl-' . $control)));
268 $form->printForm();