Home
last modified time | relevance | path

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

/plugin/twofactor/
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");
294 $newPwdField = new InputElement($pwdField->getType(), "p");
322 $newRememberField = new InputElement($rememberField->getType(), "r");
H A Dprofile.php11 use dokuwiki\Form\InputElement; alias
/plugin/data/Form/
DDropdownElement.php5 use dokuwiki\Form\InputElement; alias
31 InputElement::__construct('dropdown', $name, $label);
73 return InputElement::attr($name, $value);
/plugin/fksnewsfeed/inc/renderer/
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…
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) {
34 if (!($inputElement instanceof InputElement)) {
54 $newInputField = new InputElement($inputType, $inputName);
H A DIdentity.php18 use dokuwiki\Form\InputElement; alias
/plugin/watchcycle/
Dadmin.php5 use dokuwiki\Form\InputElement; alias
57 $filter_input = new InputElement('text', 'filter');
/plugin/wordimport/action/
Dui.php7 use dokuwiki\Form\InputElement; alias
102 $upload = new InputElement('file', 'file', $this->getLang('uploadfield'));
/plugin/searchns/
Daction.php7 use dokuwiki\Form\InputElement; alias
88 $newQ = new InputElement('text', 'q');
/plugin/data/syntax/
Dentry.php11 use dokuwiki\Form\InputElement; alias
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/sketchcanvas/
DCanvasElement.php10 class CanvasElement extends dokuwiki\Form\InputElement
/plugin/struct/admin/
H A Dschemas.php11 use dokuwiki\Form\InputElement; alias
204 $form->addElement(new InputElement('file', 'schemafile'))->attr('accept', '.json');
242 $form->addElement(new InputElement('file', 'csvfile'))->attr('accept', '.csv');
/plugin/sqlite/
H A Dadmin.php5 use dokuwiki\Form\InputElement; alias
281 (new InputElement('file', 'importfile'))
/plugin/tagging/action/
H A Dsearch.php7 use dokuwiki\Form\InputElement; alias
145 /** @var InputElement $q */
/plugin/fksnewsfeed/
Daction.php6 use dokuwiki\Form\InputElement; alias
309 $input = new InputElement('email', $field, $this->getLang($field));
/plugin/file2dw/
Daction.php104 $userFileInputElement = new dokuwiki\Form\InputElement('file','userFile');
108 $submitInputElement = new dokuwiki\Form\InputElement('submit','btn_upload');
/plugin/doxycode/
Dadmin.php211 …$form->addElement(new dokuwiki\Form\InputElement('file', 'upload', $this->getLang('admin_upload'))…
/plugin/userimportextended/
Dadmin.php95 … $form->addElement(new \dokuwiki\Form\InputElement('file', 'import'))->attr('accept', '.csv');