From 23bfc16a876a395bec5fb1bcb492a9243c2e613a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 21 May 2024 00:09:19 +0200 Subject: [PATCH] fix version and bugs --- Admin/Hooks/Web/Api.php | 2 +- Admin/Install/Dashboard.php | 4 +- Admin/Install/Media.php | 4 +- Admin/Install/Navigation.php | 4 +- Admin/Install/Search.php | 4 +- Admin/Install/SearchCommands.php | 2 +- Admin/Installer.php | 4 +- Admin/Routes/Web/Api.php | 2 +- Admin/Routes/Web/Backend.php | 2 +- Admin/Search.php | 4 +- Admin/Status.php | 4 +- Admin/Uninstaller.php | 4 +- Admin/Updater.php | 4 +- Controller/ApiAttributeController.php | 4 +- Controller/ApiController.php | 4 +- Controller/BackendController.php | 4 +- Controller/Controller.php | 4 +- Controller/SearchController.php | 4 +- Docs/Help/de/SUMMARY.md | 3 -- Docs/Help/de/introduction.md | 51 ------------------- Docs/Help/de/task.md | 38 -------------- Docs/Help/en/introduction.md | 14 +---- LICENSE.txt | 11 ++-- Models/AccountRelation.php | 4 +- Models/AccountRelationMapper.php | 4 +- Models/Attribute/TaskAttributeMapper.php | 4 +- .../Attribute/TaskAttributeTypeL11nMapper.php | 4 +- Models/Attribute/TaskAttributeTypeMapper.php | 4 +- .../TaskAttributeValueL11nMapper.php | 4 +- Models/Attribute/TaskAttributeValueMapper.php | 4 +- Models/DutyType.php | 4 +- Models/GroupRelation.php | 4 +- Models/GroupRelationMapper.php | 4 +- Models/NullAccountRelation.php | 4 +- Models/NullGroupRelation.php | 4 +- Models/NullTask.php | 4 +- Models/NullTaskElement.php | 4 +- Models/NullTaskSeen.php | 4 +- Models/PermissionCategory.php | 4 +- Models/RelationAbstract.php | 4 +- Models/Task.php | 4 +- Models/TaskElement.php | 4 +- Models/TaskElementMapper.php | 4 +- Models/TaskMapper.php | 4 +- Models/TaskPriority.php | 4 +- Models/TaskSeen.php | 4 +- Models/TaskSeenMapper.php | 4 +- Models/TaskStatus.php | 4 +- Models/TaskTemplate.php | 4 +- Models/TaskType.php | 4 +- Models/TaskVisibility.php | 4 +- README.md | 4 +- Theme/Backend/Components/Tasks/ListView.php | 4 +- .../Backend/Components/Tasks/PriorityView.php | 4 +- Theme/Backend/Components/Tasks/StatusView.php | 4 +- Theme/Backend/Components/Tasks/list.tpl.php | 2 +- Theme/Backend/Lang/Navigation.ar.lang.php | 19 ------- Theme/Backend/Lang/Navigation.cs.lang.php | 19 ------- Theme/Backend/Lang/Navigation.da.lang.php | 19 ------- Theme/Backend/Lang/Navigation.de.lang.php | 2 +- Theme/Backend/Lang/Navigation.el.lang.php | 19 ------- Theme/Backend/Lang/Navigation.en.lang.php | 2 +- Theme/Backend/Lang/Navigation.es.lang.php | 19 ------- Theme/Backend/Lang/Navigation.fi.lang.php | 19 ------- Theme/Backend/Lang/Navigation.fr.lang.php | 19 ------- Theme/Backend/Lang/Navigation.hu.lang.php | 19 ------- Theme/Backend/Lang/Navigation.it.lang.php | 19 ------- Theme/Backend/Lang/Navigation.ja.lang.php | 19 ------- Theme/Backend/Lang/Navigation.ko.lang.php | 19 ------- Theme/Backend/Lang/Navigation.no.lang.php | 19 ------- Theme/Backend/Lang/Navigation.pl.lang.php | 19 ------- Theme/Backend/Lang/Navigation.pt.lang.php | 19 ------- Theme/Backend/Lang/Navigation.ru.lang.php | 19 ------- Theme/Backend/Lang/Navigation.sv.lang.php | 19 ------- Theme/Backend/Lang/Navigation.th.lang.php | 19 ------- Theme/Backend/Lang/Navigation.tr.lang.php | 19 ------- Theme/Backend/Lang/Navigation.uk.lang.php | 19 ------- Theme/Backend/Lang/Navigation.zh.lang.php | 19 ------- Theme/Backend/Lang/de.lang.php | 2 +- Theme/Backend/Lang/en.lang.php | 2 +- Theme/Backend/dashboard-task.tpl.php | 2 +- Theme/Backend/task-analysis.tpl.php | 2 +- Theme/Backend/task-create.tpl.php | 2 +- Theme/Backend/task-dashboard.tpl.php | 2 +- Theme/Backend/task-list.tpl.php | 2 +- Theme/Backend/task-view.tpl.php | 2 +- Views/TaskView.php | 4 +- tests/Admin/AdminTest.php | 2 +- tests/Autoloader.php | 4 +- tests/Bootstrap.php | 2 +- tests/Controller/ApiControllerTest.php | 2 +- tests/Controller/BackendControllerTest.php | 2 +- tests/Controller/test.md | 2 +- tests/Models/AccountRelationTest.php | 2 +- tests/Models/GroupRelationTest.php | 2 +- tests/Models/NullAccountRelationTest.php | 2 +- tests/Models/NullGroupRelationTest.php | 2 +- tests/Models/NullTaskElementTest.php | 2 +- tests/Models/NullTaskSeenTest.php | 2 +- tests/Models/NullTaskTest.php | 2 +- tests/Models/RelationAbstractTest.php | 2 +- tests/Models/TaskElementTest.php | 2 +- tests/Models/TaskMapperTest.php | 2 +- tests/Models/TaskTest.php | 2 +- tests/Views/TaskViewTest.php | 2 +- 105 files changed, 134 insertions(+), 619 deletions(-) delete mode 100755 Docs/Help/de/SUMMARY.md delete mode 100755 Docs/Help/de/introduction.md delete mode 100755 Docs/Help/de/task.md delete mode 100755 Theme/Backend/Lang/Navigation.ar.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.cs.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.da.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.el.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.es.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.fi.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.fr.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.hu.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.it.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.ja.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.ko.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.no.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.pl.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.pt.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.ru.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.sv.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.th.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.tr.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.uk.lang.php delete mode 100755 Theme/Backend/Lang/Navigation.zh.lang.php diff --git a/Admin/Hooks/Web/Api.php b/Admin/Hooks/Web/Api.php index 0bf3609..26a87f2 100755 --- a/Admin/Hooks/Web/Api.php +++ b/Admin/Hooks/Web/Api.php @@ -6,7 +6,7 @@ * * @package Modules * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Admin/Install/Dashboard.php b/Admin/Install/Dashboard.php index d7b13f9..fda2c93 100755 --- a/Admin/Install/Dashboard.php +++ b/Admin/Install/Dashboard.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin\Install * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Dashboard class. * * @package Modules\Tasks\Admin\Install - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Install/Media.php b/Admin/Install/Media.php index ad73409..459c5e7 100755 --- a/Admin/Install/Media.php +++ b/Admin/Install/Media.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin\Install * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Media class. * * @package Modules\Tasks\Admin\Install - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index a35054d..dcb9913 100755 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin\Install * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Navigation class. * * @package Modules\Tasks\Admin\Install - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Install/Search.php b/Admin/Install/Search.php index ea23f09..b8443a8 100755 --- a/Admin/Install/Search.php +++ b/Admin/Install/Search.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin\Install * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Search class. * * @package Modules\Tasks\Admin\Install - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Install/SearchCommands.php b/Admin/Install/SearchCommands.php index 7e6ccc3..cdb99e6 100755 --- a/Admin/Install/SearchCommands.php +++ b/Admin/Install/SearchCommands.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Admin/Installer.php b/Admin/Installer.php index 1ff070b..18116cd 100755 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -25,7 +25,7 @@ * Installer class. * * @package Modules\Tasks\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Routes/Web/Api.php b/Admin/Routes/Web/Api.php index d7541ba..4e97e13 100755 --- a/Admin/Routes/Web/Api.php +++ b/Admin/Routes/Web/Api.php @@ -6,7 +6,7 @@ * * @package Modules * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Admin/Routes/Web/Backend.php b/Admin/Routes/Web/Backend.php index 3d2da1a..9e503c4 100755 --- a/Admin/Routes/Web/Backend.php +++ b/Admin/Routes/Web/Backend.php @@ -6,7 +6,7 @@ * * @package Modules * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Admin/Search.php b/Admin/Search.php index ea23f09..b8443a8 100644 --- a/Admin/Search.php +++ b/Admin/Search.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin\Install * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Search class. * * @package Modules\Tasks\Admin\Install - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Status.php b/Admin/Status.php index 3ceb3ca..59489ae 100755 --- a/Admin/Status.php +++ b/Admin/Status.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Status class. * * @package Modules\Tasks\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Uninstaller.php b/Admin/Uninstaller.php index 41a2ab1..f5e96b9 100755 --- a/Admin/Uninstaller.php +++ b/Admin/Uninstaller.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Uninstaller class. * * @package Modules\Tasks\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Updater.php b/Admin/Updater.php index 5b1ce57..cda44de 100755 --- a/Admin/Updater.php +++ b/Admin/Updater.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Updater class. * * @package Modules\Tasks\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Controller/ApiAttributeController.php b/Controller/ApiAttributeController.php index 1fe58fc..4d57ecb 100644 --- a/Controller/ApiAttributeController.php +++ b/Controller/ApiAttributeController.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -31,7 +31,7 @@ * Tasks class. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Controller/ApiController.php b/Controller/ApiController.php index 9f3023d..7c8eb5b 100755 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -42,7 +42,7 @@ * Api controller for the tasks module. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 89f02ad..674583e 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -43,7 +43,7 @@ * @property \Web\WebApplication $app * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Controller/Controller.php b/Controller/Controller.php index b22c3bf..b3cfa04 100755 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Task controller class. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Controller/SearchController.php b/Controller/SearchController.php index 8704551..9806b75 100755 --- a/Controller/SearchController.php +++ b/Controller/SearchController.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -24,7 +24,7 @@ * Search class. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Docs/Help/de/SUMMARY.md b/Docs/Help/de/SUMMARY.md deleted file mode 100755 index 980b86d..0000000 --- a/Docs/Help/de/SUMMARY.md +++ /dev/null @@ -1,3 +0,0 @@ -# User Content - -* [Task]({%}&page=Help/task) diff --git a/Docs/Help/de/introduction.md b/Docs/Help/de/introduction.md deleted file mode 100755 index fd218c4..0000000 --- a/Docs/Help/de/introduction.md +++ /dev/null @@ -1,51 +0,0 @@ -# Introduction - -The **Tasks** module can create tasks/todos, for other people and for oneself. - -## Target Group - -The target groups for this module is everyone who would like to keep track of todos and tasks or share the progress of a task with other people. This module is also a often used dependency by other modules. - -# Setup - -The module can be installed through the integrated module downloader and installer or by uploading the module into the `Modules/` directory and executing the installation through the module installer. - -The module is depending on the **Editor** module which provides most of the writing features. - -# Features - -## Due & Priority - -Tasks can get created with a due and priority - -## Sharing Tasks - -Tasks can be shared like emails. A task can be assigned to multiple people or groups. It's also possible to make tasks visible to other people and groups by referencing them in a task (cc.) so they can see how the task is progressing. Tasks can be forwarded to other people in case someone else is responsible for the task. - -## Analysis - -The integrated analysis tool allows to investigate how long it takes to finish tasks on average, how many certain people have to solve, how many they created for other people etc. - -## Markdown - -The module makes use of an extended markdown version for easy writing and modifications. - -### Extendability - -Modules can provide custom elements which allows them to provide elemnts that normal markdown doesn't support. Some modules that already provide custom elements for articles: - -* Media -* Charts -* Spreadsheets -* Calendar/Events -* Tasks -* Checklists -* Profiles/Contacts - -# Recommendation - -Other modules that work great with this one together are: - -* [Kanban](Kanban) -* [ProjectManagement](ProjectManagement) -* [EventManagement](EventManagement) \ No newline at end of file diff --git a/Docs/Help/de/task.md b/Docs/Help/de/task.md deleted file mode 100755 index c8f80e4..0000000 --- a/Docs/Help/de/task.md +++ /dev/null @@ -1,38 +0,0 @@ -# Task - -A task can be created by yourself, another user or by another module as part of a workflow. Tasks (or TODOs) are used to describe what needs to be done and with which priority they should be done. In some cases other modules can also create tasks for users as part of their purpose and workflow. - -## Priority & Due - -Tasks can have either a priority or a due date. Both are exclusive and cannot be used in combination. In some cases it can make more sense to give something a priority if no definitive due date is known/agreed upon and in some situations a fixed due date can be used. - -When sorting tasks the priorities are sorted according to the following criteria: - -* Very high = same as due in 1 day -* High = same as due in 1 week -* Medium = same as due in 2 weeks -* Low = same as due in 1 month -* Very low = due after 1 month - -## Visibility - -Tasks are visible to: - -* people/groups the task is assigned to -* people/groups mentioned in copy -* the person who created the task -* people/groups the task got forwarded to - -## Editable - -A task can be made editable or locked. In case a task is marked as locked, the task and created responses cannot be changed. This can be important for tasks which need to be auditable / non-changable (e.g. ISO system). A task which is defined as locked can never be made editable again, so please be careful when you choose to define a task as locked. By default tasks are editable. - -## Status - -The status of a task can be one of the following: - -* Open = default status -* Working = working on task -* Suspended = task is on hold -* Canceled = task got canceled/aborted -* Done = task is completed \ No newline at end of file diff --git a/Docs/Help/en/introduction.md b/Docs/Help/en/introduction.md index 89d197f..5b59852 100755 --- a/Docs/Help/en/introduction.md +++ b/Docs/Help/en/introduction.md @@ -4,14 +4,12 @@ The **Tasks** module can create tasks/todos, for other people and for oneself. ## Target Group -The target groups for this module is everyone who would like to keep track of todos and tasks or share the progress of a task with other people. This module is also a often used dependency by other modules. +The target groups for this module is everyone who would like to keep track of todos and tasks or share the progress of a task with other people. This module is also often used as dependency by other modules. # Setup The module can be installed through the integrated module downloader and installer or by uploading the module into the `Modules/` directory and executing the installation through the module installer. -The module is depending on the **Editor** module which provides most of the writing features. - # Features ## Due & Priority @@ -24,15 +22,7 @@ Tasks can be shared like emails. A task can be assigned to multiple people or gr ## Markdown -The module makes use of an extended markdown version for easy writing and modifications. - -### Extendability - -Modules can provide custom elements which allows them to provide elemnts that normal markdown doesn't support. Some modules that already provide custom elements for articles: - -* Media -* Charts -* Tasks +The module makes use of an extended markdown version for easy writing and modifications. A cheatsheet for markdown can be found in the [Editor]({/}?id=Editor&page=Help/cheatsheet) module ### Attributes diff --git a/LICENSE.txt b/LICENSE.txt index 02b1ff5..4974faf 100755 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,6 @@ The OMS License -Version 2.0 + +Version 2.2 1. Definitions @@ -15,7 +16,7 @@ Version 2.0 "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work. "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. @@ -25,7 +26,7 @@ Version 2.0 2. Grant of Copyright License -Subject to the terms and conditions of this License, each Contributor grants to You after purchase a perpetual, worldwide, non-exclusive, irrevocable copyright license to prepare Derivative Works of, publicly display, publicly perform the Work and such Derivative Works in Source or Object form. You are not allowed to sublicense, reproduce, or distribute the Work and such Derivative Works in Source or Object form. +Subject to the terms and conditions of this License, each Contributor grants to You after purchase a temporary, worldwide, non-exclusive copyright license to publicly display or publicly perform the Work in Source or Object form. You are not allowed to sublicense, reproduce, or distribute the Work and such Derivative Works in Source or Object form. 3. Redistribution @@ -46,7 +47,3 @@ Unless required by applicable law or agreed to in writing, Licensor provides the 7. Limitation of Liability In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -8. Future Changes - -The Licensor may change the License for future versions as he sees fit. diff --git a/Models/AccountRelation.php b/Models/AccountRelation.php index 7fcb896..c5c667e 100755 --- a/Models/AccountRelation.php +++ b/Models/AccountRelation.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task relation to account * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountRelationMapper.php b/Models/AccountRelationMapper.php index e15bf5c..ee3d54d 100755 --- a/Models/AccountRelationMapper.php +++ b/Models/AccountRelationMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * AccountRelation mapper class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Attribute/TaskAttributeMapper.php b/Models/Attribute/TaskAttributeMapper.php index 204c3ef..bc6086f 100644 --- a/Models/Attribute/TaskAttributeMapper.php +++ b/Models/Attribute/TaskAttributeMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models\Attribute * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task mapper class. * * @package Modules\Tasks\Models\Attribute - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Attribute/TaskAttributeTypeL11nMapper.php b/Models/Attribute/TaskAttributeTypeL11nMapper.php index 26742f1..b2d3e20 100644 --- a/Models/Attribute/TaskAttributeTypeL11nMapper.php +++ b/Models/Attribute/TaskAttributeTypeL11nMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models\Attribute * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task mapper class. * * @package Modules\Tasks\Models\Attribute - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Attribute/TaskAttributeTypeMapper.php b/Models/Attribute/TaskAttributeTypeMapper.php index d1bf22d..5dba932 100644 --- a/Models/Attribute/TaskAttributeTypeMapper.php +++ b/Models/Attribute/TaskAttributeTypeMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models\Attribute * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task mapper class. * * @package Modules\Tasks\Models\Attribute - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Attribute/TaskAttributeValueL11nMapper.php b/Models/Attribute/TaskAttributeValueL11nMapper.php index 6306b5f..d799d5a 100644 --- a/Models/Attribute/TaskAttributeValueL11nMapper.php +++ b/Models/Attribute/TaskAttributeValueL11nMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models\Attribute * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task mapper class. * * @package Modules\Tasks\Models\Attribute - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Attribute/TaskAttributeValueMapper.php b/Models/Attribute/TaskAttributeValueMapper.php index dddd792..d58b297 100644 --- a/Models/Attribute/TaskAttributeValueMapper.php +++ b/Models/Attribute/TaskAttributeValueMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models\Attribute * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task mapper class. * * @package Modules\Tasks\Models\Attribute - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/DutyType.php b/Models/DutyType.php index cfb90ed..615953b 100755 --- a/Models/DutyType.php +++ b/Models/DutyType.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Task forward type enum. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/GroupRelation.php b/Models/GroupRelation.php index dc0acf9..82dea46 100755 --- a/Models/GroupRelation.php +++ b/Models/GroupRelation.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task relation to group * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/GroupRelationMapper.php b/Models/GroupRelationMapper.php index 78aabf7..78b40e8 100755 --- a/Models/GroupRelationMapper.php +++ b/Models/GroupRelationMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * GroupRelation mapper class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/NullAccountRelation.php b/Models/NullAccountRelation.php index 85e4eb0..a9ec4f6 100644 --- a/Models/NullAccountRelation.php +++ b/Models/NullAccountRelation.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Null model * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullGroupRelation.php b/Models/NullGroupRelation.php index 929be7e..cf2e0d1 100644 --- a/Models/NullGroupRelation.php +++ b/Models/NullGroupRelation.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Null model * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullTask.php b/Models/NullTask.php index e1bc59b..e98439a 100755 --- a/Models/NullTask.php +++ b/Models/NullTask.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Null model * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullTaskElement.php b/Models/NullTaskElement.php index be8691b..1760717 100755 --- a/Models/NullTaskElement.php +++ b/Models/NullTaskElement.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Null model * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullTaskSeen.php b/Models/NullTaskSeen.php index 0a1062a..8f41107 100644 --- a/Models/NullTaskSeen.php +++ b/Models/NullTaskSeen.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Null model * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/PermissionCategory.php b/Models/PermissionCategory.php index 5fc49ad..a21bc14 100755 --- a/Models/PermissionCategory.php +++ b/Models/PermissionCategory.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Permission category enum. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/RelationAbstract.php b/Models/RelationAbstract.php index 5c10634..9b5f914 100755 --- a/Models/RelationAbstract.php +++ b/Models/RelationAbstract.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -21,7 +21,7 @@ * Task relation to accounts or groups * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/Task.php b/Models/Task.php index 1d7a218..360047b 100755 --- a/Models/Task.php +++ b/Models/Task.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -23,7 +23,7 @@ * Task class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskElement.php b/Models/TaskElement.php index 5399116..cef205f 100755 --- a/Models/TaskElement.php +++ b/Models/TaskElement.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -22,7 +22,7 @@ * Task element class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskElementMapper.php b/Models/TaskElementMapper.php index a0ac1bb..b4cded6 100755 --- a/Models/TaskElementMapper.php +++ b/Models/TaskElementMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -22,7 +22,7 @@ * TaskElement mapper class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/TaskMapper.php b/Models/TaskMapper.php index 307dfda..ae464f2 100755 --- a/Models/TaskMapper.php +++ b/Models/TaskMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -28,7 +28,7 @@ * Task mapper class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/TaskPriority.php b/Models/TaskPriority.php index d179da0..eeab7c8 100755 --- a/Models/TaskPriority.php +++ b/Models/TaskPriority.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Task priority enum. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskSeen.php b/Models/TaskSeen.php index 6675d0c..852e8f8 100755 --- a/Models/TaskSeen.php +++ b/Models/TaskSeen.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Null model * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskSeenMapper.php b/Models/TaskSeenMapper.php index a03d2e6..89150dd 100755 --- a/Models/TaskSeenMapper.php +++ b/Models/TaskSeenMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -24,7 +24,7 @@ * a task. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/TaskStatus.php b/Models/TaskStatus.php index 60870fe..8452a13 100755 --- a/Models/TaskStatus.php +++ b/Models/TaskStatus.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Task status enum. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskTemplate.php b/Models/TaskTemplate.php index 4fbf9c2..c31c815 100755 --- a/Models/TaskTemplate.php +++ b/Models/TaskTemplate.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Task template class. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskType.php b/Models/TaskType.php index 1c31878..79ab5e5 100755 --- a/Models/TaskType.php +++ b/Models/TaskType.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Task type enum. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/TaskVisibility.php b/Models/TaskVisibility.php index 64449b6..5577a28 100755 --- a/Models/TaskVisibility.php +++ b/Models/TaskVisibility.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\Models * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Task visibility enum. * * @package Modules\Tasks\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/README.md b/README.md index 51f9ea4..24751e7 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ With Karaka you have one partner who can provide many tools and software solutio ## Requirements -* PHP 8.2 -* PHP extension: php8.2-dev php8.2-cli php8.2-common php8.2-intl php8.2-mysql php8.2-pgsql php8.2-xdebug php8.2-opcache php8.2-pdo php8.2-sqlite php8.2-mbstring php8.2-curl php8.2-imap php8.2-bcmath php8.2-zip php8.2-dom php8.2-xml php8.2-phar php8.2-gd php-pear +* PHP 8.3 +* PHP extension: php8.3-dev php8.3-cli php8.3-common php8.3-intl php8.3-mysql php8.3-pgsql php8.3-xdebug php8.3-opcache php8.3-pdo php8.3-sqlite php8.3-mbstring php8.3-curl php8.3-imap php8.3-bcmath php8.3-zip php8.3-dom php8.3-xml php8.3-phar php8.3-gd php-pear * apache2 (recommended) or nginx * mysql-server (recommended) or postgresql postgresql-contrib * Tools: tesseract-ocr, pdftotext, pdftoppm diff --git a/Theme/Backend/Components/Tasks/ListView.php b/Theme/Backend/Components/Tasks/ListView.php index 573c878..95534f8 100755 --- a/Theme/Backend/Components/Tasks/ListView.php +++ b/Theme/Backend/Components/Tasks/ListView.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -23,7 +23,7 @@ * Component view. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * @codeCoverageIgnore diff --git a/Theme/Backend/Components/Tasks/PriorityView.php b/Theme/Backend/Components/Tasks/PriorityView.php index 717c973..ffdd23a 100755 --- a/Theme/Backend/Components/Tasks/PriorityView.php +++ b/Theme/Backend/Components/Tasks/PriorityView.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Component view. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * @codeCoverageIgnore diff --git a/Theme/Backend/Components/Tasks/StatusView.php b/Theme/Backend/Components/Tasks/StatusView.php index c8ab553..8a7335d 100755 --- a/Theme/Backend/Components/Tasks/StatusView.php +++ b/Theme/Backend/Components/Tasks/StatusView.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -18,7 +18,7 @@ * Component view. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * @codeCoverageIgnore diff --git a/Theme/Backend/Components/Tasks/list.tpl.php b/Theme/Backend/Components/Tasks/list.tpl.php index 18ef016..a23e922 100755 --- a/Theme/Backend/Components/Tasks/list.tpl.php +++ b/Theme/Backend/Components/Tasks/list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/Lang/Navigation.ar.lang.php b/Theme/Backend/Lang/Navigation.ar.lang.php deleted file mode 100755 index 758ca4e..0000000 --- a/Theme/Backend/Lang/Navigation.ar.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'التحليلات', - 'Create' => 'يخلق', - 'Tasks' => 'مهام', -]]; diff --git a/Theme/Backend/Lang/Navigation.cs.lang.php b/Theme/Backend/Lang/Navigation.cs.lang.php deleted file mode 100755 index 9bf50dd..0000000 --- a/Theme/Backend/Lang/Navigation.cs.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analýza', - 'Create' => 'Vytvořit', - 'Tasks' => 'Úkoly', -]]; diff --git a/Theme/Backend/Lang/Navigation.da.lang.php b/Theme/Backend/Lang/Navigation.da.lang.php deleted file mode 100755 index e96063e..0000000 --- a/Theme/Backend/Lang/Navigation.da.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analyse', - 'Create' => 'skab', - 'Tasks' => 'Opgaver.', -]]; diff --git a/Theme/Backend/Lang/Navigation.de.lang.php b/Theme/Backend/Lang/Navigation.de.lang.php index 295825a..997be3d 100755 --- a/Theme/Backend/Lang/Navigation.de.lang.php +++ b/Theme/Backend/Lang/Navigation.de.lang.php @@ -6,7 +6,7 @@ * * @package Modules\Localization * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/Lang/Navigation.el.lang.php b/Theme/Backend/Lang/Navigation.el.lang.php deleted file mode 100755 index 11c807a..0000000 --- a/Theme/Backend/Lang/Navigation.el.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Ανάλυση', - 'Create' => 'Δημιουργώ', - 'Tasks' => 'Καθήκοντα', -]]; diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index 6813a98..b1b1ee0 100755 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -6,7 +6,7 @@ * * @package Modules\Localization * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/Lang/Navigation.es.lang.php b/Theme/Backend/Lang/Navigation.es.lang.php deleted file mode 100755 index 4251f24..0000000 --- a/Theme/Backend/Lang/Navigation.es.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Análisis', - 'Create' => 'Crear', - 'Tasks' => 'Tareas', -]]; diff --git a/Theme/Backend/Lang/Navigation.fi.lang.php b/Theme/Backend/Lang/Navigation.fi.lang.php deleted file mode 100755 index becaf23..0000000 --- a/Theme/Backend/Lang/Navigation.fi.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analyysi', - 'Create' => 'Luoda', - 'Tasks' => 'Tehtävät', -]]; diff --git a/Theme/Backend/Lang/Navigation.fr.lang.php b/Theme/Backend/Lang/Navigation.fr.lang.php deleted file mode 100755 index e56e49f..0000000 --- a/Theme/Backend/Lang/Navigation.fr.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analyse', - 'Create' => 'Créer', - 'Tasks' => 'Tâches', -]]; diff --git a/Theme/Backend/Lang/Navigation.hu.lang.php b/Theme/Backend/Lang/Navigation.hu.lang.php deleted file mode 100755 index b3cf42a..0000000 --- a/Theme/Backend/Lang/Navigation.hu.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Elemzés', - 'Create' => 'Teremt', - 'Tasks' => 'Feladatok', -]]; diff --git a/Theme/Backend/Lang/Navigation.it.lang.php b/Theme/Backend/Lang/Navigation.it.lang.php deleted file mode 100755 index aa39170..0000000 --- a/Theme/Backend/Lang/Navigation.it.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analisi', - 'Create' => 'Creare', - 'Tasks' => 'Compiti', -]]; diff --git a/Theme/Backend/Lang/Navigation.ja.lang.php b/Theme/Backend/Lang/Navigation.ja.lang.php deleted file mode 100755 index fbc1130..0000000 --- a/Theme/Backend/Lang/Navigation.ja.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => '分析', - 'Create' => '作成', - 'Tasks' => 'タスク', -]]; diff --git a/Theme/Backend/Lang/Navigation.ko.lang.php b/Theme/Backend/Lang/Navigation.ko.lang.php deleted file mode 100755 index f389a29..0000000 --- a/Theme/Backend/Lang/Navigation.ko.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => '분석', - 'Create' => '만들다', - 'Tasks' => '작업', -]]; diff --git a/Theme/Backend/Lang/Navigation.no.lang.php b/Theme/Backend/Lang/Navigation.no.lang.php deleted file mode 100755 index a1f7096..0000000 --- a/Theme/Backend/Lang/Navigation.no.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analyse', - 'Create' => 'Skape', - 'Tasks' => 'Oppgaver', -]]; diff --git a/Theme/Backend/Lang/Navigation.pl.lang.php b/Theme/Backend/Lang/Navigation.pl.lang.php deleted file mode 100755 index 254592a..0000000 --- a/Theme/Backend/Lang/Navigation.pl.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analiza', - 'Create' => 'Tworzyć', - 'Tasks' => 'Zadania', -]]; diff --git a/Theme/Backend/Lang/Navigation.pt.lang.php b/Theme/Backend/Lang/Navigation.pt.lang.php deleted file mode 100755 index cef3aae..0000000 --- a/Theme/Backend/Lang/Navigation.pt.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Análise', - 'Create' => 'Crio', - 'Tasks' => 'Tarefas', -]]; diff --git a/Theme/Backend/Lang/Navigation.ru.lang.php b/Theme/Backend/Lang/Navigation.ru.lang.php deleted file mode 100755 index 1906226..0000000 --- a/Theme/Backend/Lang/Navigation.ru.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Анализ', - 'Create' => 'Создавать', - 'Tasks' => 'Задания', -]]; diff --git a/Theme/Backend/Lang/Navigation.sv.lang.php b/Theme/Backend/Lang/Navigation.sv.lang.php deleted file mode 100755 index 91905a9..0000000 --- a/Theme/Backend/Lang/Navigation.sv.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analys', - 'Create' => 'Skapa', - 'Tasks' => 'Uppdrag', -]]; diff --git a/Theme/Backend/Lang/Navigation.th.lang.php b/Theme/Backend/Lang/Navigation.th.lang.php deleted file mode 100755 index 731269a..0000000 --- a/Theme/Backend/Lang/Navigation.th.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'การวิเคราะห์', - 'Create' => 'สร้าง', - 'Tasks' => 'ภารกิจ', -]]; diff --git a/Theme/Backend/Lang/Navigation.tr.lang.php b/Theme/Backend/Lang/Navigation.tr.lang.php deleted file mode 100755 index 0b8834a..0000000 --- a/Theme/Backend/Lang/Navigation.tr.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Analiz', - 'Create' => 'Yaratmak', - 'Tasks' => 'Görevler', -]]; diff --git a/Theme/Backend/Lang/Navigation.uk.lang.php b/Theme/Backend/Lang/Navigation.uk.lang.php deleted file mode 100755 index 2139047..0000000 --- a/Theme/Backend/Lang/Navigation.uk.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => 'Аналіз', - 'Create' => 'Створювати', - 'Tasks' => 'Завдань', -]]; diff --git a/Theme/Backend/Lang/Navigation.zh.lang.php b/Theme/Backend/Lang/Navigation.zh.lang.php deleted file mode 100755 index beb9e57..0000000 --- a/Theme/Backend/Lang/Navigation.zh.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Analysis' => '分析', - 'Create' => '创建', - 'Tasks' => '任务', -]]; diff --git a/Theme/Backend/Lang/de.lang.php b/Theme/Backend/Lang/de.lang.php index 1855b64..caa9261 100755 --- a/Theme/Backend/Lang/de.lang.php +++ b/Theme/Backend/Lang/de.lang.php @@ -6,7 +6,7 @@ * * @package Modules\Localization * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 1c1fab9..edc87eb 100755 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -6,7 +6,7 @@ * * @package Modules\Localization * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/dashboard-task.tpl.php b/Theme/Backend/dashboard-task.tpl.php index 541076f..28366d9 100755 --- a/Theme/Backend/dashboard-task.tpl.php +++ b/Theme/Backend/dashboard-task.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/task-analysis.tpl.php b/Theme/Backend/task-analysis.tpl.php index aa5b81d..7eae71e 100755 --- a/Theme/Backend/task-analysis.tpl.php +++ b/Theme/Backend/task-analysis.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/task-create.tpl.php b/Theme/Backend/task-create.tpl.php index 96b5c74..e9ad094 100755 --- a/Theme/Backend/task-create.tpl.php +++ b/Theme/Backend/task-create.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/task-dashboard.tpl.php b/Theme/Backend/task-dashboard.tpl.php index 22650d8..5659fc5 100755 --- a/Theme/Backend/task-dashboard.tpl.php +++ b/Theme/Backend/task-dashboard.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/task-list.tpl.php b/Theme/Backend/task-list.tpl.php index 0cd0762..6c27b5a 100644 --- a/Theme/Backend/task-list.tpl.php +++ b/Theme/Backend/task-list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Theme/Backend/task-view.tpl.php b/Theme/Backend/task-view.tpl.php index 46adf7c..08c363c 100644 --- a/Theme/Backend/task-view.tpl.php +++ b/Theme/Backend/task-view.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/Views/TaskView.php b/Views/TaskView.php index 20b1e01..0afec3b 100755 --- a/Views/TaskView.php +++ b/Views/TaskView.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -28,7 +28,7 @@ * Task view class. * * @package Modules\Tasks - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/tests/Admin/AdminTest.php b/tests/Admin/AdminTest.php index 6cae82f..b5dcfd0 100755 --- a/tests/Admin/AdminTest.php +++ b/tests/Admin/AdminTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Autoloader.php b/tests/Autoloader.php index d2edd7a..74ca92e 100755 --- a/tests/Autoloader.php +++ b/tests/Autoloader.php @@ -6,7 +6,7 @@ * * @package Modules/tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -20,7 +20,7 @@ * Autoloader class. * * @package tests - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index 2d90ddb..013426e 100755 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -6,7 +6,7 @@ * * @package Modules\Tasks\tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Controller/ApiControllerTest.php b/tests/Controller/ApiControllerTest.php index 7b71b1d..42c5b37 100755 --- a/tests/Controller/ApiControllerTest.php +++ b/tests/Controller/ApiControllerTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Controller/BackendControllerTest.php b/tests/Controller/BackendControllerTest.php index 61433fb..3cee5a5 100755 --- a/tests/Controller/BackendControllerTest.php +++ b/tests/Controller/BackendControllerTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Controller/test.md b/tests/Controller/test.md index c08ecfc..8162ff3 100755 --- a/tests/Controller/test.md +++ b/tests/Controller/test.md @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/AccountRelationTest.php b/tests/Models/AccountRelationTest.php index 0b8798d..0229e8c 100755 --- a/tests/Models/AccountRelationTest.php +++ b/tests/Models/AccountRelationTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/GroupRelationTest.php b/tests/Models/GroupRelationTest.php index a601f41..a2a156e 100755 --- a/tests/Models/GroupRelationTest.php +++ b/tests/Models/GroupRelationTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/NullAccountRelationTest.php b/tests/Models/NullAccountRelationTest.php index b905c32..39e6933 100644 --- a/tests/Models/NullAccountRelationTest.php +++ b/tests/Models/NullAccountRelationTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/NullGroupRelationTest.php b/tests/Models/NullGroupRelationTest.php index 35f2803..60ef7f3 100644 --- a/tests/Models/NullGroupRelationTest.php +++ b/tests/Models/NullGroupRelationTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/NullTaskElementTest.php b/tests/Models/NullTaskElementTest.php index aa76a72..1eb37ad 100755 --- a/tests/Models/NullTaskElementTest.php +++ b/tests/Models/NullTaskElementTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/NullTaskSeenTest.php b/tests/Models/NullTaskSeenTest.php index 49790d2..5dc11a9 100644 --- a/tests/Models/NullTaskSeenTest.php +++ b/tests/Models/NullTaskSeenTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/NullTaskTest.php b/tests/Models/NullTaskTest.php index ec8c139..3bdca56 100755 --- a/tests/Models/NullTaskTest.php +++ b/tests/Models/NullTaskTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/RelationAbstractTest.php b/tests/Models/RelationAbstractTest.php index 35fed19..0b365b7 100755 --- a/tests/Models/RelationAbstractTest.php +++ b/tests/Models/RelationAbstractTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/TaskElementTest.php b/tests/Models/TaskElementTest.php index 505464e..572ceab 100755 --- a/tests/Models/TaskElementTest.php +++ b/tests/Models/TaskElementTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/TaskMapperTest.php b/tests/Models/TaskMapperTest.php index 476ef0f..0bb756c 100755 --- a/tests/Models/TaskMapperTest.php +++ b/tests/Models/TaskMapperTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Models/TaskTest.php b/tests/Models/TaskTest.php index 96952ef..ba60539 100755 --- a/tests/Models/TaskTest.php +++ b/tests/Models/TaskTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ diff --git a/tests/Views/TaskViewTest.php b/tests/Views/TaskViewTest.php index 5f3a6b7..bbb253f 100755 --- a/tests/Views/TaskViewTest.php +++ b/tests/Views/TaskViewTest.php @@ -6,7 +6,7 @@ * * @package tests * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */