History log of /dokuwiki/inc/Form/Form.php (Results 1 – 24 of 24)
Revision Date Author Comments
# 90fb952c 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

code style: operator spacing


# d868eb89 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

codestyle adjustments: function declaration braces/spaces


# 6fd0861f 29-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Apply rector fixes to inc/Form


# dbcceefd 06-Jul-2023 Anna Dabrowska <dabrowska@cosmocode.de>

Prevent double escaping of form labels

\dokuwiki\Form\Form::addLabelHTML() should not escape label content (again)


# c6977b3a 26-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

change event naming scheme

FORM_*_OUTPUT scheme had been introduced since Apriil 2018, see #2286


# 66e555e2 19-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

fix missing or unnecessary use Event statements


# 0dd35558 19-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

Form::toHTML() can trigger event

New event naming scheme HTMLFORM_*_OUTPUT should be tiggered to prevent break of old third-party plugins using old events HTML_*FORM_OUTPUT.


# 9d01c1d9 01-Jul-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

PSR-12 coding style


# 64159a61 27-Apr-2018 Andreas Gohr <andi@splitbrain.org>

line lengths shortened

This makes sure all files use line lenghts shorter than 120 characters.

This is a quick fix. It might not always be the nicest change.


# 7fa270bc 27-Mar-2018 Michael Große <grosse@cosmocode.de>

feat(Form): add parameter to omit security token in forms

This is useful for anonymously useable forms, like the search.


# 5facb9bc 27-Mar-2018 Michael Große <grosse@cosmocode.de>

feat(Form): add method to get position of element by element


# 7ec97767 11-May-2016 Gerrit Uitslag <klapinklapin@gmail.com>

PHPDocs Form


# 01e3f2b3 20-Apr-2016 Michael Große <mic.grosse@posteo.de>

Remove unnecessary linebreaks from new Form

Since Firebug it is no longer necessary to structure html with linebreaks. See also Issue #924


# 8638ead5 15-Apr-2016 Andreas Gohr <andi@splitbrain.org>

added dropdown type to new Form system #1312


# bb6d40dc 18-Aug-2015 Andreas Gohr <andi@splitbrain.org>

Form: fixed class checks


# a453c16b 18-Aug-2015 Andreas Gohr <andi@splitbrain.org>

Form: more flexible label handling #1312

You now can add labels that don't wrap around inputs, but you have to
ensure IDs are properly assigned yourself.

The Label class has been renamed to LabelEl

Form: more flexible label handling #1312

You now can add labels that don't wrap around inputs, but you have to
ensure IDs are properly assigned yourself.

The Label class has been renamed to LabelElement to reflect the naming
scheme of the other elements.

show more ...


# 8f0df229 18-Aug-2015 Andreas Gohr <andi@splitbrain.org>

Form: added Button element #1312


# 80b13baa 01-Aug-2015 Gerrit Uitslag <klapinklapin@gmail.com>

typo


# ef0c211b 11-May-2015 Andreas Gohr <andi@splitbrain.org>

added element query functions


# 1f5d8b65 11-May-2015 Andreas Gohr <andi@splitbrain.org>

balance fieldsets


# 64744a10 08-May-2015 Andreas Gohr <andi@splitbrain.org>

more elements and work on the legacy support


# de19515f 08-May-2015 Andreas Gohr <andi@splitbrain.org>

started with the compatibility layer


# 6d0ceaf9 08-May-2015 Andreas Gohr <andi@splitbrain.org>

added a first few tests.

this is far from comprehensible, but should give an idea how the new
library works and how to write tests


# 12a4e4d1 08-May-2015 Andreas Gohr <andi@splitbrain.org>

start of rewriting the form handling

This is jsut a small beginning. Not all elements are there, yet. It's
also completely untested so far.