mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 17:46:02 +08:00
Move all entities to component folders
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
This commit is contained in:
parent
7044598f34
commit
3aed1df849
121 changed files with 133 additions and 132 deletions
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Data\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Data\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -4,7 +4,7 @@
|
|||
namespace App\Data\LegacyHandler;
|
||||
|
||||
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
|
||||
class ListData
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\Data\LegacyHandler;
|
|||
|
||||
use ApiBeanMapper;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\RecordProviderInterface;
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\Data\LegacyHandler;
|
|||
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Entity\RecordList;
|
||||
use App\Data\Entity\RecordList;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\RecordListProviderInterface;
|
||||
use InvalidArgumentException;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
namespace App\Data\LegacyHandler;
|
||||
|
||||
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
|
||||
class RecordMapper
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataPersister;
|
|||
|
||||
use ApiPlatform\Core\DataPersister\ContextAwareDataPersisterInterface;
|
||||
use ApiPlatform\Core\Exception\InvalidResourceException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
use App\Service\ProcessHandlerRegistry;
|
||||
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataPersister;
|
|||
|
||||
use ApiPlatform\Core\DataPersister\ContextAwareDataPersisterInterface;
|
||||
use ApiPlatform\Core\Exception\InvalidResourceException;
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
use App\Service\RecordProviderInterface;
|
||||
|
||||
class RecordDataPersister implements ContextAwareDataPersisterInterface
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\AppListStrings;
|
||||
use App\Languages\Entity\AppListStrings;
|
||||
use App\Languages\LegacyHandler\AppListStringsHandler;
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\AppStrings;
|
||||
use App\Languages\Entity\AppStrings;
|
||||
use App\Languages\LegacyHandler\AppStringsHandler;
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\BatchedStatistics;
|
||||
use App\Statistics\Entity\BatchedStatistics;
|
||||
use App\Service\StatisticsManagerInterface;
|
||||
|
||||
class BatchedStatisticsItemDataProvider implements ItemDataProviderInterface, RestrictedDataProviderInterface
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\LegacyHandler\FieldDefinitionsHandler;
|
||||
use Exception;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\ModStrings;
|
||||
use App\Languages\Entity\ModStrings;
|
||||
use App\Languages\LegacyHandler\ModStringsHandler;
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\Navbar;
|
||||
use App\Navbar\Entity\Navbar;
|
||||
use App\Service\NavigationProviderInterface;
|
||||
use Symfony\Component\Security\Core\Security;
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ use ApiPlatform\Core\DataProvider\ArrayPaginator;
|
|||
use ApiPlatform\Core\DataProvider\ContextAwareCollectionDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\PaginatorInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
|
||||
class ProcessCollectionDataProvider implements ContextAwareCollectionDataProviderInterface, RestrictedDataProviderInterface
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@ namespace App\DataProvider;
|
|||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use ApiPlatform\Core\Exception\ItemNotFoundException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
|
||||
class ProcessItemDataProvider implements ItemDataProviderInterface, RestrictedDataProviderInterface
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
use App\Service\RecordProviderInterface;
|
||||
use Exception;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ namespace App\DataProvider;
|
|||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Data\LegacyHandler\RecordListHandler;
|
||||
use App\Entity\RecordList;
|
||||
use App\Data\Entity\RecordList;
|
||||
use Exception;
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Service\StatisticsProviderRegistry;
|
||||
|
||||
class StatisticsItemDataProvider implements ItemDataProviderInterface, RestrictedDataProviderInterface
|
||||
|
|
|
@ -7,7 +7,7 @@ use ApiPlatform\Core\DataProvider\ArrayPaginator;
|
|||
use ApiPlatform\Core\DataProvider\ContextAwareCollectionDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\PaginatorInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\SystemConfig;
|
||||
use App\SystemConfig\Entity\SystemConfig;
|
||||
use App\Service\SystemConfigProviderInterface;
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\SystemConfig;
|
||||
use App\SystemConfig\Entity\SystemConfig;
|
||||
use App\Service\SystemConfigProviderInterface;
|
||||
|
||||
/**
|
||||
|
@ -56,4 +56,4 @@ final class SystemConfigItemDataProvider implements ItemDataProviderInterface, R
|
|||
|
||||
return $this->systemConfigProvider->getSystemConfig($id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\ThemeImages;
|
||||
use App\Themes\Entity\ThemeImages;
|
||||
use App\Service\ThemeImageService;
|
||||
|
||||
/**
|
||||
|
@ -56,4 +56,4 @@ final class ThemeImagesItemDataProvider implements ItemDataProviderInterface, Re
|
|||
|
||||
return $this->themeImageService->get($id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ use ApiPlatform\Core\DataProvider\ArrayPaginator;
|
|||
use ApiPlatform\Core\DataProvider\ContextAwareCollectionDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\PaginatorInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\UserPreference;
|
||||
use App\UserPreferences\Entity\UserPreference;
|
||||
use App\Service\UserPreferencesProviderInterface;
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\UserPreference;
|
||||
use App\UserPreferences\Entity\UserPreference;
|
||||
use App\Service\UserPreferencesProviderInterface;
|
||||
|
||||
/**
|
||||
|
@ -55,4 +55,4 @@ final class UserPreferenceItemDataProvider implements ItemDataProviderInterface,
|
|||
): ?UserPreference {
|
||||
return $this->userPreferenceService->getUserPreference($id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\DataProvider;
|
|||
|
||||
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
|
||||
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
|
||||
use App\Entity\ViewDefinition;
|
||||
use App\ViewDefinitions\Entity\ViewDefinition;
|
||||
use App\Service\ViewDefinitionsProviderInterface;
|
||||
use Exception;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\FieldDefinitions\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\FieldDefinitions\LegacyHandler;
|
||||
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
|
||||
interface FieldDefinitionMapperInterface
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\FieldDefinitions\LegacyHandler;
|
||||
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Service\FieldDefinitionsProviderInterface;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\FieldDefinitions\LegacyHandler;
|
||||
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
|
||||
class GroupedFieldDefinitionMapper implements FieldDefinitionMapperInterface, GroupedFieldDefinitionMapperInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\FieldDefinitions\LegacyHandler;
|
||||
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
|
||||
class LegacyGroupedFieldDefinitionMapper implements FieldDefinitionMapperInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\FieldDefinitions\LegacyHandler;
|
||||
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
|
||||
class LegacyReadOnlyFieldDefinitionMapper implements FieldDefinitionMapperInterface
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Languages\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Languages\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Languages\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -6,7 +6,7 @@ namespace App\Languages\LegacyHandler;
|
|||
|
||||
use ApiPlatform\Core\Exception\ItemNotFoundException;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Entity\AppListStrings;
|
||||
use App\Languages\Entity\AppListStrings;
|
||||
|
||||
class AppListStringsHandler extends LegacyHandler implements AppListStringsProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Languages\LegacyHandler;
|
||||
|
||||
use App\Entity\AppListStrings;
|
||||
use App\Languages\Entity\AppListStrings;
|
||||
|
||||
interface AppListStringsProviderInterface
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\Languages\LegacyHandler;
|
|||
|
||||
use ApiPlatform\Core\Exception\ItemNotFoundException;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Entity\AppStrings;
|
||||
use App\Languages\Entity\AppStrings;
|
||||
|
||||
class AppStringsHandler extends LegacyHandler
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace App\Languages\LegacyHandler;
|
|||
use ApiPlatform\Core\Exception\ItemNotFoundException;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Entity\ModStrings;
|
||||
use App\Languages\Entity\ModStrings;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ModuleRegistryInterface;
|
||||
use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Navbar\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Navbar\LegacyHandler;
|
||||
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Entity\Navbar;
|
||||
use App\Navbar\Entity\Navbar;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ModuleRegistryInterface;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Process\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -5,7 +5,7 @@ namespace App\Process\LegacyHandler;
|
|||
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
use BadFunctionCallException;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Repository;
|
||||
|
||||
use App\Entity\User;
|
||||
use App\Module\users\Entity\User;
|
||||
use Doctrine\ORM\EntityRepository;
|
||||
use Doctrine\ORM\NonUniqueResultException;
|
||||
use Symfony\Bridge\Doctrine\Security\User\UserLoaderInterface;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Resolver;
|
||||
|
||||
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
|
||||
use App\Entity\BatchedStatistics;
|
||||
use App\Statistics\Entity\BatchedStatistics;
|
||||
use App\Service\StatisticsManagerInterface;
|
||||
|
||||
class BatchedStatisticsItemResolver implements QueryItemResolverInterface
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Resolver;
|
||||
|
||||
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
use App\Service\RecordProviderInterface;
|
||||
use Exception;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\Resolver;
|
|||
|
||||
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
|
||||
use App\Data\LegacyHandler\RecordListHandler;
|
||||
use App\Entity\RecordList;
|
||||
use App\Data\Entity\RecordList;
|
||||
|
||||
class RecordListResolver implements QueryItemResolverInterface
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Resolver;
|
||||
|
||||
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Service\StatisticsManagerInterface;
|
||||
|
||||
class StatisticsItemResolver implements QueryItemResolverInterface
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Security;
|
||||
|
||||
use App\Entity\User;
|
||||
use App\Module\users\Entity\User;
|
||||
use App\Security\Exception\UserDeletedException;
|
||||
use Symfony\Component\Security\Core\User\UserCheckerInterface;
|
||||
use Symfony\Component\Security\Core\User\UserInterface;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Service\BulkActions;
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Data\LegacyHandler\FilterMapper\LegacyFilterMapper;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Service\BulkActions;
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
use App\Service\RecordDeletionServiceInterface;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Service\BulkActions;
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
use Psr\Log\LoggerAwareInterface;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
namespace App\Service;
|
||||
|
||||
|
||||
use App\Entity\FieldDefinition;
|
||||
use App\FieldDefinitions\Entity\FieldDefinition;
|
||||
|
||||
interface FieldDefinitionsProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\Navbar;
|
||||
use App\Navbar\Entity\Navbar;
|
||||
|
||||
interface NavigationProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
|
||||
interface ProcessHandlerInterface
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Service\RecordActions;
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Service\RecordActions;
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
use App\Service\RecordDeletionServiceInterface;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace App\Service\RecordActions;
|
||||
|
||||
use ApiPlatform\Core\Exception\InvalidArgumentException;
|
||||
use App\Entity\Process;
|
||||
use App\Process\Entity\Process;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
use App\Service\ProcessHandlerInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\RecordList;
|
||||
use App\Data\Entity\RecordList;
|
||||
|
||||
interface RecordListProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\Record;
|
||||
use App\Data\Entity\Record;
|
||||
use Exception;
|
||||
|
||||
interface RecordProviderInterface
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\BatchedStatistics;
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\BatchedStatistics;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use Psr\Log\LoggerAwareInterface;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Throwable;
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\BatchedStatistics;
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\BatchedStatistics;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
|
||||
interface StatisticsManagerInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
|
||||
interface StatisticsProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\SystemConfig;
|
||||
use App\SystemConfig\Entity\SystemConfig;
|
||||
|
||||
interface SystemConfigProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\ThemeImages;
|
||||
use App\Themes\Entity\ThemeImages;
|
||||
|
||||
class ThemeImageService
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\UserPreference;
|
||||
use App\UserPreferences\Entity\UserPreference;
|
||||
|
||||
interface UserPreferencesProviderInterface
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Service;
|
||||
|
||||
use App\Entity\ViewDefinition;
|
||||
use App\ViewDefinitions\Entity\ViewDefinition;
|
||||
use Exception;
|
||||
|
||||
interface ViewDefinitionsProviderInterface
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Statistics\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\Statistics\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Legacy\Data\PreparedStatementHandler;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Legacy\Data\SecurityFiltersTrait;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
use BeanFactory;
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\Statistics\LegacyHandler;
|
|||
|
||||
use aCase;
|
||||
use App\Data\LegacyHandler\AuditQueryingTrait;
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace App\Statistics\LegacyHandler;
|
|||
|
||||
use aCase;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
use BeanFactory;
|
||||
use Psr\Log\LoggerAwareInterface;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use DateTimeService;
|
||||
use Exception;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
class DefaultError implements StatisticsProviderInterface
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\AuditQueryingTrait;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\AuditQueryingTrait;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Legacy\Data\PreparedStatementHandler;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Legacy\Data\SecurityFiltersTrait;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler\Series;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\ListDataQueryHandler;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler\Series;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\ListDataQueryHandler;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler\Series;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\ListDataQueryHandler;
|
||||
use App\Engine\LegacyHandler\LegacyHandler;
|
||||
use App\Engine\LegacyHandler\LegacyScopeState;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler\Series;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Statistics\LegacyHandler\StatisticsHandlingTrait;
|
||||
use App\Model\Statistics\ChartOptions;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Model\Statistics\ChartOptions;
|
||||
use App\Model\Statistics\Series;
|
||||
use App\Model\Statistics\SeriesItem;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
use DateFormatService;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
use Psr\Log\LoggerAwareInterface;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Statistics\LegacyHandler;
|
||||
|
||||
use App\Entity\Statistic;
|
||||
use App\Statistics\Entity\Statistic;
|
||||
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
|
||||
use App\Service\StatisticsProviderInterface;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace App\Entity;
|
||||
namespace App\SystemConfig\Entity;
|
||||
|
||||
use ApiPlatform\Core\Annotation\ApiProperty;
|
||||
use ApiPlatform\Core\Annotation\ApiResource;
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\SystemConfig\LegacyHandler;
|
||||
|
||||
use App\Entity\SystemConfig;
|
||||
use App\SystemConfig\Entity\SystemConfig;
|
||||
use App\DateTime\LegacyHandler\DateTimeHandler;
|
||||
|
||||
class DateFormatConfigMapper implements SystemConfigMapperInterface
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\SystemConfig\LegacyHandler;
|
||||
|
||||
use App\Entity\SystemConfig;
|
||||
use App\SystemConfig\Entity\SystemConfig;
|
||||
use App\Currency\LegacyHandler\CurrencyHandler;
|
||||
|
||||
class DefaultCurrencyConfigMapper implements SystemConfigMapperInterface
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\SystemConfig\LegacyHandler;
|
||||
|
||||
use App\Entity\SystemConfig;
|
||||
use App\SystemConfig\Entity\SystemConfig;
|
||||
use App\Service\ModuleNameMapperInterface;
|
||||
|
||||
class DefaultModuleConfigMapper implements SystemConfigMapperInterface
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue