diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 6a45136..e961c0c 100755 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Application\ApplicationAbstract; * * @package Modules\InvestmentManagement\Admin\Install * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ class Navigation diff --git a/Admin/Installer.php b/Admin/Installer.php index 01cdb30..13c9b0f 100755 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -88,7 +88,7 @@ final class Installer extends InstallerAbstract $module->apiAmountTypeCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } diff --git a/Admin/Status.php b/Admin/Status.php index 7487b7d..c167ab0 100755 --- a/Admin/Status.php +++ b/Admin/Status.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Module\StatusAbstract; * * @package Modules\InvestmentManagement\Admin * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ final class Status extends StatusAbstract diff --git a/Admin/Uninstaller.php b/Admin/Uninstaller.php index 382fb88..0e5d1a0 100755 --- a/Admin/Uninstaller.php +++ b/Admin/Uninstaller.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Module\UninstallerAbstract; * * @package Modules\InvestmentManagement\Admin * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ final class Uninstaller extends UninstallerAbstract diff --git a/Admin/Updater.php b/Admin/Updater.php index 4c05d6f..70e5c6e 100755 --- a/Admin/Updater.php +++ b/Admin/Updater.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Module\UpdaterAbstract; * * @package Modules\InvestmentManagement\Admin * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ final class Updater extends UpdaterAbstract diff --git a/Controller/ApiController.php b/Controller/ApiController.php index a5f2687..927ef16 100644 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -938,7 +938,7 @@ final class ApiController extends Controller return; } - $responseData = $response->get($request->uri->__toString()); + $responseData = $response->getDataArray($request->uri->__toString()); if (!\is_array($responseData)) { return; } @@ -988,7 +988,7 @@ final class ApiController extends Controller return; } - $responseData = $response->get($request->uri->__toString()); + $responseData = $response->getDataArray($request->uri->__toString()); if (!\is_array($responseData)) { return; } diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 65bd0fd..61a2d13 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -25,7 +25,7 @@ use phpOMS\Views\View; * * @package Modules\InvestmentManagement * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ final class BackendController extends Controller diff --git a/Controller/Controller.php b/Controller/Controller.php index 4a660c7..b645cbc 100755 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -22,7 +22,7 @@ use phpOMS\Module\WebInterface; * * @package Modules\InvestmentManagement * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ class Controller extends ModuleAbstract implements WebInterface @@ -33,7 +33,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - public const MODULE_PATH = __DIR__ . '/../'; + public const PATH = __DIR__ . '/../'; /** * Module version. diff --git a/Models/Amount.php b/Models/Amount.php index d5a9404..c863041 100644 --- a/Models/Amount.php +++ b/Models/Amount.php @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\FloatInt; * * @package Modules\InvestmentManagement\Models * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ class Amount diff --git a/Models/AmountGroup.php b/Models/AmountGroup.php index bd8e516..eb07610 100644 --- a/Models/AmountGroup.php +++ b/Models/AmountGroup.php @@ -21,7 +21,7 @@ use phpOMS\Localization\BaseStringL11nType; * * @package Modules\InvestmentManagement\Models * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ class AmountGroup diff --git a/Models/Investment.php b/Models/Investment.php index a84120a..a3fa781 100644 --- a/Models/Investment.php +++ b/Models/Investment.php @@ -24,7 +24,7 @@ use phpOMS\Localization\BaseStringL11nType; * * @package Modules\InvestmentManagement\Models * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ class Investment diff --git a/Models/InvestmentObject.php b/Models/InvestmentObject.php index 25e27b9..9a64bb7 100644 --- a/Models/InvestmentObject.php +++ b/Models/InvestmentObject.php @@ -19,7 +19,7 @@ namespace Modules\InvestmentManagement\Models; * * @package Modules\InvestmentManagement\Models * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ class InvestmentObject diff --git a/Models/PermissionCategory.php b/Models/PermissionCategory.php index 787cedd..6bd9289 100755 --- a/Models/PermissionCategory.php +++ b/Models/PermissionCategory.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1); @@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum; * * @package Modules\InvestmentManagement\Models * @license OMS License 2.0 - * @link https://orange-management.org + * @link https://jingga.app * @since 1.0.0 */ abstract class PermissionCategory extends Enum diff --git a/Theme/Backend/investment-list.tpl.php b/Theme/Backend/investment-list.tpl.php index def1420..6188c6e 100644 --- a/Theme/Backend/investment-list.tpl.php +++ b/Theme/Backend/investment-list.tpl.php @@ -8,7 +8,7 @@ * @copyright Dennis Eichhorn * @license OMS License 2.0 * @version 1.0.0 - * @link https://orange-management.org + * @link https://jingga.app */ declare(strict_types=1);