From baaf2422b1090f17a22fcb666d36f77081d34f1d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 21 May 2024 00:09:05 +0200 Subject: [PATCH] fix version and bugs --- Admin/Hooks/Cli.php | 2 +- Admin/Hooks/Web/Api.php | 2 +- Admin/Install/Media.php | 4 +- .../spreadsheetTemplate.xls.php | 2 +- .../PdfDefaultTemplate/pdfTemplate.pdf.php | 4 +- .../WordDefaultTemplate/docTemplate.doc.php | 4 +- .../defaultWordExporter.doc.php | 2 +- Admin/Install/Messages.php | 4 +- Admin/Install/Navigation.php | 4 +- Admin/Install/settings.php | 2 +- Admin/InstallType.php | 4 +- Admin/Installer.php | 4 +- Admin/Routes/Web/Api.php | 2 +- Admin/Routes/Web/Backend.php | 2 +- Admin/Settings/Theme/Backend/settings.tpl.php | 2 +- Admin/Status.php | 4 +- Admin/Uninstaller.php | 4 +- Admin/Updater.php | 4 +- Controller/ApiController.php | 4 +- Controller/BackendController.php | 4 +- Controller/CliController.php | 4 +- Controller/Controller.php | 4 +- LICENSE.txt | 11 ++--- Models/Account.php | 4 +- Models/AccountCredentialMapper.php | 4 +- Models/AccountExternal.php | 4 +- Models/AccountExternalMapper.php | 4 +- Models/AccountExternalStatus.php | 4 +- Models/AccountExternalSubtype.php | 4 +- Models/AccountExternalType.php | 4 +- Models/AccountMapper.php | 4 +- Models/AccountPermission.php | 4 +- Models/AccountPermissionMapper.php | 4 +- Models/AddressMapper.php | 4 +- Models/ApiKey.php | 6 +-- Models/ApiKeyMapper.php | 4 +- Models/App.php | 4 +- Models/AppMapper.php | 4 +- Models/Contact.php | 4 +- Models/ContactMapper.php | 4 +- Models/ContactType.php | 4 +- Models/DataChange.php | 4 +- Models/DataChangeMapper.php | 4 +- Models/Group.php | 4 +- Models/GroupMapper.php | 4 +- Models/GroupPermission.php | 4 +- Models/GroupPermissionMapper.php | 4 +- Models/LocalizationMapper.php | 4 +- Models/Module.php | 4 +- Models/ModuleMapper.php | 4 +- Models/ModuleStatusUpdateType.php | 4 +- Models/NullAccount.php | 4 +- Models/NullAccountExternal.php | 4 +- Models/NullAccountPermission.php | 4 +- Models/NullApiKey.php | 47 +++++++++++++++++++ Models/NullApp.php | 4 +- Models/NullContact.php | 4 +- Models/NullDataChange.php | 4 +- Models/NullGroup.php | 4 +- Models/NullGroupPermission.php | 4 +- Models/NullModule.php | 4 +- Models/PermissionAbstractMapper.php | 4 +- Models/PermissionCategory.php | 4 +- Models/PermissionQueryBuilder.php | 4 +- Models/SettingsEnum.php | 4 +- README.md | 4 +- Theme/Api/Lang/de.lang.php | 2 +- Theme/Api/Lang/en.lang.php | 2 +- .../AccountPermissionSelector/BaseView.php | 4 +- .../account-permission-selector.tpl.php | 2 +- .../Components/AddressEditor/AddressView.php | 4 +- .../AddressEditor/addresses.tpl.php | 2 +- .../Components/ContactEditor/ContactView.php | 4 +- .../Components/ContactEditor/contacts.tpl.php | 2 +- .../GroupTagSelectorPopupView.php | 4 +- .../GroupTagSelector/GroupTagSelectorView.php | 4 +- Theme/Backend/Lang/Navigation.de.lang.php | 2 +- Theme/Backend/Lang/Navigation.en.lang.php | 2 +- Theme/Backend/Lang/de.lang.php | 2 +- Theme/Backend/Lang/en.lang.php | 2 +- Theme/Backend/accounts-create.tpl.php | 2 +- Theme/Backend/accounts-list.tpl.php | 2 +- Theme/Backend/accounts-view.tpl.php | 2 +- Theme/Backend/groups-create.tpl.php | 2 +- Theme/Backend/groups-list.tpl.php | 2 +- Theme/Backend/groups-view.tpl.php | 2 +- Theme/Backend/modules-hook-list.tpl.php | 2 +- Theme/Backend/modules-info.tpl.php | 2 +- Theme/Backend/modules-list.tpl.php | 2 +- Theme/Backend/modules-log.tpl.php | 2 +- Theme/Backend/modules-route-list.tpl.php | 2 +- Theme/Backend/modules-settings.tpl.php | 2 +- tests/Admin/AdminTest.php | 2 +- tests/Autoloader.php | 4 +- tests/Bootstrap.php | 2 +- .../Api/ApiControllerAccountTrait.php | 2 +- .../Api/ApiControllerApplicationTrait.php | 2 +- .../Api/ApiControllerGroupTrait.php | 2 +- .../Api/ApiControllerModuleTrait.php | 2 +- .../Api/ApiControllerPermissionTrait.php | 2 +- .../Api/ApiControllerSettingsTrait.php | 2 +- tests/Controller/ApiControllerTest.php | 2 +- tests/Helper.php | 2 +- tests/Models/AccountMapperTest.php | 2 +- tests/Models/AccountPermissionTest.php | 2 +- tests/Models/AccountTest.php | 2 +- tests/Models/AddressMapperTest.php | 2 +- tests/Models/AppMapperTest.php | 2 +- tests/Models/AppTest.php | 2 +- tests/Models/DataChangeTest.php | 2 +- tests/Models/GroupMapperTest.php | 2 +- tests/Models/GroupPermissionTest.php | 2 +- tests/Models/GroupTest.php | 2 +- tests/Models/LocalizationMapperTest.php | 2 +- tests/Models/ModuleTest.php | 2 +- tests/Models/NullAccountExternalTest.php | 2 +- tests/Models/NullAccountPermissionTest.php | 2 +- tests/Models/NullAccountTest.php | 2 +- tests/Models/NullAppTest.php | 2 +- tests/Models/NullDataChangeTest.php | 2 +- tests/Models/NullGroupPermissionTest.php | 2 +- tests/Models/NullGroupTest.php | 2 +- tests/Models/NullModuleTest.php | 2 +- 123 files changed, 235 insertions(+), 191 deletions(-) create mode 100644 Models/NullApiKey.php diff --git a/Admin/Hooks/Cli.php b/Admin/Hooks/Cli.php index 844687e..5c97c25 100644 --- a/Admin/Hooks/Cli.php +++ b/Admin/Hooks/Cli.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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/Hooks/Web/Api.php b/Admin/Hooks/Web/Api.php index f96d97a..2afcdb7 100755 --- a/Admin/Hooks/Web/Api.php +++ b/Admin/Hooks/Web/Api.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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/Media.php b/Admin/Install/Media.php index 87a3930..a601a0a 100755 --- a/Admin/Install/Media.php +++ b/Admin/Install/Media.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Admin\Install * @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 @@ use phpOMS\Application\ApplicationAbstract; * Media class. * * @package Modules\Admin\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/ExcelDefaultTemplate/spreadsheetTemplate.xls.php b/Admin/Install/Media/ExcelDefaultTemplate/spreadsheetTemplate.xls.php index c4622ed..22da312 100755 --- a/Admin/Install/Media/ExcelDefaultTemplate/spreadsheetTemplate.xls.php +++ b/Admin/Install/Media/ExcelDefaultTemplate/spreadsheetTemplate.xls.php @@ -6,7 +6,7 @@ * * @package Modules\Media * @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/Media/PdfDefaultTemplate/pdfTemplate.pdf.php b/Admin/Install/Media/PdfDefaultTemplate/pdfTemplate.pdf.php index 0cfa14e..bcb5dd8 100755 --- a/Admin/Install/Media/PdfDefaultTemplate/pdfTemplate.pdf.php +++ b/Admin/Install/Media/PdfDefaultTemplate/pdfTemplate.pdf.php @@ -6,7 +6,7 @@ * * @package Modules\Media * @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 @@ declare(strict_types=1); * The TCPDF class must be included previously in the parent code. * * @package Modules\Media - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Admin/Install/Media/WordDefaultTemplate/docTemplate.doc.php b/Admin/Install/Media/WordDefaultTemplate/docTemplate.doc.php index aaede0b..b5317fc 100755 --- a/Admin/Install/Media/WordDefaultTemplate/docTemplate.doc.php +++ b/Admin/Install/Media/WordDefaultTemplate/docTemplate.doc.php @@ -6,7 +6,7 @@ * * @package Modules\Media * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -16,7 +16,7 @@ declare(strict_types=1); * Default Word class. * * @package Modules\Media - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Install/Media/WordPlainTemplate/defaultWordExporter.doc.php b/Admin/Install/Media/WordPlainTemplate/defaultWordExporter.doc.php index 868a9c0..12d57a2 100755 --- a/Admin/Install/Media/WordPlainTemplate/defaultWordExporter.doc.php +++ b/Admin/Install/Media/WordPlainTemplate/defaultWordExporter.doc.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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/Messages.php b/Admin/Install/Messages.php index 30491f2..7c00dc8 100755 --- a/Admin/Install/Messages.php +++ b/Admin/Install/Messages.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Admin\Install * @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 @@ use phpOMS\Message\Http\HttpResponse; * Media class. * * @package Modules\Admin\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 a7a9492..c03f7ac 100755 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Application\ApplicationAbstract; * Navigation class. * * @package Modules\Admin\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/settings.php b/Admin/Install/settings.php index 6b98772..aeb20c2 100755 --- a/Admin/Install/settings.php +++ b/Admin/Install/settings.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Admin\Install * @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/InstallType.php b/Admin/InstallType.php index a839651..547d830 100755 --- a/Admin/InstallType.php +++ b/Admin/InstallType.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Install type enum. * * @package Modules\Admin\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Admin/Installer.php b/Admin/Installer.php index 1d269e5..d90110b 100755 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -36,7 +36,7 @@ use phpOMS\System\SystemType; * Installer class. * * @package Modules\Admin\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 df42460..d097323 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 108a6ae..a4560c9 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/Settings/Theme/Backend/settings.tpl.php b/Admin/Settings/Theme/Backend/settings.tpl.php index 10dd6bf..96e8be3 100755 --- a/Admin/Settings/Theme/Backend/settings.tpl.php +++ b/Admin/Settings/Theme/Backend/settings.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Models * @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/Status.php b/Admin/Status.php index 8b0e539..dfc1ac2 100755 --- a/Admin/Status.php +++ b/Admin/Status.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Module\StatusAbstract; * Activate class. * * @package Modules\Admin\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 09404fd..0feea26 100755 --- a/Admin/Uninstaller.php +++ b/Admin/Uninstaller.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Module\UninstallerAbstract; * Uninstall class. * * @package Modules\Admin\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 ead9d97..60085c6 100755 --- a/Admin/Updater.php +++ b/Admin/Updater.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Admin * @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 @@ use phpOMS\System\File\Local\Directory; * Update class. * * @package Modules\Admin\Admin - * @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 f6d5b80..e24229a 100755 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -94,7 +94,7 @@ use phpOMS\Validation\Network\Email as EmailValidator; * This class is responsible for the basic admin activities such as managing accounts, groups, permissions and modules. * * @package Modules\Admin - * @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 5284fe7..f575ba5 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use Web\Backend\Views\TableView; * This class is responsible for the basic admin activities such as managing accounts, groups, permissions and modules. * * @package Modules\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * @codeCoverageIgnore diff --git a/Controller/CliController.php b/Controller/CliController.php index 267cc12..b9e52af 100755 --- a/Controller/CliController.php +++ b/Controller/CliController.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @copyright Dennis Eichhorn - * @license OMS License 2.0 + * @license OMS License 2.2 * @version 1.0.0 * @link https://jingga.app */ @@ -29,7 +29,7 @@ use phpOMS\Views\View; * This class is responsible for the basic admin activities such as managing accounts, groups, permissions and modules. * * @package Modules\Admin - * @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 00fb0a4..b80f71c 100755 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use phpOMS\Module\ModuleAbstract; * This class is responsible for the basic admin activities such as managing accounts, groups, permissions and modules. * * @package Modules\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ 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/Account.php b/Models/Account.php index 9741344..c540e0d 100755 --- a/Models/Account.php +++ b/Models/Account.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Account class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountCredentialMapper.php b/Models/AccountCredentialMapper.php index 4ede9c1..08a3ce0 100755 --- a/Models/AccountCredentialMapper.php +++ b/Models/AccountCredentialMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Account mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/AccountExternal.php b/Models/AccountExternal.php index ea69b58..e6def65 100755 --- a/Models/AccountExternal.php +++ b/Models/AccountExternal.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Account external class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountExternalMapper.php b/Models/AccountExternalMapper.php index 9f52976..467887a 100755 --- a/Models/AccountExternalMapper.php +++ b/Models/AccountExternalMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Account mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/AccountExternalStatus.php b/Models/AccountExternalStatus.php index cc8332c..3c368d4 100755 --- a/Models/AccountExternalStatus.php +++ b/Models/AccountExternalStatus.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Status for external references * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountExternalSubtype.php b/Models/AccountExternalSubtype.php index 44af46e..ca495cc 100755 --- a/Models/AccountExternalSubtype.php +++ b/Models/AccountExternalSubtype.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Type for external references * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountExternalType.php b/Models/AccountExternalType.php index 4d77e81..2a0aa71 100755 --- a/Models/AccountExternalType.php +++ b/Models/AccountExternalType.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Type for external references * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountMapper.php b/Models/AccountMapper.php index c40fe70..478e3b2 100755 --- a/Models/AccountMapper.php +++ b/Models/AccountMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Query\Builder; * Account mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/AccountPermission.php b/Models/AccountPermission.php index 9cb17c5..6991052 100755 --- a/Models/AccountPermission.php +++ b/Models/AccountPermission.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Account\PermissionType; * A single permission for an account consisting of read, create, modify, delete and permission flags. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AccountPermissionMapper.php b/Models/AccountPermissionMapper.php index e8f47b4..1121e70 100755 --- a/Models/AccountPermissionMapper.php +++ b/Models/AccountPermissionMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Account permission mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/AddressMapper.php b/Models/AddressMapper.php index 593ecf0..df32ee9 100755 --- a/Models/AddressMapper.php +++ b/Models/AddressMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Address; * Address mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/ApiKey.php b/Models/ApiKey.php index 2f198e8..5e07578 100755 --- a/Models/ApiKey.php +++ b/Models/ApiKey.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Account\AccountStatus; * Api key class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ @@ -73,7 +73,7 @@ class ApiKey */ public function __construct() { - $this->key = \random_bytes(128); + $this->key = \bin2hex(\random_bytes(32)); $this->createdAt = new \DateTimeImmutable('now'); } } diff --git a/Models/ApiKeyMapper.php b/Models/ApiKeyMapper.php index b22579d..3572e6a 100755 --- a/Models/ApiKeyMapper.php +++ b/Models/ApiKeyMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Query\Builder; * Account mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/App.php b/Models/App.php index 8b71151..8ea631a 100755 --- a/Models/App.php +++ b/Models/App.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Application\ApplicationType; * App model. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/AppMapper.php b/Models/AppMapper.php index 0b1097d..ddbac47 100755 --- a/Models/AppMapper.php +++ b/Models/AppMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Account mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Contact.php b/Models/Contact.php index 1885fe8..d3fc788 100755 --- a/Models/Contact.php +++ b/Models/Contact.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Information such as phone number, email, ... * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/ContactMapper.php b/Models/ContactMapper.php index ae495b8..2f3b83c 100755 --- a/Models/ContactMapper.php +++ b/Models/ContactMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Contact mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/ContactType.php b/Models/ContactType.php index 4500b7c..3185c95 100755 --- a/Models/ContactType.php +++ b/Models/ContactType.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Contact type enum. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/DataChange.php b/Models/DataChange.php index eaccbfd..c2db6d9 100755 --- a/Models/DataChange.php +++ b/Models/DataChange.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Data change model. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/DataChangeMapper.php b/Models/DataChangeMapper.php index 0bc747f..e48f875 100755 --- a/Models/DataChangeMapper.php +++ b/Models/DataChangeMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Account mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Group.php b/Models/Group.php index 1482938..e78571c 100755 --- a/Models/Group.php +++ b/Models/Group.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Account group class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/GroupMapper.php b/Models/GroupMapper.php index 71c4f84..9815c8a 100755 --- a/Models/GroupMapper.php +++ b/Models/GroupMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Query\Builder; * Group mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/GroupPermission.php b/Models/GroupPermission.php index 631bc7c..12296e7 100755 --- a/Models/GroupPermission.php +++ b/Models/GroupPermission.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Account\PermissionType; * A single permission for a group consisting of read, create, modify, delete and permission flags. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/GroupPermissionMapper.php b/Models/GroupPermissionMapper.php index 54c5430..6d4b75c 100755 --- a/Models/GroupPermissionMapper.php +++ b/Models/GroupPermissionMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Group permission mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/LocalizationMapper.php b/Models/LocalizationMapper.php index 98fccd1..ceee5c3 100755 --- a/Models/LocalizationMapper.php +++ b/Models/LocalizationMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Localization\Localization; * Localization mapper. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/Module.php b/Models/Module.php index 606abf0..9de0f32 100755 --- a/Models/Module.php +++ b/Models/Module.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Module\ModuleStatus; * Module class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/ModuleMapper.php b/Models/ModuleMapper.php index 7efb415..4104219 100755 --- a/Models/ModuleMapper.php +++ b/Models/ModuleMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Module mapper class. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * diff --git a/Models/ModuleStatusUpdateType.php b/Models/ModuleStatusUpdateType.php index 9b785e7..c455b19 100755 --- a/Models/ModuleStatusUpdateType.php +++ b/Models/ModuleStatusUpdateType.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Permission category enum. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullAccount.php b/Models/NullAccount.php index ae2981e..ccf9ef2 100755 --- a/Models/NullAccount.php +++ b/Models/NullAccount.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullAccountExternal.php b/Models/NullAccountExternal.php index 398bd15..559f2c7 100755 --- a/Models/NullAccountExternal.php +++ b/Models/NullAccountExternal.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullAccountPermission.php b/Models/NullAccountPermission.php index 48002e4..053625e 100755 --- a/Models/NullAccountPermission.php +++ b/Models/NullAccountPermission.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullApiKey.php b/Models/NullApiKey.php new file mode 100644 index 0000000..972feb1 --- /dev/null +++ b/Models/NullApiKey.php @@ -0,0 +1,47 @@ +id = $id; + parent::__construct(); + } + + /** + * {@inheritdoc} + */ + public function jsonSerialize() : mixed + { + return ['id' => $this->id]; + } +} diff --git a/Models/NullApp.php b/Models/NullApp.php index 2a83932..1ba0bdc 100755 --- a/Models/NullApp.php +++ b/Models/NullApp.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullContact.php b/Models/NullContact.php index f0a4347..ca38762 100644 --- a/Models/NullContact.php +++ b/Models/NullContact.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullDataChange.php b/Models/NullDataChange.php index 9dab0c8..1b29ae7 100755 --- a/Models/NullDataChange.php +++ b/Models/NullDataChange.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullGroup.php b/Models/NullGroup.php index 3985db7..70e877b 100755 --- a/Models/NullGroup.php +++ b/Models/NullGroup.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullGroupPermission.php b/Models/NullGroupPermission.php index bb02b1e..b3aa7d1 100755 --- a/Models/NullGroupPermission.php +++ b/Models/NullGroupPermission.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/NullModule.php b/Models/NullModule.php index fc1c7eb..07c513f 100755 --- a/Models/NullModule.php +++ b/Models/NullModule.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ namespace Modules\Admin\Models; * Null model * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/PermissionAbstractMapper.php b/Models/PermissionAbstractMapper.php index d9ce389..4c1efb8 100755 --- a/Models/PermissionAbstractMapper.php +++ b/Models/PermissionAbstractMapper.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; * Permission mapper class. * * @package Modules\Admin\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 a3b90d4..df81858 100755 --- a/Models/PermissionCategory.php +++ b/Models/PermissionCategory.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Permission category enum. * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/PermissionQueryBuilder.php b/Models/PermissionQueryBuilder.php index 8c85fdf..fb9b846 100755 --- a/Models/PermissionQueryBuilder.php +++ b/Models/PermissionQueryBuilder.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\DataStorage\Database\Query\Where; * Query builder for selects which immediately check if a user/group has the appropriate permissions * * @package Modules\Admin\Models - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 */ diff --git a/Models/SettingsEnum.php b/Models/SettingsEnum.php index c8f6955..8443936 100755 --- a/Models/SettingsEnum.php +++ b/Models/SettingsEnum.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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 @@ use phpOMS\Stdlib\Base\Enum; * Default settings enum. * * @package Modules\Admin\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/Api/Lang/de.lang.php b/Theme/Api/Lang/de.lang.php index 31087e9..8badc23 100755 --- a/Theme/Api/Lang/de.lang.php +++ b/Theme/Api/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/Api/Lang/en.lang.php b/Theme/Api/Lang/en.lang.php index 31087e9..8badc23 100755 --- a/Theme/Api/Lang/en.lang.php +++ b/Theme/Api/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/Components/AccountPermissionSelector/BaseView.php b/Theme/Backend/Components/AccountPermissionSelector/BaseView.php index 635c7f7..7bd9be7 100644 --- a/Theme/Backend/Components/AccountPermissionSelector/BaseView.php +++ b/Theme/Backend/Components/AccountPermissionSelector/BaseView.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use phpOMS\Views\View; * Component view. * * @package Modules\Admin - * @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/AccountPermissionSelector/account-permission-selector.tpl.php b/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php index c8532d4..b19707e 100644 --- a/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php +++ b/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Attribute * @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/Components/AddressEditor/AddressView.php b/Theme/Backend/Components/AddressEditor/AddressView.php index 460a973..ac7cbb8 100644 --- a/Theme/Backend/Components/AddressEditor/AddressView.php +++ b/Theme/Backend/Components/AddressEditor/AddressView.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use phpOMS\Views\View; * Component view. * * @package Modules\Admin - * @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/AddressEditor/addresses.tpl.php b/Theme/Backend/Components/AddressEditor/addresses.tpl.php index eb53297..6a2f8f4 100644 --- a/Theme/Backend/Components/AddressEditor/addresses.tpl.php +++ b/Theme/Backend/Components/AddressEditor/addresses.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Address * @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/Components/ContactEditor/ContactView.php b/Theme/Backend/Components/ContactEditor/ContactView.php index 1d2ab85..aa56088 100644 --- a/Theme/Backend/Components/ContactEditor/ContactView.php +++ b/Theme/Backend/Components/ContactEditor/ContactView.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use phpOMS\Views\View; * Component view. * * @package Modules\Admin - * @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/ContactEditor/contacts.tpl.php b/Theme/Backend/Components/ContactEditor/contacts.tpl.php index bf8b76e..0799176 100644 --- a/Theme/Backend/Components/ContactEditor/contacts.tpl.php +++ b/Theme/Backend/Components/ContactEditor/contacts.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Contact * @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/Components/GroupTagSelector/GroupTagSelectorPopupView.php b/Theme/Backend/Components/GroupTagSelector/GroupTagSelectorPopupView.php index 80b3dd0..bd38b72 100755 --- a/Theme/Backend/Components/GroupTagSelector/GroupTagSelectorPopupView.php +++ b/Theme/Backend/Components/GroupTagSelector/GroupTagSelectorPopupView.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use phpOMS\Views\View; * Component view. * * @package Modules\Admin - * @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/GroupTagSelector/GroupTagSelectorView.php b/Theme/Backend/Components/GroupTagSelector/GroupTagSelectorView.php index d39d87e..b0f396e 100755 --- a/Theme/Backend/Components/GroupTagSelector/GroupTagSelectorView.php +++ b/Theme/Backend/Components/GroupTagSelector/GroupTagSelectorView.php @@ -6,7 +6,7 @@ * * @package Modules\Admin * @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 @@ use phpOMS\Views\View; * Component view. * * @package Modules\Admin - * @license OMS License 2.0 + * @license OMS License 2.2 * @link https://jingga.app * @since 1.0.0 * @codeCoverageIgnore diff --git a/Theme/Backend/Lang/Navigation.de.lang.php b/Theme/Backend/Lang/Navigation.de.lang.php index b217653..6437806 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.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index d920f5b..68dc928 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/de.lang.php b/Theme/Backend/Lang/de.lang.php index 2105f9f..8301ab3 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 4c53784..5dc9524 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/accounts-create.tpl.php b/Theme/Backend/accounts-create.tpl.php index 7d158fc..1c4e866 100755 --- a/Theme/Backend/accounts-create.tpl.php +++ b/Theme/Backend/accounts-create.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/accounts-list.tpl.php b/Theme/Backend/accounts-list.tpl.php index a611d43..0564fdb 100755 --- a/Theme/Backend/accounts-list.tpl.php +++ b/Theme/Backend/accounts-list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/accounts-view.tpl.php b/Theme/Backend/accounts-view.tpl.php index 212200b..03717c4 100644 --- a/Theme/Backend/accounts-view.tpl.php +++ b/Theme/Backend/accounts-view.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/groups-create.tpl.php b/Theme/Backend/groups-create.tpl.php index 4510bc3..5ce31db 100755 --- a/Theme/Backend/groups-create.tpl.php +++ b/Theme/Backend/groups-create.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/groups-list.tpl.php b/Theme/Backend/groups-list.tpl.php index 80e7357..3e3f08c 100755 --- a/Theme/Backend/groups-list.tpl.php +++ b/Theme/Backend/groups-list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/groups-view.tpl.php b/Theme/Backend/groups-view.tpl.php index 384b546..c11d32c 100644 --- a/Theme/Backend/groups-view.tpl.php +++ b/Theme/Backend/groups-view.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Theme * @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/modules-hook-list.tpl.php b/Theme/Backend/modules-hook-list.tpl.php index 53dd52c..a6c35fe 100755 --- a/Theme/Backend/modules-hook-list.tpl.php +++ b/Theme/Backend/modules-hook-list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/modules-info.tpl.php b/Theme/Backend/modules-info.tpl.php index 2b28ef1..6e398ec 100755 --- a/Theme/Backend/modules-info.tpl.php +++ b/Theme/Backend/modules-info.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/modules-list.tpl.php b/Theme/Backend/modules-list.tpl.php index 94fc2fd..841e069 100755 --- a/Theme/Backend/modules-list.tpl.php +++ b/Theme/Backend/modules-list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/modules-log.tpl.php b/Theme/Backend/modules-log.tpl.php index 89b7eeb..12f6e01 100755 --- a/Theme/Backend/modules-log.tpl.php +++ b/Theme/Backend/modules-log.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/modules-route-list.tpl.php b/Theme/Backend/modules-route-list.tpl.php index 77e03e9..07240bd 100755 --- a/Theme/Backend/modules-route-list.tpl.php +++ b/Theme/Backend/modules-route-list.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/modules-settings.tpl.php b/Theme/Backend/modules-settings.tpl.php index c4c5c24..648885f 100755 --- a/Theme/Backend/modules-settings.tpl.php +++ b/Theme/Backend/modules-settings.tpl.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\Template\Backend * @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/Admin/AdminTest.php b/tests/Admin/AdminTest.php index c1006df..2eb3a2b 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 199cfc7..762e4f2 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 @@ namespace Modules\Admin\tests; * 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 ceadce2..d154dca 100755 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -6,7 +6,7 @@ * * @package Modules\Admin\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/Api/ApiControllerAccountTrait.php b/tests/Controller/Api/ApiControllerAccountTrait.php index d658f99..9f06ff1 100755 --- a/tests/Controller/Api/ApiControllerAccountTrait.php +++ b/tests/Controller/Api/ApiControllerAccountTrait.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/Api/ApiControllerApplicationTrait.php b/tests/Controller/Api/ApiControllerApplicationTrait.php index 530ec09..bbac2ae 100755 --- a/tests/Controller/Api/ApiControllerApplicationTrait.php +++ b/tests/Controller/Api/ApiControllerApplicationTrait.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/Api/ApiControllerGroupTrait.php b/tests/Controller/Api/ApiControllerGroupTrait.php index 4ee8f40..21e468e 100755 --- a/tests/Controller/Api/ApiControllerGroupTrait.php +++ b/tests/Controller/Api/ApiControllerGroupTrait.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/Api/ApiControllerModuleTrait.php b/tests/Controller/Api/ApiControllerModuleTrait.php index 489369a..7e36677 100755 --- a/tests/Controller/Api/ApiControllerModuleTrait.php +++ b/tests/Controller/Api/ApiControllerModuleTrait.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/Api/ApiControllerPermissionTrait.php b/tests/Controller/Api/ApiControllerPermissionTrait.php index 9b10d79..376d762 100755 --- a/tests/Controller/Api/ApiControllerPermissionTrait.php +++ b/tests/Controller/Api/ApiControllerPermissionTrait.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/Api/ApiControllerSettingsTrait.php b/tests/Controller/Api/ApiControllerSettingsTrait.php index c6b8905..5e6c1f6 100755 --- a/tests/Controller/Api/ApiControllerSettingsTrait.php +++ b/tests/Controller/Api/ApiControllerSettingsTrait.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/ApiControllerTest.php b/tests/Controller/ApiControllerTest.php index a6e0192..193e639 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/Helper.php b/tests/Helper.php index d960c34..a4a5925 100644 --- a/tests/Helper.php +++ b/tests/Helper.php @@ -6,7 +6,7 @@ * * @package Jingga * @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/AccountMapperTest.php b/tests/Models/AccountMapperTest.php index 31d4639..4612e20 100755 --- a/tests/Models/AccountMapperTest.php +++ b/tests/Models/AccountMapperTest.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/AccountPermissionTest.php b/tests/Models/AccountPermissionTest.php index 4393ecd..80ca65f 100755 --- a/tests/Models/AccountPermissionTest.php +++ b/tests/Models/AccountPermissionTest.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/AccountTest.php b/tests/Models/AccountTest.php index d6f901a..ea40a58 100755 --- a/tests/Models/AccountTest.php +++ b/tests/Models/AccountTest.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/AddressMapperTest.php b/tests/Models/AddressMapperTest.php index 953a23c..9dcde56 100755 --- a/tests/Models/AddressMapperTest.php +++ b/tests/Models/AddressMapperTest.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/AppMapperTest.php b/tests/Models/AppMapperTest.php index 7cf4482..5477d98 100755 --- a/tests/Models/AppMapperTest.php +++ b/tests/Models/AppMapperTest.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/AppTest.php b/tests/Models/AppTest.php index d575e79..9bfc139 100755 --- a/tests/Models/AppTest.php +++ b/tests/Models/AppTest.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/DataChangeTest.php b/tests/Models/DataChangeTest.php index 1073a26..bfc4f48 100644 --- a/tests/Models/DataChangeTest.php +++ b/tests/Models/DataChangeTest.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/GroupMapperTest.php b/tests/Models/GroupMapperTest.php index 0c62e64..88fe053 100755 --- a/tests/Models/GroupMapperTest.php +++ b/tests/Models/GroupMapperTest.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/GroupPermissionTest.php b/tests/Models/GroupPermissionTest.php index f6867c4..ffcb491 100755 --- a/tests/Models/GroupPermissionTest.php +++ b/tests/Models/GroupPermissionTest.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/GroupTest.php b/tests/Models/GroupTest.php index 77d3e79..42d0a52 100755 --- a/tests/Models/GroupTest.php +++ b/tests/Models/GroupTest.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/LocalizationMapperTest.php b/tests/Models/LocalizationMapperTest.php index 55fe0cc..2445639 100755 --- a/tests/Models/LocalizationMapperTest.php +++ b/tests/Models/LocalizationMapperTest.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/ModuleTest.php b/tests/Models/ModuleTest.php index 10c42af..937d24c 100755 --- a/tests/Models/ModuleTest.php +++ b/tests/Models/ModuleTest.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/NullAccountExternalTest.php b/tests/Models/NullAccountExternalTest.php index 47f4cba..98d3f7e 100644 --- a/tests/Models/NullAccountExternalTest.php +++ b/tests/Models/NullAccountExternalTest.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/NullAccountPermissionTest.php b/tests/Models/NullAccountPermissionTest.php index 687fde4..3c4b512 100755 --- a/tests/Models/NullAccountPermissionTest.php +++ b/tests/Models/NullAccountPermissionTest.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/NullAccountTest.php b/tests/Models/NullAccountTest.php index 3ca99b2..38ef522 100755 --- a/tests/Models/NullAccountTest.php +++ b/tests/Models/NullAccountTest.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/NullAppTest.php b/tests/Models/NullAppTest.php index 4eb3dd4..8ecf39c 100644 --- a/tests/Models/NullAppTest.php +++ b/tests/Models/NullAppTest.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/NullDataChangeTest.php b/tests/Models/NullDataChangeTest.php index aba9ba1..a35c754 100644 --- a/tests/Models/NullDataChangeTest.php +++ b/tests/Models/NullDataChangeTest.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/NullGroupPermissionTest.php b/tests/Models/NullGroupPermissionTest.php index 4332676..c7186fd 100755 --- a/tests/Models/NullGroupPermissionTest.php +++ b/tests/Models/NullGroupPermissionTest.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/NullGroupTest.php b/tests/Models/NullGroupTest.php index f08d8c2..280f4fd 100755 --- a/tests/Models/NullGroupTest.php +++ b/tests/Models/NullGroupTest.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/NullModuleTest.php b/tests/Models/NullModuleTest.php index 1c35977..db3be8b 100755 --- a/tests/Models/NullModuleTest.php +++ b/tests/Models/NullModuleTest.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 */