Home
last modified time | relevance | path

Searched refs:form (Results 151 – 175 of 1387) sorted by relevance

12345678910>>...56

/plugin/bureaucracyau/helper/
H A Dfieldradio.php36 public function renderfield($params, Doku_Form $form, $formid) { argument
38 if(!$form->_infieldset){
39 $form->startFieldset('');
65 $form->addElement($s);
79 $form->addElement(form_makeRadioField($name, $val, $val, $_id, $class, $attrs));
H A Dfieldselect.php39 public function renderfield($params, Doku_Form $form, $formid) { argument
41 if(!$form->_infieldset){
42 $form->startFieldset('');
48 $form->addElement(call_user_func_array('form_makeListboxField',
H A Dfieldmultiselect.php39 public function renderfield($params, Doku_Form $form, $formid) { argument
41 if(!$form->_infieldset){
42 $form->startFieldset('');
48 $form->addElement(call_user_func_array('form_makeListboxField',
/plugin/bureaucracy-au/helper/
H A Dfieldradio.php36 public function renderfield($params, Doku_Form $form, $formid) { argument
38 if(!$form->_infieldset){
39 $form->startFieldset('');
65 $form->addElement($s);
79 $form->addElement(form_makeRadioField($name, $val, $val, $_id, $class, $attrs));
H A Dfieldselect.php39 public function renderfield($params, Doku_Form $form, $formid) { argument
41 if(!$form->_infieldset){
42 $form->startFieldset('');
48 $form->addElement(call_user_func_array('form_makeListboxField',
H A Dfieldmultiselect.php39 public function renderfield($params, Doku_Form $form, $formid) { argument
41 if(!$form->_infieldset){
42 $form->startFieldset('');
48 $form->addElement(call_user_func_array('form_makeListboxField',
/plugin/bureaucracy/helper/
H A Dfieldradio.php36 public function renderfield($params, Doku_Form $form, $formid) { argument
38 if(!$form->_infieldset){
39 $form->startFieldset('');
65 $form->addElement($s);
79 $form->addElement(form_makeRadioField($name, $val, $val, $_id, $class, $attrs));
H A Dfieldselect.php39 public function renderfield($params, Doku_Form $form, $formid) { argument
41 if(!$form->_infieldset){
42 $form->startFieldset('');
48 $form->addElement(call_user_func_array('form_makeListboxField',
H A Dfieldmultiselect.php39 public function renderfield($params, Doku_Form $form, $formid) { argument
41 if(!$form->_infieldset){
42 $form->startFieldset('');
48 $form->addElement(call_user_func_array('form_makeListboxField',
/plugin/task/syntax/
H A Dtasks.php179 $form = new dokuwiki\Form\Form(array('id' => 'task__changeview_form'));
182 $form->addHTML('<label class="simple">', $pos++);
183 $form->addHTML('<span>'.$this->getLang('view').'</span>', $pos++);
186 $form->setHiddenField ('id', $ID);
187 $form->setHiddenField ('do', 'show');
199 $input = $form->addDropdown('filter', $dropDownOptions, NULL, $pos++);
202 $form->addHTML('</label>', $pos++);
206 $input = $form->addCheckbox('view_user', NULL, $pos++);
211 $form->addHTML('</label>', $pos++);
215 $form->addButton(NULL, $this->getLang('btn_refresh'), $pos++);
[all …]
/plugin/twofactoraltemail/
H A Daction.php30 public function renderProfileForm(Form $form) argument
35 $form->addHTML('<p>' . $this->getLang('intro') . '</p>');
36 $form->addTextInput('newemail', $this->getLang('email'))->attr('autocomplete', 'off');
38 $form->addHTML('<p>' . $this->getLang('verifynotice') . '</p>');
39 $form->addElement(new OtpField('verify'));
42 return $form;
/plugin/semanticdata/
H A Dbureaucracy_field.php44 function render($params, $form) { argument
46 parent::render($params, $form);
49 if(!$form->_infieldset){
50 $form->startFieldset('');
56 $form->addElement(call_user_func_array('form_makeListboxField',
/plugin/chat/
H A Dscript.js662 if (form) {
663 if (form.chatMessage) {
664 form.chatMessage.focus();
683 chatClearMessages(form.user.value);
697 if (chatSendMessage(form.user.value, form.chatMessage.value)) {
698 form.chatMessage.value = '';
802 if (form) {
803 if (form.user && 'text' == form.user.type) {
806 form.user.value = cname;
813 if (form.chatMessage) {
[all …]
/plugin/lms/
H A Dadmin.php33 $form = new Form(['method' => 'POST', 'id' => 'lms__admin-autocomplete']);
34 $form->addTextInput('user', $this->getLang('username'));
35 $form->addButton('submit', '?');
36 echo '<p>' . $form->toHTML() . '</p>';
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/
H A DBatchUpdateFormResponse.php33 public function setForm(Form $form) argument
35 $this->form = $form;
42 return $this->form;
/plugin/twofactor/action/
H A Dresendpwd.php9 * flow and insert our own 2fa form, initialized with the user provided in the reset form. When the user
74 // next, we will overwrite the resendpwd form with our own in TPL_ACT_UNKNOWN
98 $form = $manager->getCodeForm($providerID);
100 // overwrite form defaults, to redo the resendpwd action but with the code supplied
101 $form->setHiddenField('do', 'resendpwd');
102 $form->setHiddenField('login', $INPUT->str('login'));
103 $form->setHiddenField('save', 1);
109 echo $form->toHTML();
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DPageWriter.php22 private $form; variable in Mpdf\\Writer\\PageWriter
34 public function __construct(Mpdf $mpdf, Form $form, BaseWriter $writer, MetadataWriter $metadataWriter) argument
37 $this->form = $form;
77 if (count($this->form->forms) > 0) {
78 $this->form->countPageForms($n, $totaladdnum);
86 if (count($this->form->form_radio_groups)) {
87 foreach ($this->form->form_radio_groups as $name => $frg) {
88 $this->form->form_radio_groups[$name]['obj_id'] = $annotid + $totaladdnum + $ctr;
224 if (count($this->form
[all...]
/plugin/spatialhelper/admin/
H A Dpurge.php73 * render the form for this plugin.
81 $form = new Form(
84 $form->setHiddenField('purgeindex', 'true');
85 $form->addButton('submit', $this->getLang('admin_submit'))
87 echo $form->toHTML();
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudNaturalLanguage/
H A DPartOfSpeech.php33 public $form; variable in Google\\Service\\CloudNaturalLanguage\\PartOfSpeech
102 public function setForm($form) argument
104 $this->form = $form;
111 return $this->form;
/plugin/blogtng/action/
H A Dedit.php155 $form = $event->data;
156 $pos = $form->findPositionByAttribute('type','submit');
166 $form->addFieldsetOpen('BlogTNG', $pos++)
194 $form->addTagOpen('div', $pos++)
203 $form->addTagClose('div', $pos++);
205 $form->addTextInput('post-tags', 'Tags', $pos++)
251 $form->addTextInput('post-date[MM]', 'MM', $pos++)
254 $form->addTextInput('post-date[DD]', 'DD', $pos++)
257 $form->addTextInput('post-date[hh]', 'hh', $pos++)
260 $form->addTextInput('post-date[mm]', 'mm', $pos++)
[all …]
/plugin/log/
H A Dsyntax.php123 $form = new Doku_Form(array('action' => wl($ID,array('do'=>'log_new'), false, '&'),
125 $form->addElement(form_makeTextField('log_text', '', $this->getLang('newentry')));
126 $form->addHidden('id', $ID);
127 $form->addHidden('maxcount', $data[3]);
128 $form->addElement(form_makeButton('submit', null, $this->getLang('save')));
130 $renderer->doc .= $form->getForm();
/plugin/diffpreview/
H A Daction.php30 $form = $event->data;
33 if (is_a($form, \dokuwiki\Form\Form::class)) {
36 $pos = $form->findPositionByAttribute('id', 'edbtn__preview');
38 $form->addButton('do[changes]', $this->getLang('changes'), $pos+1)
47 $preview = $form->findElementById('edbtn__preview');
49 $form->insertElement($preview+1,
/plugin/freechat/phpfreechat/data/public/js/
H A Dpfcprompt.js42 var form = document.createElement('form');
43 form.pfc_prompt = this;
44 form.onsubmit = function(evt) { return this.pfc_prompt._doSubmit(); }; method
45 this.box.appendChild(form);
51 form.appendChild(this.prompt_field);
54 form.appendChild(br);
62 form.appendChild(cancel);
68 form.appendChild(submit);
/plugin/securelogin/
H A Dscript.js31 var form = securelogin_get_form(jQuery("#" + forms[i])[0]);
32 if(!form) continue;
39 form.appendChild(slNode);
40 securelogin_forms.push(new Array(forms[i], form));
/plugin/captcha/
H A Daction.php26 // inject in edit form
35 // inject in login form
53 * Note: checking needs to be done when a form has been submitted, not when the form
132 if (!$INPUT->bool('u')) return; // this login was not triggered by a form
183 /** @var Form|\Doku_Form $form */
184 $form = $event->data;
187 $pos = $form->findPositionByAttribute('type', 'submit');
201 $form->addHTML($out, $pos);

12345678910>>...56