Commit
commit 6983e4e810a76c3cd5a98759abd7d7afdc4fd164 Author: Jan DankertDate: Thu Feb 16 22:57:35 2023 +0100 New: More functions (adding, deleting) for tags. modules/cms/Dispatcher.class.php | 2 +- modules/cms/action/TagAction.class.php | 39 +++------ modules/cms/action/TaglistAction.class.php | 2 - .../profile/ProfileAvailableAction.class.php | 5 +- modules/cms/action/tag/TagEditAction.class.php | 25 ++++++ modules/cms/action/tag/TagPropAction.class.php | 22 +++++ modules/cms/action/tag/TagRemoveAction.class.php | 29 +++++++ .../cms/action/taglist/TaglistAddAction.class.php | 53 ++++++++++++ .../cms/action/taglist/TaglistEditAction.class.php | 28 +++++++ modules/cms/base/DefaultConfig.class.php | 18 +--- modules/cms/model/BaseObject.class.php | 8 +- modules/cms/model/Tag.class.php | 18 +++- .../cms/ui/action/tree/TreePathAction.class.php | 5 +- .../ui/themes/default/html/views/project/edit.php | 8 ++ .../default/html/views/project/edit.tpl.src.xml | 9 ++ .../cms/ui/themes/default/html/views/tag/edit.php | 90 ++++++++++++++++++++ .../themes/default/html/views/tag/edit.tpl.src.xml | 96 ++++++++++++++++++++++ .../cms/ui/themes/default/html/views/tag/prop.php | 35 ++++++++ .../themes/default/html/views/tag/prop.tpl.src.xml | 10 +++ .../ui/themes/default/html/views/tag/remove.php | 43 ++++++++++ .../default/html/views/tag/remove.tpl.src.xml | 14 ++++ .../ui/themes/default/html/views/taglist/add.php | 35 ++++++++ .../default/html/views/taglist/add.tpl.src.xml | 10 +++ .../ui/themes/default/html/views/taglist/edit.php | 59 +++++++++++++ .../default/html/views/taglist/edit.tpl.src.xml | 60 ++++++++++++++ 25 files changed, 667 insertions(+), 56 deletions(-)