@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | namespace Netgen\InformationCollection\API\Value; |
6 | 6 | |
7 | -use eZ\Publish\API\Repository\Values\Content\Content; |
|
8 | -use eZ\Publish\API\Repository\Values\ContentType\ContentType; |
|
9 | 7 | use EzSystems\RepositoryForms\Data\Content\FieldData; |
8 | +use eZ\Publish\API\Repository\Values\ContentType\ContentType; |
|
9 | +use eZ\Publish\API\Repository\Values\Content\Content; |
|
10 | 10 | |
11 | 11 | final class InformationCollectionStruct extends ValueObject |
12 | 12 | { |
@@ -4,12 +4,12 @@ |
||
4 | 4 | |
5 | 5 | namespace Netgen\InformationCollection\API; |
6 | 6 | |
7 | -use eZ\Publish\Core\MVC\Symfony\View\ContentValueView; |
|
8 | -use eZ\Publish\Core\MVC\Symfony\View\LocationValueView; |
|
9 | 7 | use Netgen\InformationCollection\API\Form\DynamicFormBuilderInterface; |
10 | 8 | use Netgen\InformationCollection\API\Value\DataTransfer\AdditionalContent; |
11 | 9 | use Netgen\InformationCollection\API\Value\Event\InformationCollected; |
12 | 10 | use Symfony\Component\HttpFoundation\Request; |
11 | +use eZ\Publish\Core\MVC\Symfony\View\ContentValueView; |
|
12 | +use eZ\Publish\Core\MVC\Symfony\View\LocationValueView; |
|
13 | 13 | |
14 | 14 | trait InformationCollectionTrait |
15 | 15 | { |
@@ -2,6 +2,9 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace Netgen\Bundle\InformationCollectionBundle\Command; |
4 | 4 | |
5 | +use DateInterval; |
|
6 | +use DateTime; |
|
7 | +use Exception; |
|
5 | 8 | use Netgen\InformationCollection\Core\Persistence\Anonymizer\AnonymizerServiceFacade; |
6 | 9 | use Symfony\Component\Console\Command\Command; |
7 | 10 | use Symfony\Component\Console\Command\HelpCommand; |
@@ -10,9 +13,6 @@ discard block |
||
10 | 13 | use Symfony\Component\Console\Input\InputOption; |
11 | 14 | use Symfony\Component\Console\Output\OutputInterface; |
12 | 15 | use Symfony\Component\Console\Question\ConfirmationQuestion; |
13 | -use DateInterval; |
|
14 | -use DateTime; |
|
15 | -use Exception; |
|
16 | 16 | |
17 | 17 | class DataAnonymizerCommand extends Command |
18 | 18 | { |
@@ -5,13 +5,13 @@ |
||
5 | 5 | namespace Netgen\InformationCollection\Core\Factory; |
6 | 6 | |
7 | 7 | use function array_key_exists; |
8 | -use eZ\Publish\API\Repository\Values\Content\Field; |
|
9 | -use Netgen\InformationCollection\API\Constants; |
|
10 | 8 | use Netgen\InformationCollection\API\ConfigurationConstants; |
9 | +use Netgen\InformationCollection\API\Constants; |
|
11 | 10 | use Netgen\InformationCollection\API\Exception\MissingValueException; |
12 | 11 | use Netgen\InformationCollection\API\Value\DataTransfer\EmailContent; |
13 | 12 | use Netgen\InformationCollection\API\Value\DataTransfer\TemplateContent; |
14 | 13 | use Netgen\InformationCollection\API\Value\Event\InformationCollected; |
14 | +use eZ\Publish\API\Repository\Values\Content\Field; |
|
15 | 15 | use function trim; |
16 | 16 | |
17 | 17 | class AutoResponderDataFactory extends EmailDataFactory |
@@ -4,9 +4,6 @@ discard block |
||
4 | 4 | |
5 | 5 | namespace Netgen\InformationCollection\Core\Service; |
6 | 6 | |
7 | -use eZ\Publish\API\Repository\Exceptions\NotFoundException; |
|
8 | -use eZ\Publish\API\Repository\Repository; |
|
9 | -use eZ\Publish\API\Repository\Values\User\UserReference; |
|
10 | 7 | use Netgen\InformationCollection\API\Exception\PersistingFailedException; |
11 | 8 | use Netgen\InformationCollection\API\Exception\StoringAttributeFailedException; |
12 | 9 | use Netgen\InformationCollection\API\Exception\StoringCollectionFailedException; |
@@ -31,6 +28,8 @@ discard block |
||
31 | 28 | use Netgen\InformationCollection\Core\Persistence\Gateway\DoctrineDatabase; |
32 | 29 | use Netgen\InformationCollection\Doctrine\Repository\EzInfoCollectionAttributeRepository; |
33 | 30 | use Netgen\InformationCollection\Doctrine\Repository\EzInfoCollectionRepository; |
31 | +use eZ\Publish\API\Repository\Exceptions\NotFoundException; |
|
32 | +use eZ\Publish\API\Repository\Repository; |
|
34 | 33 | |
35 | 34 | class InformationCollectionService implements InformationCollection |
36 | 35 | { |
@@ -2,14 +2,14 @@ |
||
2 | 2 | |
3 | 3 | namespace Netgen\Bundle\InformationCollectionBundle\Controller; |
4 | 4 | |
5 | -use eZ\Publish\Core\MVC\Symfony\View\BaseView; |
|
6 | -use eZ\Publish\Core\MVC\Symfony\View\CachableView; |
|
7 | -use eZ\Publish\Core\MVC\Symfony\View\ContentValueView; |
|
8 | 5 | use Netgen\InformationCollection\API\InformationCollectionTrait; |
9 | 6 | use Netgen\InformationCollection\API\Value\DataTransfer\AdditionalContent; |
10 | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
11 | 8 | use Symfony\Component\DependencyInjection\ContainerAwareTrait; |
12 | 9 | use Symfony\Component\HttpFoundation\Request; |
10 | +use eZ\Publish\Core\MVC\Symfony\View\BaseView; |
|
11 | +use eZ\Publish\Core\MVC\Symfony\View\CachableView; |
|
12 | +use eZ\Publish\Core\MVC\Symfony\View\ContentValueView; |
|
13 | 13 | |
14 | 14 | class InformationCollectionController implements ContainerAwareInterface |
15 | 15 | { |
@@ -4,10 +4,10 @@ |
||
4 | 4 | |
5 | 5 | namespace Netgen\InformationCollection\Core\Persistence; |
6 | 6 | |
7 | +use OutOfBoundsException; |
|
7 | 8 | use eZ\Publish\API\Repository\ContentService; |
8 | 9 | use eZ\Publish\API\Repository\ContentTypeService; |
9 | 10 | use eZ\Publish\API\Repository\Values\ContentType\FieldDefinition; |
10 | -use OutOfBoundsException; |
|
11 | 11 | |
12 | 12 | final class ContentTypeUtils |
13 | 13 | { |
@@ -4,11 +4,11 @@ |
||
4 | 4 | |
5 | 5 | namespace Netgen\InformationCollection\Core\Persistence\FieldHandler\Custom; |
6 | 6 | |
7 | +use Netgen\InformationCollection\API\FieldHandler\CustomLegacyFieldHandlerInterface; |
|
8 | +use Netgen\InformationCollection\API\Value\Legacy\FieldValue; |
|
7 | 9 | use eZ\Publish\API\Repository\Values\ContentType\FieldDefinition; |
8 | 10 | use eZ\Publish\Core\FieldType\Checkbox\Value as CheckboxValue; |
9 | 11 | use eZ\Publish\Core\FieldType\Value; |
10 | -use Netgen\InformationCollection\API\FieldHandler\CustomLegacyFieldHandlerInterface; |
|
11 | -use Netgen\InformationCollection\API\Value\Legacy\FieldValue; |
|
12 | 12 | |
13 | 13 | class CheckboxFieldHandler implements CustomLegacyFieldHandlerInterface |
14 | 14 | { |
@@ -4,11 +4,11 @@ |
||
4 | 4 | |
5 | 5 | namespace Netgen\InformationCollection\Core\Persistence\FieldHandler\Custom; |
6 | 6 | |
7 | +use Netgen\InformationCollection\API\FieldHandler\CustomLegacyFieldHandlerInterface; |
|
8 | +use Netgen\InformationCollection\API\Value\Legacy\FieldValue; |
|
7 | 9 | use eZ\Publish\API\Repository\Values\ContentType\FieldDefinition; |
8 | 10 | use eZ\Publish\Core\FieldType\DateAndTime\Value as DateAndTimeValue; |
9 | 11 | use eZ\Publish\Core\FieldType\Value; |
10 | -use Netgen\InformationCollection\API\FieldHandler\CustomLegacyFieldHandlerInterface; |
|
11 | -use Netgen\InformationCollection\API\Value\Legacy\FieldValue; |
|
12 | 12 | |
13 | 13 | class DateAndTimeFieldHandler implements CustomLegacyFieldHandlerInterface |
14 | 14 | { |