History log of /plugin/struct/meta/AccessTableGlobal.php (Results 1 – 11 of 11)
Revision Date Author Comments
# b8d3247d 12-Dec-2023 Anna Dabrowska <dabrowska@cosmocode.de>

Code style fixes


# 5e29103a 11-Dec-2023 annda <annda@users.noreply.github.com>

�� Automatic code style fixes


# 7234bfb1 13-Sep-2023 splitbrain <splitbrain@users.noreply.github.com>

�� Automatic code style fixes


# 84ce8119 08-Aug-2023 Andreas Gohr <andi@splitbrain.org>

fix dynamic table access. closes #659

Table names can not be passed as parameters via PDO.


# 438a804c 25-May-2023 Anna Dabrowska <dabrowska@cosmocode.de>

Make all tests run with the new SQLiteDB class


# 79b29326 24-May-2023 Anna Dabrowska <dabrowska@cosmocode.de>

Use new \dokuwiki\plugin\sqlite\SQLiteDB class for DB access


# 17a3a578 13-Jan-2022 Andreas Gohr <andi@splitbrain.org>

Manual code style adjustments


# 0549dcc5 13-Jan-2022 Andreas Gohr <andi@splitbrain.org>

PHP code sniffer autofixes


# a09ff24a 26-Aug-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Remove deselected data in multi fields (serial and global)

Because we were replacing data on update, old values were not deleted.
Now we explicitly clear them before saving new data.


# d680cb37 20-Jul-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Allow deleting all values from a multi field in inline editor

Fixes #439

Puts a mechanism in place to delete any previous values when saving an
empty multi field. This does NOT apply to page data,

Allow deleting all values from a multi field in inline editor

Fixes #439

Puts a mechanism in place to delete any previous values when saving an
empty multi field. This does NOT apply to page data, which is versioned
and should not be deleted on update.

show more ...


# 308cc83f 14-May-2020 Andreas Gohr <andi@splitbrain.org>

refactoring names

To avoid confusion with the Lookup type, the three different ways of
accessing a schema have now the following names:

* page data - for revisioned struct data attached to a page
*

refactoring names

To avoid confusion with the Lookup type, the three different ways of
accessing a schema have now the following names:

* page data - for revisioned struct data attached to a page
* serial data - for an unrevisioned list of struct data attached to a
page
* global data - for an unrevisioned list of struct data not attached to
any page (formaly known as lookup schema)

The editor mechanism used for serial and global data is now called
AggregationEditor

Some reference to lookup schemas is still in the bureaucracy support
part.

show more ...