History log of /dokuwiki/inc/Action/AbstractAction.php (Results 1 – 17 of 17)
Revision Date Author Comments
# d22e654a 06-Aug-2024 fiwswe <53953985+fiwswe@users.noreply.github.com>

Use the reflection method


# c04d78e1 05-Aug-2024 fiwswe <53953985+fiwswe@users.noreply.github.com>

Forgot to lowercase the result


# 81f8bc8b 05-Aug-2024 fiwswe <53953985+fiwswe@users.noreply.github.com>

Update AbstractAction.php

PHP 8 makes this method faster that the previous SubstringStrChr method mentioned in https://stackoverflow.com/a/27457689


# d4f83172 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

code style: line breaks


# 177d6836 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

coding style: control flow whitespaces


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

codestyle adjustments: function declaration braces/spaces


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

codestyle adjustments: class declaration braces


# 79a2d784 05-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

import classes, replace dbglog, simplify, remove unused statements, and other warnings from IntelliJ

update phpdocs,
rename dokuwiki/Ui/Draft to PageDraft


# b2c9cd19 12-Apr-2018 Andreas Gohr <gohr@cosmocode.de>

renamed ActionRouter::checkPermissions to checkPreconditions

As discussed in #1933


# 225d36a1 01-Apr-2017 Andreas Gohr <andi@splitbrain.org>

fixed small typo


# 480336a3 31-Mar-2017 Andreas Gohr <andi@splitbrain.org>

no longer rely on actionOk when checking if actions are disabled

loadAction() and checkAction() are now public and could be used within
actionOK(). However some weird circular references prevent tha

no longer rely on actionOk when checking if actions are disabled

loadAction() and checkAction() are now public and could be used within
actionOK(). However some weird circular references prevent that. In
addition, actionOK is also used to check for things that aren't Actions
(yet) like 'rss' and 'top'.

show more ...


# ec701221 31-Mar-2017 Andreas Gohr <andi@splitbrain.org>

explicitly declare method visibility


# 6e4bf08e 31-Mar-2017 Andreas Gohr <andi@splitbrain.org>

allow actions to be initialized without an action name

also fixes the tests


# 73522543 11-Mar-2017 Andreas Gohr <andi@splitbrain.org>

fixed export action by supporting underscores in actions

Now underscores can be used to have sub actions. The loader will try to
find an exact match first, then begin removing parts from the end unt

fixed export action by supporting underscores in actions

Now underscores can be used to have sub actions. The loader will try to
find an exact match first, then begin removing parts from the end until
a matching action is found.

show more ...


# ab583a1b 11-Feb-2017 Andreas Gohr <andi@splitbrain.org>

more doc block fixes


# f21dad39 11-Feb-2017 Andreas Gohr <andi@splitbrain.org>

all actions should have a class now

Lots of FIXMEs and the routing isn't integrated, yet


# 64ab5140 10-Feb-2017 Andreas Gohr <andi@splitbrain.org>

start of a refactoring the action routing

This is neither complete nor working, yet