@@ -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,11 +2,6 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace Netgen\Bundle\InformationCollectionBundle\Controller\Admin; |
4 | 4 | |
5 | -use eZ\Publish\API\Repository\Values\Content\Content; |
|
6 | -use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute; |
|
7 | -use eZ\Bundle\EzPublishCoreBundle\Controller; |
|
8 | -use eZ\Publish\API\Repository\ContentService; |
|
9 | -use eZ\Publish\Core\MVC\ConfigResolverInterface; |
|
10 | 5 | use Netgen\InformationCollection\API\Persistence\Anonymizer\Anonymizer; |
11 | 6 | use Netgen\InformationCollection\API\Service\InformationCollection; |
12 | 7 | use Netgen\InformationCollection\API\Value\Collection; |
@@ -23,6 +18,11 @@ discard block |
||
23 | 18 | use Pagerfanta\Pagerfanta; |
24 | 19 | use Symfony\Component\HttpFoundation\Request; |
25 | 20 | use Symfony\Contracts\Translation\TranslatorInterface; |
21 | +use eZ\Bundle\EzPublishCoreBundle\Controller; |
|
22 | +use eZ\Publish\API\Repository\ContentService; |
|
23 | +use eZ\Publish\API\Repository\Values\Content\Content; |
|
24 | +use eZ\Publish\Core\MVC\ConfigResolverInterface; |
|
25 | +use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute; |
|
26 | 26 | |
27 | 27 | class AdminController extends Controller |
28 | 28 | { |
@@ -2,14 +2,14 @@ |
||
2 | 2 | |
3 | 3 | namespace Netgen\Bundle\InformationCollectionBundle\Controller\Admin\Export; |
4 | 4 | |
5 | -use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute; |
|
6 | -use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
|
7 | -use Netgen\InformationCollection\API\Value\Export\ExportCriteria; |
|
8 | 5 | use Netgen\InformationCollection\API\Service\Exporter; |
6 | +use Netgen\InformationCollection\API\Value\Export\ExportCriteria; |
|
9 | 7 | use Netgen\InformationCollection\Core\Export\ExportResponseFormatterRegistry; |
10 | -use Symfony\Component\HttpFoundation\Request; |
|
11 | 8 | use Netgen\InformationCollection\Form\Type\ExportType; |
9 | +use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
|
10 | +use Symfony\Component\HttpFoundation\Request; |
|
12 | 11 | use eZ\Publish\API\Repository\ContentService; |
12 | +use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute; |
|
13 | 13 | |
14 | 14 | final class Export extends AbstractController |
15 | 15 | { |
@@ -2,8 +2,6 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace Netgen\Bundle\InformationCollectionBundle\Controller\Admin; |
4 | 4 | |
5 | -use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute; |
|
6 | -use eZ\Bundle\EzPublishCoreBundle\Controller; |
|
7 | 5 | use Netgen\InformationCollection\API\Service\InformationCollection; |
8 | 6 | use Netgen\InformationCollection\API\Value\Content; |
9 | 7 | use Netgen\InformationCollection\API\Value\Filter\ContentId; |
@@ -11,6 +9,8 @@ discard block |
||
11 | 9 | use Symfony\Component\HttpFoundation\JsonResponse; |
12 | 10 | use Symfony\Component\Routing\RouterInterface; |
13 | 11 | use Symfony\Contracts\Translation\TranslatorInterface; |
12 | +use eZ\Bundle\EzPublishCoreBundle\Controller; |
|
13 | +use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute; |
|
14 | 14 | |
15 | 15 | class TreeController extends Controller |
16 | 16 | { |
@@ -2,13 +2,13 @@ |
||
2 | 2 | |
3 | 3 | namespace Netgen\InformationCollection\Core\Export; |
4 | 4 | |
5 | -use eZ\Publish\API\Repository\Values\Content\Content; |
|
6 | -use eZ\Publish\Core\Helper\TranslationHelper; |
|
7 | 5 | use Netgen\InformationCollection\API\Export\ExportResponseFormatter; |
8 | 6 | use Netgen\InformationCollection\API\Value\Export\Export; |
9 | -use Symfony\Component\HttpFoundation\Response; |
|
10 | 7 | use PHPExcel; |
11 | 8 | use PHPExcel_IOFactory; |
9 | +use Symfony\Component\HttpFoundation\Response; |
|
10 | +use eZ\Publish\API\Repository\Values\Content\Content; |
|
11 | +use eZ\Publish\Core\Helper\TranslationHelper; |
|
12 | 12 | |
13 | 13 | final class XlsExportResponseFormatter implements ExportResponseFormatter |
14 | 14 | { |