Home
last modified time | relevance | path

Searched refs:form (Results 76 – 100 of 1387) sorted by relevance

12345678910>>...56

/plugin/twofactor/
H A DManager.php304 * Get the form to enter a code for a given provider
320 $form = new Form(['method' => 'POST']);
324 $form->addHTML('<p>Not a document request. Not initiating two factor auth</p>');
325 return $form;
328 $form->setHiddenField('do', 'twofactor_login');
329 $form->setHiddenField('2fa_provider', $provider->getProviderID());
331 $form->addFieldsetOpen($provider->getLabel());
335 $form->addHTML('<p>' . hsc($info) . '</p>');
336 $form->addElement(new OtpField('2fa_code'));
337 $form
[all...]
/plugin/fksnewsfeed/inc/renderer/
H A DFykosRenderer.php78 $form = new Form();
79 $form->addClass('block');
82 $form->setHiddenField('news[id]', $id);
84 $form->setHiddenField('news[do]', 'priority');
91 $form->addElement($priorityValue);
92 $form->addTagClose('div');
98 $form->addElement($priorityFromElement);
99 $form->addTagClose('div');
105 $form->addElement($priorityToElement);
106 $form->addTagClose('div');
[all …]
/plugin/datatemplate/syntax/
H A Dfilterform.php104 $form = new Doku_Form(array('class' => 'filterform_plugin', 'action' => wl($ID)));
105 $form->addHidden('filterform', $ID);
106 …$form->addElement(form_openfieldset(array('_legend' => $this->getLang('searchfilter'), 'class' => …
107 $form->addElement(form_makeMenuField('field', $data['fields'], '', '', '', 'cell menu'));
108 $form->addElement(form_makeTextField('contains', '', '', '', 'cell text'));
110 $form->addElement('<div class="group">'.$this->getLang('prevfilters').':</div>');
115 $form->addElement(form_checkboxField(
122 $form->addElement(form_makeButton('submit', '', $this->getLang('submitfilter')));
123 $form->endFieldset();
125 return $form->getForm();
/plugin/twofactorgoogleauth/
H A Daction.php27 public function renderProfileForm(Form $form) argument
37 $form->addHTML('<figure><p>' . $this->getLang('directions') . '</p>');
38 $form->addHTML($svg);
39 $form->addHTML('<figcaption><code>'.$secret.'</code></figcaption>');
40 $form->addHTML('</figure>');
42 $form->addHTML('<p>' . $this->getLang('verifynotice') . '</p>');
43 $form->addElement(new OtpField('googleauth_verify'));
45 return $form;
/plugin/recommend/
H A Dstyle.css21 form#plugin__recommend {
26 form#plugin__recommend p {
31 form#plugin__recommend fieldset {
35 form#plugin__recommend label {
41 form#plugin__recommend label span {
48 form#plugin__recommend label input {
53 form#plugin__recommend label textarea.edit,
54 form#plugin__recommend label input.edit {
H A Daction.php134 $form = new \dokuwiki\Form\Form([
138 $form->setHiddenField('id', $id); // we need it for the ajax call
146 $form->setHiddenField('s_name', $USERINFO['name']);
147 $form->setHiddenField('s_email', $USERINFO['mail']);
153 $form->addTextInput('r_email', $this->getLang('recipients'))
156 $form->addTextInput('subject', $this->getLang('subject'))
159 $form->addTextarea('comment', $this->getLang('message'))
167 if ($captcha) $form->addHTML($captcha->getHTML());
169 $form->addTagOpen('div')->addClass('buttons');
171 $form->addTagClose('div');
[all …]
/plugin/onlineordering/
H A Dorder_form.php19 $form_title = $form['title'];
41 …firstname" id="onlineordering_firstname" tabindex="1" size="20" value="'.$form['firstname'].'"/></…
47 …g_lastname" id="onlineordering_lastname" tabindex="2" size="20" value="'.$form['lastname'].'"/></t…
53 …ering_street" id="onlineordering_street" tabindex="3" size="40" value="'.$form['street'].'"/></td>…
59 …ng_postcode" id="onlineordering_postcode" tabindex="4" size="5" value="'.$form['postcode'].'"/></t…
65 …rdering_place" id="onlineordering_place" tabindex="5" size="20" value="'.$form['place'].'"/></td>';
92 if ( $country == $form['country'])
106 …rdering_email" id="onlineordering_email" tabindex="7" size="20" value="'.$form['email'].'"/></td>';
112 …ordering_tickets" id="onlineordering_tickes" tabindex="8" size="3" value="'.$form['tickets'].'"/>';
126 …name="onlineordering_remarks" id="onlineordering_remarks" tabindex="9">'.$form['remarks'].'</texta…
/plugin/move/admin/
H A Dtree.php57 $form = new Doku_Form(array('action' => wl($ID), 'id' => 'plugin_move__tree_execute'));
58 $form->addHidden('id', $ID);
59 $form->addHidden('page', 'move_main');
60 $form->addHidden('json', '');
61 …$form->addElement(form_makeCheckboxField('autoskip', '1', $this->getLang('autoskip'), '', '', ($th…
62 $form->addElement('<br />');
63 …$form->addElement(form_makeCheckboxField('autorewrite', '1', $this->getLang('autorewrite'), '', ''…
64 $form->addElement('<br />');
65 $form->addElement('<br />');
66 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('btn_start')));
[all …]
/plugin/acknowledge/admin/
H A Dreport.php139 $form = new Form(['method' => 'GET']);
140 $form->id('acknowledge__user-autocomplete');
141 $form->setHiddenField('do', 'admin');
142 $form->setHiddenField('page', 'acknowledge_report');
143 $form->addTextInput('pg', $this->getLang('pattern'));
144 $form->addTextInput('user', $this->getLang('overviewUser'))
146 $form->addDropdown(
155 $form->addButton('', '>');
156 echo $form->toHTML();
/plugin/infomail/
H A Daction.php68 $form = new \dokuwiki\Form\Form([
72 $form->setHiddenField('id', $id); // we need it for the ajax call
76 $form->setHiddenField('s_name', $USERINFO['name']);
77 $form->setHiddenField('s_email', $USERINFO['mail']);
91 $form->addDropdown('r_predef', $lists, $this->getLang('bookmarks'));
94 $form->addTextInput('r_email', $this->getLang('recipients'))->addClass('edit');
95 $form->addTextInput('subject', $this->getLang('subject'))->addClass('edit');
100 if ($captcha) $form->addHTML($captcha->getHTML());
104 $form->addTagOpen('div')->addClass('buttons');
107 $form->addTagClose('div');
[all …]
/plugin/virtualgroup/
H A Dadmin.php334 * Return the form to add groups to a user
341 $form = new Form(
344 $form->addFieldsetOpen($this->getLang('addUserGroups'));
345 $form->addTextInput('user', $this->getLang('user'))->attr('placeholder', $this->getLang('user'));
346 $form->addTextInput('groups', $this->getLang('grps'))->attr('placeholder', $this->getLang('grpsSample'));
347 $form->addButton('addusergroups', $this->getLang('add'))->attr('type', 'submit');
348 $form->addFieldsetClose();
349 return $form->toHTML();
353 * Return the form to edit the groups of a user
360 $form
[all...]
/plugin/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest.js654 var form = null;
664 form = th.queryElem[0].e.form;
668 if (!e.form) {
671 if (e.form != form) {
680 …r given = (form.attributes.encType && form.attributes.encType.nodeValue) || (form.attributes.encty…
689 var d = form && (form.ownerDocument || form.document) || document;
698 if (!form) {
710 var form = e;
766 form,
774 form.submit();
[all …]
/plugin/oauth/action/
H A Dlogin.php77 * Add the oAuth login links to login form
85 /** @var Doku_Form $form */
86 $form = $event->data;
90 // remove login form if single service is set
93 $form->_content = [];
96 $form->_content[] = form_openfieldset(
102 $form->_content[] = $html;
103 $form->_content[] = form_closefieldset();
107 * Add the oAuth login links to login form
115 /** @var Form $form */
[all...]
/plugin/flowchartjs/
H A Dadmin.php51 $form = new Doku_Form(array('method'=>'post', 'enctype'=>'multipart/form-data'));
52 $form->addElement( form_makeFileField(
55 $form->addElement('<div>Or/and delete styles:</div>');
60 $form->addElement( form_makeCheckboxField(
63 $form->addElement('<br />');
65 $form->addElement( form_makeButton('submit', 'admin', 'Update') );
66 $form->printForm();
/plugin/authyubikey/
H A Daction.php51 $form =& $event->data;
55 $pos = $form->findElementByAttribute('name', 'p');
56 $form->insertElement($pos + 1, $element);
80 $form =& $event->data;
81 $pos = $form->findElementByAttribute('name', 'login');
82 $elem =& $form->getElementAt($pos);
113 $pos = $form->findElementByAttribute('name', 'email');
114 $form->insertElement($pos + $i + 1, $element);
/plugin/farmsync/meta/
H A DTemplateConflict.php25 $form = new Form();
26 …$form->attrs(array('data-animal' => $this->getAnimal(), "data-page" => $this->getItem(), "data-typ…
28 $form->addButton("theirs", $this->helper->getLang('button:keep'));
29 $form->addButton("override", $this->helper->getLang('button:overwrite'));
30 $form->addButton("diff", $this->helper->getLang('button:diff'));
32 $result .= $form->toHTML();
/plugin/edittable/action/
H A Deditor.php84 $form =& $event->data['form'];
90 $form->addHTML('<div id="edittable__editor"></div>');
94 $form->setHiddenField("edittable__new[$k]", $v);
98 $form->setHiddenField('target', 'table');
99 $form->setHiddenField('range', $RANGE);
103 $form->addHidden('edittable_data', $Renderer->getDataJSON());
104 $form->addHidden('edittable_meta', $Renderer->getMetaJSON());
105 $form->addElement('<div id="edittable__editor"></div>');
109 $form->addHidden("edittable__new[$k]", $v);
113 $form->addHidden('target', 'table');
[all …]
/plugin/vbsso/
H A Daction.php150 $form = new Doku_Form(array('id' => 'dw__login',
152 $form->startFieldset($this->getLang('btn_login'));
153 $form->addHidden('do', 'login');
154 $form->addElement(form_makeTextField('vb_login_username',
157 …$form->addElement(form_makePasswordField('vb_login_password', $this->getLang('pass'), '', 'block')…
158 …$form->addElement(form_makeCheckboxField('cookieuser', '1', $this->getLang('remember'), 'remember_…
160 $form->addElement(form_makeButton('submit', '', $this->getLang('btn_login')));
161 $form->endFieldset();
165 …$form->addElement('<p>' . $this->getLang('reghere') . ': ' . tpl_link(sharedapi_url_add_destinatio…
171 …$form->addElement('<p>' . $this->getLang('pwdforget') . ': ' . tpl_link(sharedapi_url_add_destinat…
[all …]
/plugin/fksnewsfeed/
H A Daction.php246 $form = new Form();
254 $form->setHiddenField('page_id', $ID);
257 $form->setHiddenField('news[do]', 'save');
259 $form->addFieldsetOpen('Novinky na webu');
263 $form->addTagOpen('div')->addClass('form-group');
277 $form->addElement($input);
311 $form->addElement($input);
326 $form->addHTML('<small>' . $note . '</small>');
328 $form->addTagClose('div');
330 $form->addFieldsetClose();
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DFormErrorHandlerTest.php68 $form = $this->createForm();
77 $form = $this->createForm();
78 $form->addError(new FormError('error!'));
88 $form = $this->createForm();
89 $form->addError(new FormError('error!'));
112 $form = $builer->getForm();
114 $form->submit([
126 $form = $formFactory->createBuilder()
261 $form->expects($this->any())
264 $form->expects($this->any())
[all …]
/plugin/upload/
H A Dstyle.css1 div.dokuwiki form.upload__plugin {
7 div.dokuwiki form.upload__plugin fieldset {
13 div.dokuwiki form.upload__plugin label {
19 div.dokuwiki form.upload__plugin label span {
26 div.dokuwiki form.upload__plugin label input {
32 div.dokuwiki form.upload__plugin input.button {
38 div.dokuwiki form.upload__plugin input.button {
H A Dsyntax.php107 $params['enctype'] = 'multipart/form-data';
118 …is field here "id" because it is misinterpreted by DokuWiki if the upload form is not in media man…
119 …$form->addElement(form_makeTextField('new_name', '', $lang['txt_filename'] . ':', 'upload__name'));
126 $form->addElement(
134 $form->addElement(form_makeButton('submit', '', $lang['btn_upload']));
135 $form->endFieldset();
138 $html .= $form->getForm();
/plugin/combo/resources/snippet/js/
H A Dsubscribe.js6 const forms = document.querySelectorAll(`${subscribeComponentSelector} form`);
7 Array.from(forms).forEach(form => {
8 form.addEventListener('submit', async (event) => {
11 if (form.checkValidity()) {
12 let url = new URL(form.getAttribute("action"));
13 let formData = new FormData(form);
41 let header = form.getAttribute("data-success-header");
46 message = form.getAttribute("data-success-content");
/plugin/frootysearch/
H A Dstyle.css12 form#dw__search div.frootySearch input.edit {
30 form#dw__search div.frootySearch {
37 form#dw__search div.frootySearch .left {
47 * html form#dw__search div.frootySearch .left {
52 form#dw__search div.frootySearch .right {
62 * html form#dw__search div.frootySearch .right {
67 form#dw__search div.frootySearch.empty.blurred input {
71 form#dw__search div.frootySearch .reset {
86 form#dw__search div.frootySearch.empty .reset {
90 form#dw__search span.prettyplaceholder {
[all …]
/plugin/farmer/admin/
H A Ddelete.php74 $form = new Form();
75 $form->addFieldsetOpen($this->getLang('delete_animal'));
79 $form->addDropdown('delanimal', $animals)->addClass('farmer_chosen_animals');
80 $form->addTextInput('confirm', $this->getLang('delete_confirm'));
81 $form->addButton('delete', $this->getLang('delete'));
82 $form->addFieldsetClose();
83 echo $form->toHTML();

12345678910>>...56