Home
last modified time | relevance | path

Searched refs:form (Results 1 – 25 of 62) sorted by path

123

/dokuwiki/
H A DCOPYING135 under Section 2) in object code or executable form under the terms of
152 received the program in object code or executable form with such
155 The source code for a work means the preferred form of the work for
162 form) with the major components (compiler, kernel, and so on) of the
/dokuwiki/data/
H A Ddeleted.files935 _test/tests/inc/form/checkableelement.test.php
/dokuwiki/inc/Ui/
H A DEditor.php18 * preprocess edit form data
65 // create the Editor form
66 $form = new Form(['id' => 'dw__editform']);
67 $form->setHiddenField('id', $ID);
68 $form->setHiddenField('rev', $REV);
69 $form->setHiddenField('date', $DATE);
70 $form->setHiddenField('prefix', $PRE . '.');
71 $form->setHiddenField('suffix', $SUF);
72 $form->setHiddenField('changecheck', $check);
76 'form'
[all...]
H A DLogin.php46 // create the login form
47 $form = new Form(['id' => 'dw__login', 'action' => wl($ID)]);
48 $form->addTagOpen('div')->addClass('no');
49 $form->addFieldsetOpen($lang['btn_login']);
50 $form->setHiddenField('id', $ID);
51 $form->setHiddenField('do', 'login');
53 $input = $form->addTextInput('u', $lang['user'])->id('focus__this')->addClass('edit')
56 $form->addHTML("<br>\n");
58 $input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit');
60 $form
[all...]
H A DMediaDiff.php131 // retrieve form parameters: rev, rev2, difftype
139 // print form to choose diff view type
162 * Print form to choose diff view type
172 $form = new Form([
178 $form->addTagOpen('div')->addClass('no');
179 $form->setHiddenField('sectok', null);
180 $form->setHiddenField('mediado', 'diff');
181 $form->setHiddenField('rev2[0]', $rev1);
182 $form->setHiddenField('rev2[1]', $rev2);
183 $form
[all...]
H A DMediaRevisions.php60 // create the form
61 $form = new Form([
66 $form->setHiddenField('mediado', 'diff'); // required for media revisions
67 $form->addTagOpen('div')->addClass('no');
70 $form->addTagOpen('ul');
77 $form->addTagOpen('li')->addClass($class);
78 $form->addTagOpen('div')->addClass('li');
81 $form->addCheckbox('rev2[]')->val($rev);
83 $form->addCheckbox('rev2[]')->val($rev);
85 $form
[all...]
H A DPageConflict.php30 * Show conflict form to ask whether save anyway or cancel the page edits
44 // create the form
45 $form = new Form(['id' => 'dw__editform']);
46 $form->addTagOpen('div')->addClass('no');
47 $form->setHiddenField('id', $INFO['id']);
48 $form->setHiddenField('wikitext', $this->text);
49 $form->setHiddenField('summary', $this->summary);
51 $form->addButton('do[save]', $lang['btn_save'])->attrs(['type' => 'submit', 'accesskey' => 's']);
52 $form->addButton('do[cancel]', $lang['btn_cancel'])->attrs(['type' => 'submit']);
53 $form
[all...]
H A DPageDiff.php187 // retrieve form parameters: rev, rev2, difftype
221 // print form to choose diff view type, and exact url reference to the view
289 * Print form to choose diff view type, and exact url reference to the view
303 // create the form to select difftype
304 $form = new Form(['action' => wl()]);
305 $form->setHiddenField('id', $this->id);
306 $form->setHiddenField('rev2[0]', $rev1);
307 $form->setHiddenField('rev2[1]', $rev2);
308 $form->setHiddenField('do', 'diff');
311 $input = $form
[all...]
H A DPageDraft.php37 // create the draft form
38 $form = new Form(['id' => 'dw__editform']);
39 $form->addTagOpen('div')->addClass('no');
40 $form->setHiddenField('id', $INFO['id']);
41 $form->setHiddenField('date', $draft->getDraftDate());
42 $form->setHiddenField('wikitext', $text);
44 $form->addTagOpen('div')->id('draft__status');
45 $form->addHTML($draft->getDraftMessage());
46 $form->addTagClose('div');
47 $form
[all...]
H A DPageRevisions.php61 // create the form
62 $form = new Form([
66 $form->addTagOpen('div')->addClass('no');
69 $form->addTagOpen('ul');
77 $form->addTagOpen('li')->addClass($class);
78 $form->addTagOpen('div')->addClass('li');
81 $form->addCheckbox('rev2[]')->val($rev);
83 $form->addCheckbox('rev2[]')->val($rev)->attr('checked', 'checked');
85 $form->addCheckbox('rev2[]')->val($rev);
87 $form
[all...]
H A DRecent.php62 // create the form
63 $form = new Form(['id' => 'dw__recent', 'method' => 'GET', 'action' => wl($ID), 'class' => 'changes']);
64 $form->addTagOpen('div')->addClass('no');
65 $form->setHiddenField('sectok', null);
66 $form->setHiddenField('do', 'recent');
67 $form->setHiddenField('id', $ID);
71 $this->addRecentItemSelector($form);
75 $form->addTagOpen('ul');
83 $form->addTagOpen('li')->addClass($class);
84 $form
215 addRecentItemSelector(Form $form) global() argument
[all...]
H A DSubscribe.php15 * Display the subscribe form
68 // Add new subscription form
82 // create the form
83 $form = new Form(['id' => 'subscribe__form']);
84 $form->addTagOpen('div')->addClass('no');
85 $form->setHiddenField('id', $ID);
86 $form->setHiddenField('do', 'subscribe');
87 $form->setHiddenField('sub_action', 'subscribe');
89 $form->addFieldsetOpen($lang['subscr_m_subscribe']);
95 $form
[all...]
H A DUserProfile.php50 * Add the password confirmation field to the form if configured
52 * @param Form $form
55 protected function addPasswordConfirmation(Form $form)
61 $form->addHTML("<br>\n");
63 $input = $form->addPasswordInput('oldpass', $lang['oldpass'])->attrs($attr)
66 $form->addHTML("<br>\n");
70 * Create the profile form
80 $form = new Form(['id' => 'dw__register']);
81 $form->addTagOpen('div')->addClass('no');
82 $form
[all...]
H A DUserRegister.php34 // create the login form
35 $form = new Form(['id' => 'dw__register']);
36 $form->addTagOpen('div')->addClass('no');
37 $form->addFieldsetOpen($lang['btn_register']);
38 $form->setHiddenField('do', 'register');
39 $form->setHiddenField('save', '1');
41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit')
44 $form->addHTML("<br>\n");
47 $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit');
49 $form
[all...]
H A DUserResendPwd.php15 * Display the form to request a new password for an existing account
34 $form = $this->formSetNewPassword($token);
36 $form = $this->formResendPassword();
39 echo $form->toHTML('ResendPwd');
45 * create a form ui to set new password
54 // create the form
55 $form = new Form(['id' => 'dw__resendpwd']);
56 $form->addTagOpen('div')->addClass('no');
57 $form->addFieldsetOpen($lang['btn_resendpwd']);
58 $form
[all...]
/dokuwiki/inc/
H A Dform.php19 * When printed, the form class calls functions named 'form_$type' for each
30 * it is still widely used in the core and the related form events. Until those have been rewritten,
41 // Draw a border around form fields.
45 // Hidden form fields.
58 * @param mixed $params Parameters for the HTML form element; Using the deprecated
59 * calling convention this is the ID attribute of the form
94 * Usually results in a border drawn around the form.
144 * Appends a content element to the form.
148 * @param string|array $elem Pseudo-tag or string to add to the form.
163 * @param string|array $elem Pseudo-tag or string to add to the form
[all...]
H A Dhtml.php138 * used as default action form HTML_SECEDIT_BUTTON
170 * Just the back to top button (in its own form)
187 * Displays a button (using its own form)
223 $html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '"><div class="no">';
245 $html .= '</div></form>';
660 * Prints the registration form
672 * Print the update profile form
685 * Preprocess edit form data
698 * Display the default edit form
887 * Triggers an event with the form nam
853 html_form($name, $form) global() argument
868 html_form_output($form) global() argument
999 html_sizechange($sizechange, $form = null) global() argument
[all...]
H A Dmedia.php143 * Display the form to edit image meta data
173 $form = new Form([
177 $form->addTagOpen('div')->addClass('no');
178 $form->setHiddenField('img', $id);
179 $form->setHiddenField('mediado', 'save');
195 $form->addTagOpen('div')->addClass('row');
197 $form->addTextInput(
202 $form->addTextarea($p['name'], $lang[$field[1]])->id($p['id'])
207 $form->addTagClose('div');
209 $form
[all...]
/dokuwiki/inc/lang/cs/
H A Dregister.txt
/dokuwiki/inc/lang/en/
H A Dresendpwd.txt3 Please enter your user name in the form below to request a new password for your account in this wiki. A confirmation link will be sent to your registered email address.
/dokuwiki/inc/lang/hu/
H A Dedit.txt
/dokuwiki/inc/lang/id/
H A Dresendpwd.txt3 Masukkan nama user Anda pada form dibawah untuk permintaan perubahan password account Anda di Wiki ini. Link konfirmasi akan dikirimkan melalui alamat email Anda sewaktu registrasi.
/dokuwiki/inc/lang/lt/
H A Dregister.txt
/dokuwiki/inc/lang/sk/
H A Dregister.txt
/dokuwiki/inc/lang/sq/
H A Dresendpwd.txt

123