diff --git a/app/modules/api/Init.php b/app/modules/api/Init.php index be0f3744..c9722b79 100644 --- a/app/modules/api/Init.php +++ b/app/modules/api/Init.php @@ -30,8 +30,8 @@ use SP\Core\Application; use SP\Core\Exceptions\InitializationException; use SP\Core\HttpModuleBase; use SP\Core\Language; -use SP\Core\LanguageInterface; use SP\Core\ProvidersHelper; +use SP\Domain\Core\LanguageInterface; use SP\Domain\Upgrade\Services\UpgradeAppService; use SP\Domain\Upgrade\Services\UpgradeDatabaseService; use SP\Domain\Upgrade\Services\UpgradeUtil; @@ -151,4 +151,4 @@ final class Init extends HttpModuleBase throw new InitializationException(__u('Updating needed')); } } -} \ No newline at end of file +} diff --git a/app/modules/cli/Init.php b/app/modules/cli/Init.php index 3e91a265..71125177 100644 --- a/app/modules/cli/Init.php +++ b/app/modules/cli/Init.php @@ -26,9 +26,9 @@ namespace SP\Modules\Cli; use SP\Core\Application; use SP\Core\Language; -use SP\Core\LanguageInterface; use SP\Core\ModuleBase; use SP\Core\ProvidersHelper; +use SP\Domain\Core\LanguageInterface; use SP\Util\VersionUtil; use Symfony\Component\Console\Application as ConsoleApplication; use Symfony\Component\Console\Input\InputInterface; @@ -103,4 +103,4 @@ final class Init extends ModuleBase $this->output ); } -} \ No newline at end of file +} diff --git a/app/modules/web/Controllers/ConfigLdap/ImportController.php b/app/modules/web/Controllers/ConfigLdap/ImportController.php index 4031524e..4f7b1770 100644 --- a/app/modules/web/Controllers/ConfigLdap/ImportController.php +++ b/app/modules/web/Controllers/ConfigLdap/ImportController.php @@ -37,7 +37,7 @@ use SP\Core\Exceptions\CheckException; use SP\Core\Exceptions\SPException; use SP\Core\Exceptions\ValidationException; use SP\Core\PhpExtensionChecker; -use SP\Core\UI\ThemeInterface; +use SP\Domain\Core\UI\ThemeInterface; use SP\Domain\Import\Ports\LdapImportServiceInterface; use SP\Domain\Import\Services\LdapImportParams; use SP\Http\JsonResponse; diff --git a/app/modules/web/Controllers/ConfigManager/IndexController.php b/app/modules/web/Controllers/ConfigManager/IndexController.php index d68d940f..ca2ad2b7 100644 --- a/app/modules/web/Controllers/ConfigManager/IndexController.php +++ b/app/modules/web/Controllers/ConfigManager/IndexController.php @@ -30,7 +30,6 @@ use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; use SP\Core\Acl\Acl; use SP\Core\Acl\AclActionsInterface; -use SP\Core\AppInfoInterface; use SP\Core\Application; use SP\Core\Crypt\CryptSessionHandler; use SP\Core\Events\Event; @@ -42,6 +41,7 @@ use SP\Core\Language; use SP\Domain\Account\Ports\AccountServiceInterface; use SP\Domain\Common\Services\ServiceException; use SP\Domain\Config\Ports\ConfigServiceInterface; +use SP\Domain\Core\AppInfoInterface; use SP\Domain\Core\File\MimeType; use SP\Domain\Core\File\MimeTypesInterface; use SP\Domain\Crypt\Services\TemporaryMasterPassService; diff --git a/app/modules/web/Controllers/ControllerBase.php b/app/modules/web/Controllers/ControllerBase.php index 540d67ef..0102051c 100644 --- a/app/modules/web/Controllers/ControllerBase.php +++ b/app/modules/web/Controllers/ControllerBase.php @@ -37,11 +37,11 @@ use SP\Core\Exceptions\FileNotFoundException; use SP\Core\Exceptions\SessionTimeout; use SP\Core\Exceptions\SPException; use SP\Core\PhpExtensionChecker; -use SP\Core\UI\ThemeInterface; use SP\DataModel\ProfileData; use SP\Domain\Auth\Services\AuthException; use SP\Domain\Config\Ports\ConfigDataInterface; use SP\Domain\Config\Services\ConfigFileService; +use SP\Domain\Core\UI\ThemeInterface; use SP\Domain\User\Services\UserLoginResponse; use SP\Http\RequestInterface; use SP\Modules\Web\Controllers\Helpers\LayoutHelper; diff --git a/app/modules/web/Controllers/Helpers/LayoutHelper.php b/app/modules/web/Controllers/Helpers/LayoutHelper.php index def3c6c2..3256358e 100644 --- a/app/modules/web/Controllers/Helpers/LayoutHelper.php +++ b/app/modules/web/Controllers/Helpers/LayoutHelper.php @@ -26,13 +26,13 @@ namespace SP\Modules\Web\Controllers\Helpers; use SP\Core\Acl\Acl; use SP\Core\Acl\AclActionsInterface; -use SP\Core\AppInfoInterface; use SP\Core\Application; use SP\Core\Bootstrap\BootstrapBase; use SP\Core\Crypt\CryptPKIInterface; use SP\Core\Exceptions\SPException; use SP\Core\Language; -use SP\Core\UI\ThemeInterface; +use SP\Domain\Core\AppInfoInterface; +use SP\Domain\Core\UI\ThemeInterface; use SP\Domain\Install\Services\InstallerService; use SP\Html\DataGrid\Action\DataGridAction; use SP\Http\RequestInterface; diff --git a/app/modules/web/Controllers/SimpleControllerBase.php b/app/modules/web/Controllers/SimpleControllerBase.php index 7a48c2ad..15762dd3 100644 --- a/app/modules/web/Controllers/SimpleControllerBase.php +++ b/app/modules/web/Controllers/SimpleControllerBase.php @@ -32,9 +32,9 @@ use SP\Core\Events\EventDispatcher; use SP\Core\Exceptions\SessionTimeout; use SP\Core\Exceptions\SPException; use SP\Core\PhpExtensionChecker; -use SP\Core\UI\ThemeInterface; use SP\Domain\Config\Ports\ConfigDataInterface; use SP\Domain\Config\Services\ConfigFileService; +use SP\Domain\Core\UI\ThemeInterface; use SP\Http\Request; use SP\Modules\Web\Controllers\Traits\WebControllerTrait; use SP\Mvc\Controller\SimpleControllerHelper; diff --git a/app/modules/web/Controllers/Status/CheckNotices.php b/app/modules/web/Controllers/Status/CheckNotices.php index e40c26c1..1cfed625 100644 --- a/app/modules/web/Controllers/Status/CheckNotices.php +++ b/app/modules/web/Controllers/Status/CheckNotices.php @@ -25,8 +25,8 @@ namespace SP\Modules\Web\Controllers\Status; -use SP\Core\AppInfoInterface; use SP\Core\Exceptions\CheckException; +use SP\Domain\Core\AppInfoInterface; use SP\Http\JsonResponse; use SP\Modules\Web\Controllers\Traits\JsonTrait; use Throwable; @@ -82,4 +82,4 @@ final class CheckNotices extends StatusBase return $this->returnJsonResponseException($e); } } -} \ No newline at end of file +} diff --git a/app/modules/web/Controllers/Status/StatusController.php b/app/modules/web/Controllers/Status/StatusController.php index 6af061f8..cb8da61b 100644 --- a/app/modules/web/Controllers/Status/StatusController.php +++ b/app/modules/web/Controllers/Status/StatusController.php @@ -24,8 +24,8 @@ namespace SP\Modules\Web\Controllers\Status; -use SP\Core\AppInfoInterface; use SP\Core\Exceptions\CheckException; +use SP\Domain\Core\AppInfoInterface; use SP\Http\JsonResponse; use SP\Modules\Web\Controllers\Traits\JsonTrait; use SP\Util\VersionUtil; @@ -93,4 +93,4 @@ final class StatusController extends StatusBase return $this->returnJsonResponseException($e); } } -} \ No newline at end of file +} diff --git a/app/modules/web/Init.php b/app/modules/web/Init.php index 94cf0ff3..e9f4fa31 100644 --- a/app/modules/web/Init.php +++ b/app/modules/web/Init.php @@ -46,10 +46,10 @@ use SP\Core\Exceptions\QueryException; use SP\Core\Exceptions\SPException; use SP\Core\HttpModuleBase; use SP\Core\Language; -use SP\Core\LanguageInterface; use SP\Core\ProvidersHelper; -use SP\Core\UI\ThemeInterface; use SP\DataModel\ItemPreset\SessionTimeout; +use SP\Domain\Core\LanguageInterface; +use SP\Domain\Core\UI\ThemeInterface; use SP\Domain\Crypt\Ports\SecureSessionServiceInterface; use SP\Domain\Crypt\Services\SecureSessionService; use SP\Domain\ItemPreset\Ports\ItemPresetInterface; diff --git a/app/modules/web/themes/material-blue/views/account/account-editpass.inc b/app/modules/web/themes/material-blue/views/account/account-editpass.inc index a1dc19c8..e325728b 100644 --- a/app/modules/web/themes/material-blue/views/account/account-editpass.inc +++ b/app/modules/web/themes/material-blue/views/account/account-editpass.inc @@ -24,13 +24,12 @@ /** * @var callable $_getvar - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; diff --git a/app/modules/web/themes/material-blue/views/account/account-history.inc b/app/modules/web/themes/material-blue/views/account/account-history.inc index 9b14a92a..4d9667f6 100644 --- a/app/modules/web/themes/material-blue/views/account/account-history.inc +++ b/app/modules/web/themes/material-blue/views/account/account-history.inc @@ -30,10 +30,10 @@ * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Mvc\View\Components\SelectItem; /** @var AccountExtData $accountData */ diff --git a/app/modules/web/themes/material-blue/views/account/account-link.inc b/app/modules/web/themes/material-blue/views/account/account-link.inc index 557e24a3..47bd8365 100644 --- a/app/modules/web/themes/material-blue/views/account/account-link.inc +++ b/app/modules/web/themes/material-blue/views/account/account-link.inc @@ -24,13 +24,12 @@ /** * @var callable $_getvar - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; diff --git a/app/modules/web/themes/material-blue/views/account/account-permissions.inc b/app/modules/web/themes/material-blue/views/account/account-permissions.inc index c58d7be0..438c1b48 100644 --- a/app/modules/web/themes/material-blue/views/account/account-permissions.inc +++ b/app/modules/web/themes/material-blue/views/account/account-permissions.inc @@ -24,14 +24,13 @@ /** * @var callable $_getvar - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData * @var AccountPrivate $accountPrivate */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\DataModel\ItemPreset\AccountPrivate; use SP\Domain\Account\Services\AccountAcl; diff --git a/app/modules/web/themes/material-blue/views/account/account-request.inc b/app/modules/web/themes/material-blue/views/account/account-request.inc index 5eedad03..922d4161 100644 --- a/app/modules/web/themes/material-blue/views/account/account-request.inc +++ b/app/modules/web/themes/material-blue/views/account/account-request.inc @@ -24,13 +24,12 @@ /** * @var callable $_getvar - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; diff --git a/app/modules/web/themes/material-blue/views/account/account.inc b/app/modules/web/themes/material-blue/views/account/account.inc index 1ddfb6b6..4d004e21 100644 --- a/app/modules/web/themes/material-blue/views/account/account.inc +++ b/app/modules/web/themes/material-blue/views/account/account.inc @@ -24,16 +24,16 @@ /** * @var callable $_getvar - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Mvc\View\Components\SelectItem; $accountData = $_getvar('accountData'); diff --git a/app/modules/web/themes/material-blue/views/account/actions.inc b/app/modules/web/themes/material-blue/views/account/actions.inc index c47400a1..eaa63dcb 100644 --- a/app/modules/web/themes/material-blue/views/account/actions.inc +++ b/app/modules/web/themes/material-blue/views/account/actions.inc @@ -30,10 +30,10 @@ * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Html\DataGrid\Action\DataGridActionInterface; ?> diff --git a/app/modules/web/themes/material-blue/views/account/details.inc b/app/modules/web/themes/material-blue/views/account/details.inc index 1d7c50a5..6fa2f2fa 100644 --- a/app/modules/web/themes/material-blue/views/account/details.inc +++ b/app/modules/web/themes/material-blue/views/account/details.inc @@ -23,14 +23,13 @@ */ /** - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var callable $_getvar * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; diff --git a/app/modules/web/themes/material-blue/views/account/files-list.inc b/app/modules/web/themes/material-blue/views/account/files-list.inc index ca64a2c0..c8509f5b 100644 --- a/app/modules/web/themes/material-blue/views/account/files-list.inc +++ b/app/modules/web/themes/material-blue/views/account/files-list.inc @@ -23,15 +23,15 @@ */ /** - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var callable $_getvar * @var ConfigDataInterface $configData * @var FileData $file */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\FileData; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Html\Html; ?> diff --git a/app/modules/web/themes/material-blue/views/account/files.inc b/app/modules/web/themes/material-blue/views/account/files.inc index e8eb6d32..fdfc453d 100644 --- a/app/modules/web/themes/material-blue/views/account/files.inc +++ b/app/modules/web/themes/material-blue/views/account/files.inc @@ -23,14 +23,13 @@ */ /** - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var callable $_getvar * @var AccountExtData $accountData * @var AccountAcl $accountAcl * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; diff --git a/app/modules/web/themes/material-blue/views/account/linkedAccounts.inc b/app/modules/web/themes/material-blue/views/account/linkedAccounts.inc index c34c34ed..65a3285d 100644 --- a/app/modules/web/themes/material-blue/views/account/linkedAccounts.inc +++ b/app/modules/web/themes/material-blue/views/account/linkedAccounts.inc @@ -28,8 +28,8 @@ * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; ?> diff --git a/app/modules/web/themes/material-blue/views/account/search-header.inc b/app/modules/web/themes/material-blue/views/account/search-header.inc index 2094a2fa..6071043a 100644 --- a/app/modules/web/themes/material-blue/views/account/search-header.inc +++ b/app/modules/web/themes/material-blue/views/account/search-header.inc @@ -23,14 +23,13 @@ */ /** - * @var ThemeIconsInterface $icons + * @var \SP\Domain\Core\UI\ThemeIconsInterface $icons * @var callable $_getvar * @var ConfigDataInterface $configData * @var AccountSearchItem $account * @var DataGridTab $data */ -use SP\Core\UI\ThemeIconsInterface; use SP\Domain\Account\Services\AccountSearchItem; use SP\Domain\Config\Ports\ConfigDataInterface; use SP\Html\DataGrid\DataGridTab; diff --git a/app/modules/web/themes/material-blue/views/account/search-index.inc b/app/modules/web/themes/material-blue/views/account/search-index.inc index fbcdd270..6b1982c5 100644 --- a/app/modules/web/themes/material-blue/views/account/search-index.inc +++ b/app/modules/web/themes/material-blue/views/account/search-index.inc @@ -30,9 +30,9 @@ * @var DataGrid $data */ -use SP\Core\UI\ThemeIconsInterface; use SP\Domain\Account\Services\AccountSearchItem; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Html\DataGrid\DataGrid; if (!isset($data)) { diff --git a/app/modules/web/themes/material-blue/views/account/search-rows.inc b/app/modules/web/themes/material-blue/views/account/search-rows.inc index 35d15bea..6acb458d 100644 --- a/app/modules/web/themes/material-blue/views/account/search-rows.inc +++ b/app/modules/web/themes/material-blue/views/account/search-rows.inc @@ -34,9 +34,9 @@ */ use SP\Core\Acl\AclActionsInterface; -use SP\Core\UI\ThemeIconsInterface; use SP\Domain\Account\Services\AccountSearchItem; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Html\DataGrid\Action\DataGridActionBase; use SP\Html\DataGrid\DataGridTab; use SP\Util\DateUtil; diff --git a/app/modules/web/themes/material-blue/views/account/search-searchbox.inc b/app/modules/web/themes/material-blue/views/account/search-searchbox.inc index eeee716d..278f643b 100644 --- a/app/modules/web/themes/material-blue/views/account/search-searchbox.inc +++ b/app/modules/web/themes/material-blue/views/account/search-searchbox.inc @@ -30,9 +30,9 @@ * @var DataGrid $data */ -use SP\Core\UI\ThemeIconsInterface; use SP\Domain\Account\Services\AccountSearchItem; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Html\DataGrid\DataGrid; use SP\Mvc\View\Components\SelectItem; diff --git a/app/modules/web/themes/material-blue/views/account/viewpass.inc b/app/modules/web/themes/material-blue/views/account/viewpass.inc index 6f1b01fa..e6ee7edc 100644 --- a/app/modules/web/themes/material-blue/views/account/viewpass.inc +++ b/app/modules/web/themes/material-blue/views/account/viewpass.inc @@ -30,10 +30,10 @@ * @var ConfigDataInterface $configData */ -use SP\Core\UI\ThemeIconsInterface; use SP\DataModel\AccountExtData; use SP\Domain\Account\Services\AccountAcl; use SP\Domain\Config\Ports\ConfigDataInterface; +use SP\Domain\Core\UI\ThemeIconsInterface; ?>