Home
last modified time | relevance | path

Searched refs:InputElement (Results 1 – 15 of 15) sorted by relevance

/plugin/twofactor/
H A DOtpField.php5 use dokuwiki\Form\InputElement; alias
12 class OtpField extends InputElement
/plugin/combo/action/
H A Dlogin.php17 use dokuwiki\Form\InputElement; alias
265 * @var InputElement $userField
268 $newUserField = new InputElement($userField->getType(), "u");
292 $newPwdField = new InputElement($pwdField->getType(), "p");
319 $newRememberField = new InputElement($rememberField->getType(), "r");
H A Dprofile.php11 use dokuwiki\Form\InputElement; alias
/plugin/fksnewsfeed/inc/renderer/
H A DVyfukRenderer.php7 use dokuwiki\Form\InputElement; alias
105 …$priorityValue = new InputElement('number', 'priority[value]', $this->helper->getLang('valid_from'…
111 …$priorityFromElement = new InputElement('datetime-local', 'priority[from]', $this->helper->getLang…
118 …$priorityToElement = new InputElement('datetime-local', 'priority[to]', $this->helper->getLang('va…
H A DFykosRenderer.php7 use dokuwiki\Form\InputElement; alias
89 …$priorityValue = new InputElement('number', 'priority[value]', $this->helper->getLang('valid_from'…
95 …$priorityFromElement = new InputElement('datetime-local', 'priority[from]', $this->helper->getLang…
102 …$priorityToElement = new InputElement('datetime-local', 'priority[to]', $this->helper->getLang('va…
/plugin/combo/ComboStrap/
H A DIdentityFormsHelper.php7 use dokuwiki\Form\InputElement; alias
18 if ($inputElement instanceof InputElement) {
25 * Tansfrom the Dokuwiki {@link InputElement} into a Boostrap layout
34 if (!($inputElement instanceof InputElement)) {
54 $newInputField = new InputElement($inputType, $inputName);
H A DIdentity.php18 use dokuwiki\Form\InputElement; alias
/plugin/data/Form/
H A DDropdownElement.php5 use dokuwiki\Form\InputElement;
31 InputElement::__construct('dropdown', $name, $label);
73 return InputElement::attr($name, $value);
/plugin/sqlite/
H A Dadmin.php5 use dokuwiki\Form\InputElement;
278 (new InputElement('file', 'importfile'))
4 use dokuwiki\Form\InputElement; global() alias
/plugin/data/syntax/
H A Dentry.php11 use dokuwiki\Form\InputElement;
577 $el = new InputElement('text', $fieldid . '[value]', $vals['title']);
596 $el = new InputElement('text', $fieldid . '[title]', $this->getLang('title'));
615 $el = new InputElement('text', $fieldid . '[value]', $this->getLang('value'));
619 $el = new InputElement('text', $fieldid . '[comment]', $this->getLang('comment'));
/plugin/watchcycle/
H A Dadmin.php59 $filter_input = new \dokuwiki\Form\InputElement('text', 'filter');
/plugin/struct/admin/
H A Dschemas.php11 use dokuwiki\Form\InputElement;
204 $form->addElement(new InputElement('file', 'schemafile'))->attr('accept', '.json');
242 $form->addElement(new InputElement('file', 'csvfile'))->attr('accept', '.csv');
/plugin/fksnewsfeed/
H A Daction.php6 use dokuwiki\Form\InputElement; alias
309 $input = new InputElement('email', $field, $this->getLang($field));
/plugin/file2dw/
H A Daction.php104 $userFileInputElement = new dokuwiki\Form\InputElement('file','userFile');
108 $submitInputElement = new dokuwiki\Form\InputElement('submit','btn_upload');
/plugin/userimportextended/
H A Dadmin.php95 … $form->addElement(new \dokuwiki\Form\InputElement('file', 'import'))->attr('accept', '.csv');