History log of /plugin/struct/meta/QueryBuilderWhere.php (Results 1 – 8 of 8)
Revision Date Author Comments
# 7234bfb1 13-Sep-2023 splitbrain <splitbrain@users.noreply.github.com>

�� Automatic code style fixes


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

PHP code sniffer autofixes


# d6d97f60 09-Apr-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Automatic coding style fixes


# 95c419be 03-Jan-2017 Michael Grosse <grosse@cosmocode.de>

docs: add missing doc for new $QB parameter


# af993d55 03-Jan-2017 Michael Grosse <grosse@cosmocode.de>

fix: stop OR filters causing problems

The filters coming from syntax should be grouped together in a subgroup
to that OR-filters cannot undo the filters on latest=1 etc.

Since we cannot know in the

fix: stop OR filters causing problems

The filters coming from syntax should be grouped together in a subgroup
to that OR-filters cannot undo the filters on latest=1 etc.

Since we cannot know in the filter function whether there is already a
subgroup for us to use or which to use, the solution was to give the
correct subgroup to the filter function directly.

Instead of adding another parameter to the already long list of
parameters for that function, I have chosen to give the
QueryBuilderWhere a reference back to the original QueryBuilder.

show more ...


# 4c13ff97 18-Jul-2016 Andreas Gohr <gohr@cosmocode.de>

rename $type to $op to avoid confusion about what a type is


# d21da21c 14-Jul-2016 Andreas Gohr <gohr@cosmocode.de>

make generic where() available to use

this makes it easier to pass the logic operator dynamically


# 3fde0efc 13-Jul-2016 Andreas Gohr <gohr@cosmocode.de>

first go at query builder