From e0aad5f865f5657f9d53d59e3c95436aa06d9afd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 2 Oct 2016 12:07:05 +0200 Subject: [PATCH 1/5] Core adjustments for pending issues --- Models/temp/Account.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Models/temp/Account.php b/Models/temp/Account.php index ac1add5..e2b3f86 100644 --- a/Models/temp/Account.php +++ b/Models/temp/Account.php @@ -1,5 +1,5 @@ total; } } +*/ \ No newline at end of file From ea881f029b6c14b2aa0a1c5bfb57ac2237b7c557 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 9 Oct 2016 20:07:30 +0200 Subject: [PATCH 2/5] Fix install --- Admin/Install/Navigation.php | 2 +- Admin/Installer.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 5227876..99d1721 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -29,7 +29,7 @@ use phpOMS\DataStorage\Database\Pool; */ class Navigation { - public static function install(Pool $dbPool) + public static function install(string $path, Pool $dbPool) { $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); diff --git a/Admin/Installer.php b/Admin/Installer.php index 3d6d047..c3d530d 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -37,9 +37,9 @@ class Installer extends InstallerAbstract /** * {@inheritdoc} */ - public static function install(Pool $dbPool, InfoManager $info) + public static function install(string $path, Pool $dbPool, InfoManager $info) { - parent::install($dbPool, $info); + parent::install($path, $dbPool, $info); switch ($dbPool->get('core')->getType()) { case DatabaseType::MYSQL: From cbfc3c6bd804f0e0780b91bb94e8afad230ce63c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 29 Oct 2016 20:44:52 +0200 Subject: [PATCH 3/5] Adjust database pool name --- Admin/Activate.php | 4 ++-- Admin/Deactivate.php | 4 ++-- Admin/Install/Navigation.php | 4 ++-- Admin/Installer.php | 4 ++-- Admin/Uninstall.php | 4 ++-- Admin/Update.php | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Admin/Activate.php b/Admin/Activate.php index cc85bcf..8e70bdc 100644 --- a/Admin/Activate.php +++ b/Admin/Activate.php @@ -15,7 +15,7 @@ */ namespace Modules\Accounting\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\ActivateAbstract; use phpOMS\Module\InfoManager; @@ -36,7 +36,7 @@ class Activate extends ActivateAbstract /** * {@inheritdoc} */ - public static function activate(Pool $dbPool, InfoManager $info) + public static function activate(DatabasePool $dbPool, InfoManager $info) { parent::activate($dbPool, $info); } diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php index 1edfd54..e544af8 100644 --- a/Admin/Deactivate.php +++ b/Admin/Deactivate.php @@ -15,7 +15,7 @@ */ namespace Modules\Accounting\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\DeactivateAbstract; use phpOMS\Module\InfoManager; @@ -36,7 +36,7 @@ class Deactivate extends DeactivateAbstract /** * {@inheritdoc} */ - public static function deactivate(Pool $dbPool, InfoManager $info) + public static function deactivate(DatabasePool $dbPool, InfoManager $info) { parent::deactivate($dbPool, $info); } diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 99d1721..2728165 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -14,7 +14,7 @@ * @link http://orange-management.com */ namespace Modules\Accounting\Admin\Install; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; /** * Navigation class. @@ -29,7 +29,7 @@ use phpOMS\DataStorage\Database\Pool; */ class Navigation { - public static function install(string $path, Pool $dbPool) + public static function install(string $path, DatabasePool $dbPool) { $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); diff --git a/Admin/Installer.php b/Admin/Installer.php index c3d530d..fff98c0 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -16,7 +16,7 @@ namespace Modules\Accounting\Admin; use phpOMS\DataStorage\Database\DatabaseType; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\InfoManager; use phpOMS\Module\InstallerAbstract; @@ -37,7 +37,7 @@ class Installer extends InstallerAbstract /** * {@inheritdoc} */ - public static function install(string $path, Pool $dbPool, InfoManager $info) + public static function install(string $path, DatabasePool $dbPool, InfoManager $info) { parent::install($path, $dbPool, $info); diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index cfba680..889447f 100644 --- a/Admin/Uninstall.php +++ b/Admin/Uninstall.php @@ -16,7 +16,7 @@ namespace Modules\Accounting\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\DataStorage\Database\Schema\Builder; use phpOMS\Module\UninstallAbstract; @@ -37,7 +37,7 @@ class Uninstall extends UninstallAbstract /** * {@inheritdoc} */ - public static function uninstall(Pool $dbPool, InfoManager $info) + public static function uninstall(DatabasePool $dbPool, InfoManager $info) { parent::uninstall($dbPool, $info); diff --git a/Admin/Update.php b/Admin/Update.php index 4d222d9..5ecb95e 100644 --- a/Admin/Update.php +++ b/Admin/Update.php @@ -16,7 +16,7 @@ namespace Modules\Accounting\Admin; -use phpOMS\DataStorage\Database\Pool; +use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Module\UpdateAbstract; use phpOMS\System\File\Directory; @@ -37,7 +37,7 @@ class Update extends UpdateAbstract /** * {@inheritdoc} */ - public static function update(Pool $dbPool, array $info) + public static function update(DatabasePool $dbPool, array $info) { Directory::deletePath(__DIR__ . '/Update'); mkdir('Update'); From 352415126ff0abfb4cde2368106822efcf9da68f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 7 Dec 2016 20:23:04 +0100 Subject: [PATCH 4/5] Prepare const visibility --- Controller.php | 6 +++--- Models/AccountType.php | 8 ++++---- Models/TimeRangeType.php | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Controller.php b/Controller.php index ae40fc5..9f000fd 100644 --- a/Controller.php +++ b/Controller.php @@ -45,7 +45,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_PATH = __DIR__; + /* public */ const MODULE_PATH = __DIR__; /** * Module version. @@ -53,7 +53,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_VERSION = '1.0.0'; + /* public */ const MODULE_VERSION = '1.0.0'; /** * Module name. @@ -61,7 +61,7 @@ class Controller extends ModuleAbstract implements WebInterface * @var string * @since 1.0.0 */ - const MODULE_NAME = 'Accounting'; + /* public */ const MODULE_NAME = 'Accounting'; /** * Providing. diff --git a/Models/AccountType.php b/Models/AccountType.php index 7372ae5..3be4bfe 100644 --- a/Models/AccountType.php +++ b/Models/AccountType.php @@ -30,11 +30,11 @@ use phpOMS\Datatypes\Enum; */ abstract class AccountType extends Enum { - const IMPERSONAL = 0; + /* public */ const IMPERSONAL = 0; - const PERSONAL = 1; + /* public */ const PERSONAL = 1; - const CREDITOR = 2; + /* public */ const CREDITOR = 2; - const DEBITOR = 3; + /* public */ const DEBITOR = 3; } diff --git a/Models/TimeRangeType.php b/Models/TimeRangeType.php index 91652f3..b553422 100644 --- a/Models/TimeRangeType.php +++ b/Models/TimeRangeType.php @@ -30,8 +30,8 @@ use phpOMS\Datatypes\Enum; */ abstract class TimeRangeType extends Enum { - const ENTRY_DATE = 0; /* Date of when the entry happened */ - const DUE_DATE = 1; /* Date of when the entry is due (only for invoices) */ - const RECEIPT_DATE = 2; /* Date of the receipt */ - const ASSOCIATED_DATE = 3; /* Date of the association (e.g. when did the articles arrive) */ + /* public */ const ENTRY_DATE = 0; /* Date of when the entry happened */ + /* public */ const DUE_DATE = 1; /* Date of when the entry is due (only for invoices) */ + /* public */ const RECEIPT_DATE = 2; /* Date of the receipt */ + /* public */ const ASSOCIATED_DATE = 3; /* Date of the association (e.g. when did the articles arrive) */ } From baf27fa918c2f5cb9b4f9222d5b2d0f7076075bd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 7 Dec 2016 20:56:15 +0100 Subject: [PATCH 5/5] Increase php version requirement --- Admin/Activate.php | 2 +- Admin/Deactivate.php | 2 +- Admin/Install/Navigation.php | 2 +- Admin/Installer.php | 2 +- Admin/Uninstall.php | 2 +- Admin/Update.php | 2 +- Controller.php | 2 +- Models/AccountAbstract.php | 2 +- Models/AccountBalance.php | 2 +- Models/AccountInterface.php | 2 +- Models/AccountType.php | 2 +- Models/Balance.php | 2 +- Models/BatchPosting.php | 2 +- Models/Creditor.php | 2 +- Models/CreditorAccount.php | 2 +- Models/Debitor.php | 2 +- Models/DebitorAccount.php | 2 +- Models/EntryInterface.php | 2 +- Models/ImpersonalAccount.php | 2 +- Models/IncomeStatement.php | 2 +- Models/InvoicePosting.php | 2 +- Models/InvoicePostingSimple.php | 2 +- Models/PersonalAccountAbstract.php | 2 +- Models/Posting.php | 2 +- Models/PostingAbstract.php | 2 +- Models/PostingInterface.php | 2 +- Models/TimeRangeType.php | 2 +- Theme/Backend/Lang/Navigation.en.lang.php | 2 +- Theme/Backend/Lang/api.en.lang.php | 2 +- Theme/Backend/Lang/en.lang.php | 2 +- Theme/Backend/entries.tpl.php | 2 +- Theme/Backend/gl-create.tpl.php | 2 +- Theme/Backend/gl-list.tpl.php | 2 +- Theme/Backend/gl-profile.tpl.php | 2 +- Theme/Backend/journal-list.tpl.php | 2 +- Theme/Backend/stack-archive-list.tpl.php | 2 +- Theme/Backend/stack-create.tpl.php | 2 +- Theme/Backend/stack-entries.tpl.php | 2 +- Theme/Backend/stack-list.tpl.php | 2 +- Theme/Backend/stack-predefined-list.tpl.php | 2 +- Theme/backend/Lang/Navigation.en.lang.php | 2 +- Theme/backend/Lang/api.en.lang.php | 2 +- Theme/backend/Lang/en.lang.php | 2 +- Theme/backend/entries.tpl.php | 2 +- Theme/backend/gl-create.tpl.php | 2 +- Theme/backend/gl-list.tpl.php | 2 +- Theme/backend/gl-profile.tpl.php | 2 +- Theme/backend/journal-list.tpl.php | 2 +- Theme/backend/stack-archive-list.tpl.php | 2 +- Theme/backend/stack-create.tpl.php | 2 +- Theme/backend/stack-entries.tpl.php | 2 +- Theme/backend/stack-list.tpl.php | 2 +- Theme/backend/stack-predefined-list.tpl.php | 2 +- 53 files changed, 53 insertions(+), 53 deletions(-) diff --git a/Admin/Activate.php b/Admin/Activate.php index 8e70bdc..aa2fb2d 100644 --- a/Admin/Activate.php +++ b/Admin/Activate.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php index e544af8..3ff36e6 100644 --- a/Admin/Deactivate.php +++ b/Admin/Deactivate.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 2728165..146b68e 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Installer.php b/Admin/Installer.php index fff98c0..91300be 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index 889447f..3c7ce80 100644 --- a/Admin/Uninstall.php +++ b/Admin/Uninstall.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Admin/Update.php b/Admin/Update.php index 5ecb95e..c611f01 100644 --- a/Admin/Update.php +++ b/Admin/Update.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Controller.php b/Controller.php index 9f000fd..1639a2f 100644 --- a/Controller.php +++ b/Controller.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/AccountAbstract.php b/Models/AccountAbstract.php index ad526f8..0100de7 100644 --- a/Models/AccountAbstract.php +++ b/Models/AccountAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/AccountBalance.php b/Models/AccountBalance.php index d73d8ce..8cd4756 100644 --- a/Models/AccountBalance.php +++ b/Models/AccountBalance.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/AccountInterface.php b/Models/AccountInterface.php index 2a0ca2e..8122072 100644 --- a/Models/AccountInterface.php +++ b/Models/AccountInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/AccountType.php b/Models/AccountType.php index 3be4bfe..16df834 100644 --- a/Models/AccountType.php +++ b/Models/AccountType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/Balance.php b/Models/Balance.php index c39940f..d8f084a 100644 --- a/Models/Balance.php +++ b/Models/Balance.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/BatchPosting.php b/Models/BatchPosting.php index 701551a..d65422e 100644 --- a/Models/BatchPosting.php +++ b/Models/BatchPosting.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/Creditor.php b/Models/Creditor.php index 0844f53..47256e1 100644 --- a/Models/Creditor.php +++ b/Models/Creditor.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/CreditorAccount.php b/Models/CreditorAccount.php index ca4a982..80d9aa6 100644 --- a/Models/CreditorAccount.php +++ b/Models/CreditorAccount.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/Debitor.php b/Models/Debitor.php index fdb61a0..4ef387d 100644 --- a/Models/Debitor.php +++ b/Models/Debitor.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/DebitorAccount.php b/Models/DebitorAccount.php index b1fc8aa..7046927 100644 --- a/Models/DebitorAccount.php +++ b/Models/DebitorAccount.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/EntryInterface.php b/Models/EntryInterface.php index d7b90b0..1173e76 100644 --- a/Models/EntryInterface.php +++ b/Models/EntryInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/ImpersonalAccount.php b/Models/ImpersonalAccount.php index d9bb07d..58d73f5 100644 --- a/Models/ImpersonalAccount.php +++ b/Models/ImpersonalAccount.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/IncomeStatement.php b/Models/IncomeStatement.php index b480b15..9f9e93b 100644 --- a/Models/IncomeStatement.php +++ b/Models/IncomeStatement.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/InvoicePosting.php b/Models/InvoicePosting.php index 5476a58..cdde15f 100644 --- a/Models/InvoicePosting.php +++ b/Models/InvoicePosting.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/InvoicePostingSimple.php b/Models/InvoicePostingSimple.php index 29c4444..6fe4b99 100644 --- a/Models/InvoicePostingSimple.php +++ b/Models/InvoicePostingSimple.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/PersonalAccountAbstract.php b/Models/PersonalAccountAbstract.php index a9ff829..fbf0240 100644 --- a/Models/PersonalAccountAbstract.php +++ b/Models/PersonalAccountAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/Posting.php b/Models/Posting.php index 21da90e..c259e92 100644 --- a/Models/Posting.php +++ b/Models/Posting.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/PostingAbstract.php b/Models/PostingAbstract.php index 08bcb2a..bafda8e 100644 --- a/Models/PostingAbstract.php +++ b/Models/PostingAbstract.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/PostingInterface.php b/Models/PostingInterface.php index 52a75b8..7020bb2 100644 --- a/Models/PostingInterface.php +++ b/Models/PostingInterface.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Models/TimeRangeType.php b/Models/TimeRangeType.php index b553422..a721ce9 100644 --- a/Models/TimeRangeType.php +++ b/Models/TimeRangeType.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index 755d4e1..3bc4418 100644 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/Lang/api.en.lang.php b/Theme/Backend/Lang/api.en.lang.php index eea62f6..7b5ae90 100644 --- a/Theme/Backend/Lang/api.en.lang.php +++ b/Theme/Backend/Lang/api.en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index d39665f..c580035 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/entries.tpl.php b/Theme/Backend/entries.tpl.php index a4a4f1e..2d659e1 100644 --- a/Theme/Backend/entries.tpl.php +++ b/Theme/Backend/entries.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/gl-create.tpl.php b/Theme/Backend/gl-create.tpl.php index 0d196cc..71cf2ab 100644 --- a/Theme/Backend/gl-create.tpl.php +++ b/Theme/Backend/gl-create.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/gl-list.tpl.php b/Theme/Backend/gl-list.tpl.php index cd53b25..41039b4 100644 --- a/Theme/Backend/gl-list.tpl.php +++ b/Theme/Backend/gl-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/gl-profile.tpl.php b/Theme/Backend/gl-profile.tpl.php index ac22ab8..9648889 100644 --- a/Theme/Backend/gl-profile.tpl.php +++ b/Theme/Backend/gl-profile.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/journal-list.tpl.php b/Theme/Backend/journal-list.tpl.php index f288e53..ab46d33 100644 --- a/Theme/Backend/journal-list.tpl.php +++ b/Theme/Backend/journal-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/stack-archive-list.tpl.php b/Theme/Backend/stack-archive-list.tpl.php index bfc6f00..b3db0dc 100644 --- a/Theme/Backend/stack-archive-list.tpl.php +++ b/Theme/Backend/stack-archive-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/stack-create.tpl.php b/Theme/Backend/stack-create.tpl.php index df05101..830c456 100644 --- a/Theme/Backend/stack-create.tpl.php +++ b/Theme/Backend/stack-create.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/stack-entries.tpl.php b/Theme/Backend/stack-entries.tpl.php index ac22ab8..9648889 100644 --- a/Theme/Backend/stack-entries.tpl.php +++ b/Theme/Backend/stack-entries.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/stack-list.tpl.php b/Theme/Backend/stack-list.tpl.php index bfc6f00..b3db0dc 100644 --- a/Theme/Backend/stack-list.tpl.php +++ b/Theme/Backend/stack-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/Backend/stack-predefined-list.tpl.php b/Theme/Backend/stack-predefined-list.tpl.php index f12ef33..a84fa60 100644 --- a/Theme/Backend/stack-predefined-list.tpl.php +++ b/Theme/Backend/stack-predefined-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/Lang/Navigation.en.lang.php b/Theme/backend/Lang/Navigation.en.lang.php index 755d4e1..3bc4418 100644 --- a/Theme/backend/Lang/Navigation.en.lang.php +++ b/Theme/backend/Lang/Navigation.en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/Lang/api.en.lang.php b/Theme/backend/Lang/api.en.lang.php index eea62f6..7b5ae90 100644 --- a/Theme/backend/Lang/api.en.lang.php +++ b/Theme/backend/Lang/api.en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/Lang/en.lang.php b/Theme/backend/Lang/en.lang.php index d39665f..c580035 100644 --- a/Theme/backend/Lang/en.lang.php +++ b/Theme/backend/Lang/en.lang.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/entries.tpl.php b/Theme/backend/entries.tpl.php index a4a4f1e..2d659e1 100644 --- a/Theme/backend/entries.tpl.php +++ b/Theme/backend/entries.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/gl-create.tpl.php b/Theme/backend/gl-create.tpl.php index 0d196cc..71cf2ab 100644 --- a/Theme/backend/gl-create.tpl.php +++ b/Theme/backend/gl-create.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/gl-list.tpl.php b/Theme/backend/gl-list.tpl.php index cd53b25..41039b4 100644 --- a/Theme/backend/gl-list.tpl.php +++ b/Theme/backend/gl-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/gl-profile.tpl.php b/Theme/backend/gl-profile.tpl.php index ac22ab8..9648889 100644 --- a/Theme/backend/gl-profile.tpl.php +++ b/Theme/backend/gl-profile.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/journal-list.tpl.php b/Theme/backend/journal-list.tpl.php index f288e53..ab46d33 100644 --- a/Theme/backend/journal-list.tpl.php +++ b/Theme/backend/journal-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/stack-archive-list.tpl.php b/Theme/backend/stack-archive-list.tpl.php index bfc6f00..b3db0dc 100644 --- a/Theme/backend/stack-archive-list.tpl.php +++ b/Theme/backend/stack-archive-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/stack-create.tpl.php b/Theme/backend/stack-create.tpl.php index df05101..830c456 100644 --- a/Theme/backend/stack-create.tpl.php +++ b/Theme/backend/stack-create.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/stack-entries.tpl.php b/Theme/backend/stack-entries.tpl.php index ac22ab8..9648889 100644 --- a/Theme/backend/stack-entries.tpl.php +++ b/Theme/backend/stack-entries.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/stack-list.tpl.php b/Theme/backend/stack-list.tpl.php index bfc6f00..b3db0dc 100644 --- a/Theme/backend/stack-list.tpl.php +++ b/Theme/backend/stack-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD diff --git a/Theme/backend/stack-predefined-list.tpl.php b/Theme/backend/stack-predefined-list.tpl.php index f12ef33..a84fa60 100644 --- a/Theme/backend/stack-predefined-list.tpl.php +++ b/Theme/backend/stack-predefined-list.tpl.php @@ -2,7 +2,7 @@ /** * Orange Management * - * PHP Version 7.0 + * PHP Version 7.1 * * @category TBD * @package TBD