@@ -43,24 +43,24 @@ discard block |
||
43 | 43 | 'log' => array( |
44 | 44 | 'Core/Log' => array( |
45 | 45 | 'writers' => array( |
46 | - array( |
|
47 | - 'name' => 'stream', |
|
46 | + array( |
|
47 | + 'name' => 'stream', |
|
48 | 48 | 'priority' => 1000, |
49 | 49 | 'options' => array( |
50 | - 'stream' => __DIR__ .'/../../../log/yawik.log', |
|
50 | + 'stream' => __DIR__ .'/../../../log/yawik.log', |
|
51 | + ), |
|
51 | 52 | ), |
52 | - ), |
|
53 | 53 | ), |
54 | 54 | ), |
55 | 55 | 'Log/Core/Mail' => array( |
56 | 56 | 'writers' => array( |
57 | - array( |
|
58 | - 'name' => 'stream', |
|
57 | + array( |
|
58 | + 'name' => 'stream', |
|
59 | 59 | 'priority' => 1000, |
60 | 60 | 'options' => array( |
61 | - 'stream' => __DIR__ .'/../../../log/mails.log', |
|
61 | + 'stream' => __DIR__ .'/../../../log/mails.log', |
|
62 | + ), |
|
62 | 63 | ), |
63 | - ), |
|
64 | 64 | ), |
65 | 65 | ), |
66 | 66 | ), |
@@ -317,13 +317,13 @@ discard block |
||
317 | 317 | ), |
318 | 318 | // Configuration of the controller service manager (Which loads controllers) |
319 | 319 | 'controllers' => array( |
320 | - 'factories' => [ |
|
321 | - 'Core/Index' => LazyControllerFactory::class, |
|
320 | + 'factories' => [ |
|
321 | + 'Core/Index' => LazyControllerFactory::class, |
|
322 | 322 | 'Core/Admin' => AdminControllerFactory::class, |
323 | - 'Core/File' => FileControllerFactory::class, |
|
323 | + 'Core/File' => FileControllerFactory::class, |
|
324 | 324 | 'Core/Content' => LazyControllerFactory::class, |
325 | 325 | Controller\Console\PurgeController::class => Controller\Console\PurgeControllerFactory::class, |
326 | - ], |
|
326 | + ], |
|
327 | 327 | ), |
328 | 328 | // Configuration of the controller plugin service manager |
329 | 329 | 'controller_plugins' => array( |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | 'paginatorservice' => 'Core/PaginatorService', |
355 | 355 | 'paginationParams' => 'Core/PaginationParams', |
356 | 356 | 'searchform' => 'Core/SearchForm', |
357 | - 'notification' => 'Notification', |
|
357 | + 'notification' => 'Notification', |
|
358 | 358 | ) |
359 | 359 | ), |
360 | 360 | // Configure the view service manager |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | ), |
453 | 453 | 'aliases' => [ |
454 | 454 | 'snippet' => \Core\View\Helper\Snippet::class, |
455 | - 'ajaxUrl' => \Core\View\Helper\AjaxUrl::class, |
|
455 | + 'ajaxUrl' => \Core\View\Helper\AjaxUrl::class, |
|
456 | 456 | 'proxy' => \Core\View\Helper\Proxy::class, |
457 | 457 | 'form_element' => 'formElement', |
458 | 458 | ], |
@@ -564,17 +564,17 @@ discard block |
||
564 | 564 | ], |
565 | 565 | |
566 | 566 | 'Core/Ajax/Events' => [ |
567 | - 'service' => 'Core/EventManager', |
|
568 | - 'event' => \Core\Listener\Events\AjaxEvent::class, |
|
567 | + 'service' => 'Core/EventManager', |
|
568 | + 'event' => \Core\Listener\Events\AjaxEvent::class, |
|
569 | 569 | ], |
570 | 570 | |
571 | - 'Core/File/Events' => [ |
|
572 | - 'service' => 'Core/EventManager', |
|
573 | - 'event' => \Core\Listener\Events\FileEvent::class, |
|
571 | + 'Core/File/Events' => [ |
|
572 | + 'service' => 'Core/EventManager', |
|
573 | + 'event' => \Core\Listener\Events\FileEvent::class, |
|
574 | 574 | 'listeners' => [ |
575 | 575 | \Core\Listener\DeleteImageSetListener::class => [\Core\Listener\Events\FileEvent::EVENT_DELETE, -1000], |
576 | 576 | ], |
577 | - ], |
|
577 | + ], |
|
578 | 578 | |
579 | 579 | 'Core/EntityEraser/Dependencies/Events' => [ |
580 | 580 | 'service' => Service\EntityEraser\EntityEraserEvents::class, |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | use Zend\I18n\Translator\Resources; |
20 | 20 | use Zend\ServiceManager\Factory\InvokableFactory; |
21 | 21 | |
22 | -$doctrineConfig = include __DIR__ . '/doctrine.config.php'; |
|
22 | +$doctrineConfig = include __DIR__.'/doctrine.config.php'; |
|
23 | 23 | |
24 | 24 | |
25 | 25 | return array( |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | 'doctrine' => $doctrineConfig, |
28 | 28 | |
29 | 29 | 'options' => [ |
30 | - 'Core/MailServiceOptions' => [ 'class' => '\Core\Options\MailServiceOptions' ], |
|
30 | + 'Core/MailServiceOptions' => ['class' => '\Core\Options\MailServiceOptions'], |
|
31 | 31 | ], |
32 | 32 | |
33 | 33 | 'Core' => array( |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | 'name' => 'stream', |
48 | 48 | 'priority' => 1000, |
49 | 49 | 'options' => array( |
50 | - 'stream' => __DIR__ .'/../../../log/yawik.log', |
|
50 | + 'stream' => __DIR__.'/../../../log/yawik.log', |
|
51 | 51 | ), |
52 | 52 | ), |
53 | 53 | ), |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | 'name' => 'stream', |
59 | 59 | 'priority' => 1000, |
60 | 60 | 'options' => array( |
61 | - 'stream' => __DIR__ .'/../../../log/mails.log', |
|
61 | + 'stream' => __DIR__.'/../../../log/mails.log', |
|
62 | 62 | ), |
63 | 63 | ), |
64 | 64 | ), |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | 'mode' => true, // true = production|false = development|null = autodetect|IP address(es) csv/array |
76 | 76 | 'bar' => false, // bool = enabled|Toggle nette diagnostics bar. |
77 | 77 | 'strict' => true, // bool = cause immediate death|int = matched against error severity |
78 | - 'log' => __DIR__ . '/../../../log/tracy', // path to log directory (this directory keeps error.log, snoozing mailsent file & html exception trace files) |
|
78 | + 'log' => __DIR__.'/../../../log/tracy', // path to log directory (this directory keeps error.log, snoozing mailsent file & html exception trace files) |
|
79 | 79 | 'email' => null, // in production mode notifies the recipient |
80 | 80 | 'email_snooze' => 900 // interval for sending email in seconds |
81 | 81 | ], |
@@ -245,16 +245,16 @@ discard block |
||
245 | 245 | 'Core/JsonEntityHydrator' => 'Core\Entity\Hydrator\JsonEntityHydratorFactory', |
246 | 246 | 'Core/EntityHydrator' => 'Core\Entity\Hydrator\EntityHydratorFactory', |
247 | 247 | 'Core/Options' => 'Core\Factory\ModuleOptionsFactory', |
248 | - 'Core/DoctrineMongoODM/RepositoryEvents' => [\Core\Repository\DoctrineMongoODM\Event\RepositoryEventsSubscriber::class,'factory'], |
|
249 | - 'DefaultListeners' => ['Core\Listener\DefaultListener','factory'], |
|
250 | - 'templateProviderStrategy' => ['Core\Form\Hydrator\Strategy\TemplateProviderStrategy','factory'], |
|
251 | - 'Core/Listener/DeferredListenerAggregate' => [\Core\Listener\DeferredListenerAggregate::class,'factory'], |
|
248 | + 'Core/DoctrineMongoODM/RepositoryEvents' => [\Core\Repository\DoctrineMongoODM\Event\RepositoryEventsSubscriber::class, 'factory'], |
|
249 | + 'DefaultListeners' => ['Core\Listener\DefaultListener', 'factory'], |
|
250 | + 'templateProviderStrategy' => ['Core\Form\Hydrator\Strategy\TemplateProviderStrategy', 'factory'], |
|
251 | + 'Core/Listener/DeferredListenerAggregate' => [\Core\Listener\DeferredListenerAggregate::class, 'factory'], |
|
252 | 252 | 'Core/Listener/CreatePaginator' => 'Core\Listener\CreatePaginatorListener::factory', |
253 | 253 | 'Core/Locale' => 'Core\I18n\LocaleFactory', |
254 | 254 | \Core\Listener\AjaxRouteListener::class => \Core\Factory\Listener\AjaxRouteListenerFactory::class, |
255 | 255 | \Core\Listener\DeleteImageSetListener::class => \Core\Factory\Listener\DeleteImageSetListenerFactory::class, |
256 | 256 | 'Imagine' => \Core\Factory\Service\ImagineFactory::class, |
257 | - 'Core/Listener/Notification' => [\Core\Listener\NotificationListener::class,'factory'], |
|
257 | + 'Core/Listener/Notification' => [\Core\Listener\NotificationListener::class, 'factory'], |
|
258 | 258 | Service\EntityEraser\DefaultEntityLoaderListener::class => Service\EntityEraser\DefaultEntityLoaderListenerFactory::class, |
259 | 259 | ), |
260 | 260 | 'abstract_factories' => array( |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | 'translation_file_patterns' => array( |
279 | 279 | [ |
280 | 280 | 'type' => 'gettext', |
281 | - 'base_dir' => __DIR__ . '/../language', |
|
281 | + 'base_dir' => __DIR__.'/../language', |
|
282 | 282 | 'pattern' => '%s.mo', |
283 | 283 | ], |
284 | 284 | [ |
@@ -334,9 +334,9 @@ discard block |
||
334 | 334 | 'Core/SearchForm' => 'Core\Factory\Controller\Plugin\SearchFormFactory', |
335 | 335 | 'listquery' => 'Core\Controller\Plugin\ListQuery::factory', |
336 | 336 | 'mail' => 'Core\Controller\Plugin\Mail::factory', |
337 | - 'Core/Mailer' => ['Core\Controller\Plugin\Mailer','factory'], |
|
338 | - 'Core/CreatePaginator' => [\Core\Controller\Plugin\CreatePaginator::class,'factory'], |
|
339 | - 'Core/PaginatorService' => [\Core\Controller\Plugin\CreatePaginatorService::class,'factory'], |
|
337 | + 'Core/Mailer' => ['Core\Controller\Plugin\Mailer', 'factory'], |
|
338 | + 'Core/CreatePaginator' => [\Core\Controller\Plugin\CreatePaginator::class, 'factory'], |
|
339 | + 'Core/PaginatorService' => [\Core\Controller\Plugin\CreatePaginatorService::class, 'factory'], |
|
340 | 340 | Controller\Plugin\EntityEraser::class => Controller\Plugin\EntityEraserFactory::class, |
341 | 341 | ), |
342 | 342 | 'invokables' => array( |
@@ -367,32 +367,32 @@ discard block |
||
367 | 367 | 'exception_template' => 'error/index', |
368 | 368 | // Map template to files. Speeds up the lookup through the template stack. |
369 | 369 | 'template_map' => array( |
370 | - 'noscript-notice' => __DIR__ . '/../view/layout/_noscript-notice.phtml', |
|
371 | - 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml', |
|
372 | - 'error/404' => __DIR__ . '/../view/error/404.phtml', |
|
373 | - 'error/403' => __DIR__ . '/../view/error/403.phtml', |
|
374 | - 'error/index' => __DIR__ . '/../view/error/index.phtml', |
|
375 | - 'main-navigation' => __DIR__ . '/../view/partial/main-navigation.phtml', |
|
376 | - 'pagination-control' => __DIR__ . '/../view/partial/pagination-control.phtml', |
|
377 | - 'core/loading-popup' => __DIR__ . '/../view/partial/loading-popup.phtml', |
|
378 | - 'core/notifications' => __DIR__ . '/../view/partial/notifications.phtml', |
|
379 | - 'form/core/buttons' => __DIR__ . '/../view/form/buttons.phtml', |
|
380 | - 'core/social-buttons' => __DIR__ . '/../view/partial/social-buttons.phtml', |
|
381 | - 'form/core/privacy' => __DIR__ . '/../view/form/privacy.phtml', |
|
382 | - 'core/form/permissions-fieldset' => __DIR__ . '/../view/form/permissions-fieldset.phtml', |
|
383 | - 'core/form/permissions-collection' => __DIR__ . '/../view/form/permissions-collection.phtml', |
|
384 | - 'core/form/container-view' => __DIR__ . '/../view/form/container.view.phtml', |
|
385 | - 'core/form/tree-manage.view' => __DIR__ . '/../view/form/tree-manage.view.phtml', |
|
386 | - 'core/form/tree-manage.form' => __DIR__ . '/../view/form/tree-manage.form.phtml', |
|
387 | - 'core/form/tree-add-item' => __DIR__ . '/../view/form/tree-add-item.phtml', |
|
388 | - 'mail/header' => __DIR__ . '/../view/mail/header.phtml', |
|
389 | - 'mail/footer' => __DIR__ . '/../view/mail/footer.phtml', |
|
390 | - 'mail/footer.en' => __DIR__ . '/../view/mail/footer.en.phtml', |
|
370 | + 'noscript-notice' => __DIR__.'/../view/layout/_noscript-notice.phtml', |
|
371 | + 'layout/layout' => __DIR__.'/../view/layout/layout.phtml', |
|
372 | + 'error/404' => __DIR__.'/../view/error/404.phtml', |
|
373 | + 'error/403' => __DIR__.'/../view/error/403.phtml', |
|
374 | + 'error/index' => __DIR__.'/../view/error/index.phtml', |
|
375 | + 'main-navigation' => __DIR__.'/../view/partial/main-navigation.phtml', |
|
376 | + 'pagination-control' => __DIR__.'/../view/partial/pagination-control.phtml', |
|
377 | + 'core/loading-popup' => __DIR__.'/../view/partial/loading-popup.phtml', |
|
378 | + 'core/notifications' => __DIR__.'/../view/partial/notifications.phtml', |
|
379 | + 'form/core/buttons' => __DIR__.'/../view/form/buttons.phtml', |
|
380 | + 'core/social-buttons' => __DIR__.'/../view/partial/social-buttons.phtml', |
|
381 | + 'form/core/privacy' => __DIR__.'/../view/form/privacy.phtml', |
|
382 | + 'core/form/permissions-fieldset' => __DIR__.'/../view/form/permissions-fieldset.phtml', |
|
383 | + 'core/form/permissions-collection' => __DIR__.'/../view/form/permissions-collection.phtml', |
|
384 | + 'core/form/container-view' => __DIR__.'/../view/form/container.view.phtml', |
|
385 | + 'core/form/tree-manage.view' => __DIR__.'/../view/form/tree-manage.view.phtml', |
|
386 | + 'core/form/tree-manage.form' => __DIR__.'/../view/form/tree-manage.form.phtml', |
|
387 | + 'core/form/tree-add-item' => __DIR__.'/../view/form/tree-add-item.phtml', |
|
388 | + 'mail/header' => __DIR__.'/../view/mail/header.phtml', |
|
389 | + 'mail/footer' => __DIR__.'/../view/mail/footer.phtml', |
|
390 | + 'mail/footer.en' => __DIR__.'/../view/mail/footer.en.phtml', |
|
391 | 391 | //'startpage' => __DIR__ . '/../view/layout/startpage.phtml', |
392 | 392 | ), |
393 | 393 | // Where to look for view templates not mapped above |
394 | 394 | 'template_path_stack' => array( |
395 | - __DIR__ . '/../view', |
|
395 | + __DIR__.'/../view', |
|
396 | 396 | ), |
397 | 397 | ), |
398 | 398 | 'view_helpers' => array( |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | if ($entity instanceOf Job) { |
37 | 37 | $entities = $event->getRepository('Applications')->findBy(['isDraft' => null, 'job' => new \MongoId($entity->getId())]); |
38 | 38 | |
39 | - return ['Applications', $entities, 'These applications references the job and will also be removed:' ]; |
|
39 | + return ['Applications', $entities, 'These applications references the job and will also be removed:']; |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $repository = $event->getRepository('Applications'); |
49 | 49 | $entities = $repository->findBy(['isDraft' => null, 'job' => new \MongoId($entity->getId())]); |
50 | 50 | foreach ($entities as $ent) { $repository->remove($ent); } |
51 | - return ['Applications', $entities, 'were removed.' ]; |
|
51 | + return ['Applications', $entities, 'were removed.']; |
|
52 | 52 | } |
53 | 53 | } |
54 | 54 |
@@ -1,330 +1,330 @@ |
||
1 | 1 | <?php |
2 | 2 | // Generated by ZF2's ./bin/classmap_generator.php |
3 | 3 | return array( |
4 | - 'Core\Acl\FileAccessAssertion' => __DIR__ . '/Core/Acl/FileAccessAssertion.php', |
|
5 | - 'Core\Collection\IdentityWrapper' => __DIR__ . '/Core/Collection/IdentityWrapper.php', |
|
6 | - 'Core\Console\ProgressBar' => __DIR__ . '/Core/Console/ProgressBar.php', |
|
7 | - 'Core\Controller\AbstractCoreController' => __DIR__ . '/Core/Controller/AbstractCoreController.php', |
|
8 | - 'Core\Controller\AdminController' => __DIR__ . '/Core/Controller/AdminController.php', |
|
9 | - 'Core\Controller\AdminControllerEvent' => __DIR__ . '/Core/Controller/AdminControllerEvent.php', |
|
10 | - 'Core\Controller\ContentController' => __DIR__ . '/Core/Controller/ContentController.php', |
|
11 | - 'Core\Controller\FileController' => __DIR__ . '/Core/Controller/FileController.php', |
|
12 | - 'Core\Controller\IndexController' => __DIR__ . '/Core/Controller/IndexController.php', |
|
13 | - 'Core\Controller\Plugin\Config' => __DIR__ . '/Core/Controller/Plugin/Config.php', |
|
14 | - 'Core\Controller\Plugin\ConfigFactory' => __DIR__ . '/Core/Controller/Plugin/ConfigFactory.php', |
|
15 | - 'Core\Controller\Plugin\ContentCollector' => __DIR__ . '/Core/Controller/Plugin/ContentCollector.php', |
|
16 | - 'Core\Controller\Plugin\CreatePaginator' => __DIR__ . '/Core/Controller/Plugin/CreatePaginator.php', |
|
17 | - 'Core\Controller\Plugin\CreatePaginatorService' => __DIR__ . '/Core/Controller/Plugin/CreatePaginatorService.php', |
|
18 | - 'Core\Controller\Plugin\EntitySnapshot' => __DIR__ . '/Core/Controller/Plugin/EntitySnapshot.php', |
|
19 | - 'Core\Controller\Plugin\FileSender' => __DIR__ . '/Core/Controller/Plugin/FileSender.php', |
|
20 | - 'Core\Controller\Plugin\ListQuery' => __DIR__ . '/Core/Controller/Plugin/ListQuery.php', |
|
21 | - 'Core\Controller\Plugin\Mailer' => __DIR__ . '/Core/Controller/Plugin/Mailer.php', |
|
22 | - 'Core\Controller\Plugin\Notification' => __DIR__ . '/Core/Controller/Plugin/Notification.php', |
|
23 | - 'Core\Controller\Plugin\PaginationBuilder' => __DIR__ . '/Core/Controller/Plugin/PaginationBuilder.php', |
|
24 | - 'Core\Controller\Plugin\PaginationParams' => __DIR__ . '/Core/Controller/Plugin/PaginationParams.php', |
|
25 | - 'Core\Controller\Plugin\SearchForm' => __DIR__ . '/Core/Controller/Plugin/SearchForm.php', |
|
26 | - 'Core\Controller\Plugin\Service\EntitySnapshotFactory' => __DIR__ . '/Core/Controller/Plugin/Service/EntitySnapshotFactory.php', |
|
27 | - 'Core\Controller\Plugin\Service\NotificationFactory' => __DIR__ . '/Core/Controller/Plugin/Service/NotificationFactory.php', |
|
28 | - 'Core\Controller\Plugin\mail' => __DIR__ . '/Core/Controller/Plugin/Mail.php', |
|
29 | - 'Core\Decorator\Decorator' => __DIR__ . '/Core/Decorator/Decorator.php', |
|
30 | - 'Core\Decorator\ProxyDecorator' => __DIR__ . '/Core/Decorator/ProxyDecorator.php', |
|
31 | - 'Core\Entity\AbstractEntity' => __DIR__ . '/Core/Entity/AbstractEntity.php', |
|
32 | - 'Core\Entity\AbstractIdentifiableEntity' => __DIR__ . '/Core/Entity/AbstractIdentifiableEntity.php', |
|
33 | - 'Core\Entity\AbstractIdentifiableHydratorAwareEntity' => __DIR__ . '/Core/Entity/AbstractIdentifiableHydratorAwareEntity.php', |
|
34 | - 'Core\Entity\AbstractIdentifiableModificationDateAwareEntity' => __DIR__ . '/Core/Entity/AbstractIdentifiableModificationDateAwareEntity.php', |
|
35 | - 'Core\Entity\AbstractLocation' => __DIR__ . '/Core/Entity/AbstractLocation.php', |
|
36 | - 'Core\Entity\AbstractRatingEntity' => __DIR__ . '/Core/Entity/AbstractRatingEntity.php', |
|
37 | - 'Core\Entity\AbstractStatusEntity' => __DIR__ . '/Core/Entity/AbstractStatusEntity.php', |
|
38 | - 'Core\Entity\AddressInterface' => __DIR__ . '/Core/Entity/AddressInterface.php', |
|
39 | - 'Core\Entity\AttachableEntityInterface' => __DIR__ . '/Core/Entity/AttachableEntityInterface.php', |
|
40 | - 'Core\Entity\AttachableEntityManager' => __DIR__ . '/Core/Entity/AttachableEntityManager.php', |
|
41 | - 'Core\Entity\AttachableEntityTrait' => __DIR__ . '/Core/Entity/AttachableEntityTrait.php', |
|
42 | - 'Core\Entity\ClonableEntityInterface' => __DIR__ . '/Core/Entity/ClonableEntityInterface.php', |
|
43 | - 'Core\Entity\ClonePropertiesTrait' => __DIR__ . '/Core/Entity/ClonePropertiesTrait.php', |
|
44 | - 'Core\Entity\Collection\ArrayCollection' => __DIR__ . '/Core/Entity/Collection/ArrayCollection.php', |
|
45 | - 'Core\Entity\Coordinates' => __DIR__ . '/Core/Entity/Coordinates.php', |
|
46 | - 'Core\Entity\CoordinatesInterface' => __DIR__ . '/Core/Entity/CoordinatesInterface.php', |
|
47 | - 'Core\Entity\DraftableEntityInterface' => __DIR__ . '/Core/Entity/DraftableEntityInterface.php', |
|
48 | - 'Core\Entity\DraftableEntityTrait' => __DIR__ . '/Core/Entity/DraftableEntityTrait.php', |
|
49 | - 'Core\Entity\EntityInterface' => __DIR__ . '/Core/Entity/EntityInterface.php', |
|
50 | - 'Core\Entity\EntityTrait' => __DIR__ . '/Core/Entity/EntityTrait.php', |
|
51 | - 'Core\Entity\Exception\ExceptionInterface' => __DIR__ . '/Core/Entity/Exception/ExceptionInterface.php', |
|
52 | - 'Core\Entity\Exception\ImmutableEntityException' => __DIR__ . '/Core/Entity/Exception/ImmutableEntityException.php', |
|
53 | - 'Core\Entity\Exception\NotFoundException' => __DIR__ . '/Core/Entity/Exception/NotFoundException.php', |
|
54 | - 'Core\Entity\Exception\OutOfBoundsException' => __DIR__ . '/Core/Entity/Exception/OutOfBoundsException.php', |
|
55 | - 'Core\Entity\FileEntity' => __DIR__ . '/Core/Entity/FileEntity.php', |
|
56 | - 'Core\Entity\FileInterface' => __DIR__ . '/Core/Entity/FileInterface.php', |
|
57 | - 'Core\Entity\Hydrator\AnonymEntityHydrator' => __DIR__ . '/Core/Entity/Hydrator/AnonymEntityHydrator.php', |
|
58 | - 'Core\Entity\Hydrator\EntityHydrator' => __DIR__ . '/Core/Entity/Hydrator/EntityHydrator.php', |
|
59 | - 'Core\Entity\Hydrator\EntityHydratorFactory' => __DIR__ . '/Core/Entity/Hydrator/EntityHydratorFactory.php', |
|
60 | - 'Core\Entity\Hydrator\Factory\ImageSetHydratorFactory' => __DIR__ . '/Core/Entity/Hydrator/Factory/ImageSetHydratorFactory.php', |
|
61 | - 'Core\Entity\Hydrator\FileCollectionUploadHydrator' => __DIR__ . '/Core/Entity/Hydrator/FileCollectionUploadHydrator.php', |
|
62 | - 'Core\Entity\Hydrator\ImageSetHydrator' => __DIR__ . '/Core/Entity/Hydrator/ImageSetHydrator.php', |
|
63 | - 'Core\Entity\Hydrator\JsonEntityHydrator' => __DIR__ . '/Core/Entity/Hydrator/JsonEntityHydrator.php', |
|
64 | - 'Core\Entity\Hydrator\JsonEntityHydratorFactory' => __DIR__ . '/Core/Entity/Hydrator/JsonEntityHydratorFactory.php', |
|
65 | - 'Core\Entity\Hydrator\MappingEntityHydrator' => __DIR__ . '/Core/Entity/Hydrator/MappingEntityHydrator.php', |
|
66 | - 'Core\Entity\Hydrator\Strategy\FileCopyStrategy' => __DIR__ . '/Core/Entity/Hydrator/Strategy/FileCopyStrategy.php', |
|
67 | - 'Core\Entity\Hydrator\Strategy\FileUploadStrategy' => __DIR__ . '/Core/Entity/Hydrator/Strategy/FileUploadStrategy.php', |
|
68 | - 'Core\Entity\IdentifiableEntityInterface' => __DIR__ . '/Core/Entity/IdentifiableEntityInterface.php', |
|
69 | - 'Core\Entity\IdentifiableEntityTrait' => __DIR__ . '/Core/Entity/IdentifiableEntityTrait.php', |
|
70 | - 'Core\Entity\Image' => __DIR__ . '/Core/Entity/Image.php', |
|
71 | - 'Core\Entity\ImageInterface' => __DIR__ . '/Core/Entity/ImageInterface.php', |
|
72 | - 'Core\Entity\ImageSet' => __DIR__ . '/Core/Entity/ImageSet.php', |
|
73 | - 'Core\Entity\ImageSetInterface' => __DIR__ . '/Core/Entity/ImageSetInterface.php', |
|
74 | - 'Core\Entity\ImageTrait' => __DIR__ . '/Core/Entity/ImageTrait.php', |
|
75 | - 'Core\Entity\ImmutableEntityInterface' => __DIR__ . '/Core/Entity/ImmutableEntityInterface.php', |
|
76 | - 'Core\Entity\ImmutableEntityTrait' => __DIR__ . '/Core/Entity/ImmutableEntityTrait.php', |
|
77 | - 'Core\Entity\LocalizationSettings' => __DIR__ . '/Core/Entity/LocalizationSettings.php', |
|
78 | - 'Core\Entity\LocationInterface' => __DIR__ . '/Core/Entity/LocationInterface.php', |
|
79 | - 'Core\Entity\MetaDataProviderInterface' => __DIR__ . '/Core/Entity/MetaDataProviderInterface.php', |
|
80 | - 'Core\Entity\MetaDataProviderTrait' => __DIR__ . '/Core/Entity/MetaDataProviderTrait.php', |
|
81 | - 'Core\Entity\ModificationDateAwareEntityInterface' => __DIR__ . '/Core/Entity/ModificationDateAwareEntityInterface.php', |
|
82 | - 'Core\Entity\ModificationDateAwareEntityTrait' => __DIR__ . '/Core/Entity/ModificationDateAwareEntityTrait.php', |
|
83 | - 'Core\Entity\Permissions' => __DIR__ . '/Core/Entity/Permissions.php', |
|
84 | - 'Core\Entity\PermissionsAwareInterface' => __DIR__ . '/Core/Entity/PermissionsAwareInterface.php', |
|
85 | - 'Core\Entity\PermissionsAwareTrait' => __DIR__ . '/Core/Entity/PermissionsAwareTrait.php', |
|
86 | - 'Core\Entity\PermissionsInterface' => __DIR__ . '/Core/Entity/PermissionsInterface.php', |
|
87 | - 'Core\Entity\PermissionsReference' => __DIR__ . '/Core/Entity/PermissionsReference.php', |
|
88 | - 'Core\Entity\PermissionsResourceInterface' => __DIR__ . '/Core/Entity/PermissionsResourceInterface.php', |
|
89 | - 'Core\Entity\PreUpdateAwareInterface' => __DIR__ . '/Core/Entity/PreUpdateAwareInterface.php', |
|
90 | - 'Core\Entity\RatingInterface' => __DIR__ . '/Core/Entity/RatingInterface.php', |
|
91 | - 'Core\Entity\SearchableEntityInterface' => __DIR__ . '/Core/Entity/SearchableEntityInterface.php', |
|
92 | - 'Core\Entity\SettingsContainer' => __DIR__ . '/Core/Entity/SettingsContainer.php', |
|
93 | - 'Core\Entity\Snapshot' => __DIR__ . '/Core/Entity/Snapshot.php', |
|
94 | - 'Core\Entity\SnapshotAttributesProviderInterface' => __DIR__ . '/Core/Entity/SnapshotAttributesProviderInterface.php', |
|
95 | - 'Core\Entity\SnapshotGeneratorProviderInterface' => __DIR__ . '/Core/Entity/SnapshotGeneratorProviderInterface.php', |
|
96 | - 'Core\Entity\SnapshotInterface' => __DIR__ . '/Core/Entity/SnapshotInterface.php', |
|
97 | - 'Core\Entity\SnapshotMeta' => __DIR__ . '/Core/Entity/SnapshotMeta.php', |
|
98 | - 'Core\Entity\SnapshotTrait' => __DIR__ . '/Core/Entity/SnapshotTrait.php', |
|
99 | - 'Core\Entity\StatusAwareEntityInterface' => __DIR__ . '/Core/Entity/StatusAwareEntityInterface.php', |
|
100 | - 'Core\Entity\StatusAwareEntityTrait' => __DIR__ . '/Core/Entity/StatusAwareEntityTrait.php', |
|
101 | - 'Core\Entity\StatusInterface' => __DIR__ . '/Core/Entity/StatusInterface.php', |
|
102 | - 'Core\Entity\Status\AbstractSortableStatus' => __DIR__ . '/Core/Entity/Status/AbstractSortableStatus.php', |
|
103 | - 'Core\Entity\Status\AbstractStatus' => __DIR__ . '/Core/Entity/Status/AbstractStatus.php', |
|
104 | - 'Core\Entity\Status\StatusAwareEntityInterface' => __DIR__ . '/Core/Entity/Status/StatusAwareEntityInterface.php', |
|
105 | - 'Core\Entity\Status\StatusAwareEntityTrait' => __DIR__ . '/Core/Entity/Status/StatusAwareEntityTrait.php', |
|
106 | - 'Core\Entity\Status\StatusInterface' => __DIR__ . '/Core/Entity/Status/StatusInterface.php', |
|
107 | - 'Core\Entity\Timeline' => __DIR__ . '/Core/Entity/Timeline.php', |
|
108 | - 'Core\Entity\Tree\AbstractLeafs' => __DIR__ . '/Core/Entity/Tree/AbstractLeafs.php', |
|
109 | - 'Core\Entity\Tree\AttachedLeafs' => __DIR__ . '/Core/Entity/Tree/AttachedLeafs.php', |
|
110 | - 'Core\Entity\Tree\EmbeddedLeafs' => __DIR__ . '/Core/Entity/Tree/EmbeddedLeafs.php', |
|
111 | - 'Core\Entity\Tree\LeafsInterface' => __DIR__ . '/Core/Entity/Tree/LeafsInterface.php', |
|
112 | - 'Core\Entity\Tree\Node' => __DIR__ . '/Core/Entity/Tree/Node.php', |
|
113 | - 'Core\Entity\Tree\NodeInterface' => __DIR__ . '/Core/Entity/Tree/NodeInterface.php', |
|
114 | - 'Core\EventManager\EventManager' => __DIR__ . '/Core/EventManager/EventManager.php', |
|
115 | - 'Core\EventManager\EventProviderInterface' => __DIR__ . '/Core/EventManager/EventProviderInterface.php', |
|
116 | - 'Core\EventManager\ListenerAggregateTrait' => __DIR__ . '/Core/EventManager/ListenerAggregateTrait.php', |
|
117 | - 'Core\Exception\ExceptionInterface' => __DIR__ . '/Core/Exception/ExceptionInterface.php', |
|
118 | - 'Core\Exception\ImmutablePropertyException' => __DIR__ . '/Core/Exception/ImmutablePropertyException.php', |
|
119 | - 'Core\Exception\MissingDependencyException' => __DIR__ . '/Core/Exception/MissingDependencyException.php', |
|
120 | - 'Core\Factory\Controller\Plugin\SearchFormFactory' => __DIR__ . '/Core/Factory/Controller/Plugin/SearchFormFactory.php', |
|
121 | - 'Core\Factory\EventManager\EventManagerAbstractFactory' => __DIR__ . '/Core/Factory/EventManager/EventManagerAbstractFactory.php', |
|
122 | - 'Core\Factory\Filter\HtmlAbsPathFilterFactory' => __DIR__ . '/Core/Factory/Filter/HtmlAbsPathFilterFactory.php', |
|
123 | - 'Core\Factory\Form\AbstractCustomizableFieldsetFactory' => __DIR__ . '/Core/Factory/Form/AbstractCustomizableFieldsetFactory.php', |
|
124 | - 'Core\Factory\Form\Tree\SelectFactory' => __DIR__ . '/Core/Factory/Form/Tree/SelectFactory.php', |
|
125 | - 'Core\Factory\Form\View\Helper\FormEditorLightFactory' => __DIR__ . '/Core/Factory/Form/View/Helper/FormEditorLightFactory.php', |
|
126 | - 'Core\Factory\Listener\AjaxRouteListenerFactory' => __DIR__ . '/Core/Factory/Listener/AjaxRouteListenerFactory.php', |
|
127 | - 'Core\Factory\Listener\DeleteImageSetListenerFactory' => __DIR__ . '/Core/Factory/Listener/DeleteImageSetListenerFactory.php', |
|
128 | - 'Core\Factory\ModuleOptionsFactory' => __DIR__ . '/Core/Factory/ModuleOptionsFactory.php', |
|
129 | - 'Core\Factory\Navigation\DefaultNavigationFactory' => __DIR__ . '/Core/Factory/Navigation/DefaultNavigationFactory.php', |
|
130 | - 'Core\Factory\OptionsAbstractFactory' => __DIR__ . '/Core/Factory/OptionsAbstractFactory.php', |
|
131 | - 'Core\Factory\Paginator\RepositoryAbstractFactory' => __DIR__ . '/Core/Factory/Paginator/RepositoryAbstractFactory.php', |
|
132 | - 'Core\Factory\Service\ImagineFactory' => __DIR__ . '/Core/Factory/Service/ImagineFactory.php', |
|
133 | - 'Core\Factory\Service\RestClientFactory' => __DIR__ . '/Core/Factory/Service/RestClientFactory.php', |
|
134 | - 'Core\Factory\View\Helper\AjaxUrlFactory' => __DIR__ . '/Core/Factory/View/Helper/AjaxUrlFactory.php', |
|
135 | - 'Core\Factory\View\Helper\SnippetFactory' => __DIR__ . '/Core/Factory/View/Helper/SnippetFactory.php', |
|
136 | - 'Core\Factory\View\Helper\SocialButtonsFactory' => __DIR__ . '/Core/Factory/View/Helper/SocialButtonsFactory.php', |
|
137 | - 'Core\Filter\HtmlAbsPathFilter' => __DIR__ . '/Core/Filter/HtmlAbsPathFilter.php', |
|
138 | - 'Core\Filter\XssFilter' => __DIR__ . '/Core/Filter/XssFilter.php', |
|
139 | - 'Core\Filter\XssFilterFactory' => __DIR__ . '/Core/Filter/XssFilterFactory.php', |
|
140 | - 'Core\Form\BaseForm' => __DIR__ . '/Core/Form/BaseForm.php', |
|
141 | - 'Core\Form\ButtonsFieldset' => __DIR__ . '/Core/Form/ButtonsFieldset.php', |
|
142 | - 'Core\Form\CollectionContainer' => __DIR__ . '/Core/Form/CollectionContainer.php', |
|
143 | - 'Core\Form\Container' => __DIR__ . '/Core/Form/Container.php', |
|
144 | - 'Core\Form\CustomizableFieldsetInterface' => __DIR__ . '/Core/Form/CustomizableFieldsetInterface.php', |
|
145 | - 'Core\Form\CustomizableFieldsetTrait' => __DIR__ . '/Core/Form/CustomizableFieldsetTrait.php', |
|
146 | - 'Core\Form\DefaultButtonsFieldset' => __DIR__ . '/Core/Form/DefaultButtonsFieldset.php', |
|
147 | - 'Core\Form\DescriptionAwareFormInterface' => __DIR__ . '/Core/Form/DescriptionAwareFormInterface.php', |
|
148 | - 'Core\Form\DisableCapableInterface' => __DIR__ . '/Core/Form/DisableCapableInterface.php', |
|
149 | - 'Core\Form\DisableElementsCapableInterface' => __DIR__ . '/Core/Form/DisableElementsCapableInterface.php', |
|
150 | - 'Core\Form\Element\Checkbox' => __DIR__ . '/Core/Form/Element/Checkbox.php', |
|
151 | - 'Core\Form\Element\Select' => __DIR__ . '/Core/Form/Element/Select.php', |
|
152 | - 'Core\Form\Element\DatePicker' => __DIR__ . '/Core/Form/Element/DatePicker.php', |
|
153 | - 'Core\Form\Element\DateRange' => __DIR__ . '/Core/Form/Element/DateRange.php', |
|
154 | - 'Core\Form\Element\Editor' => __DIR__ . '/Core/Form/Element/Editor.php', |
|
155 | - 'Core\Form\Element\EditorLight' => __DIR__ . '/Core/Form/Element/EditorLight.php', |
|
156 | - 'Core\Form\Element\FileUpload' => __DIR__ . '/Core/Form/Element/FileUpload.php', |
|
157 | - 'Core\Form\Element\InfoCheckbox' => __DIR__ . '/Core/Form/Element/InfoCheckbox.php', |
|
158 | - 'Core\Form\Element\Phone' => __DIR__ . '/Core/Form/Element/Phone.php', |
|
159 | - 'Core\Form\Element\Rating' => __DIR__ . '/Core/Form/Element/Rating.php', |
|
160 | - 'Core\Form\Element\SpinnerSubmit' => __DIR__ . '/Core/Form/Element/SpinnerSubmit.php', |
|
161 | - 'Core\Form\Element\ToggleButton' => __DIR__ . '/Core/Form/Element/ToggleButton.php', |
|
162 | - 'Core\Form\Element\ViewHelperProviderInterface' => __DIR__ . '/Core/Form/Element/ViewHelperProviderInterface.php', |
|
163 | - 'Core\Form\EmptySummaryAwareInterface' => __DIR__ . '/Core/Form/EmptySummaryAwareInterface.php', |
|
164 | - 'Core\Form\EmptySummaryAwareTrait' => __DIR__ . '/Core/Form/EmptySummaryAwareTrait.php', |
|
165 | - 'Core\Form\Event\FormEvent' => __DIR__ . '/Core/Form/Event/FormEvent.php', |
|
166 | - 'Core\Form\ExplicitParameterProviderInterface' => __DIR__ . '/Core/Form/ExplicitParameterProviderInterface.php', |
|
167 | - 'Core\Form\FileUploadFactory' => __DIR__ . '/Core/Form/FileUploadFactory.php', |
|
168 | - 'Core\Form\Form' => __DIR__ . '/Core/Form/Form.php', |
|
169 | - 'Core\Form\FormParentInterface' => __DIR__ . '/Core/Form/FormParentInterface.php', |
|
170 | - 'Core\Form\FormSubmitButtonsFieldset' => __DIR__ . '/Core/Form/FormSubmitButtonsFieldset.php', |
|
171 | - 'Core\Form\HeadscriptProviderInterface' => __DIR__ . '/Core/Form/HeadscriptProviderInterface.php', |
|
172 | - 'Core\Form\HydratorStrategyAwareTrait' => __DIR__ . '/Core/Form/HydratorStrategyAwareTrait.php', |
|
173 | - 'Core\Form\Hydrator\HydratorStrategyProviderInterface' => __DIR__ . '/Core/Form/Hydrator/HydratorStrategyProviderInterface.php', |
|
174 | - 'Core\Form\Hydrator\HydratorStrategyProviderTrait' => __DIR__ . '/Core/Form/Hydrator/HydratorStrategyProviderTrait.php', |
|
175 | - 'Core\Form\Hydrator\MetaDataHydrator' => __DIR__ . '/Core/Form/Hydrator/MetaDataHydrator.php', |
|
176 | - 'Core\Form\Hydrator\Strategy\CollectionStrategy' => __DIR__ . '/Core/Form/Hydrator/Strategy/CollectionStrategy.php', |
|
177 | - 'Core\Form\Hydrator\Strategy\TemplateProviderStrategy' => __DIR__ . '/Core/Form/Hydrator/Strategy/TemplateProviderStrategy.php', |
|
178 | - 'Core\Form\Hydrator\Strategy\TreeSelectStrategy' => __DIR__ . '/Core/Form/Hydrator/Strategy/TreeSelectStrategy.php', |
|
179 | - 'Core\Form\Hydrator\TreeHydrator' => __DIR__ . '/Core/Form/Hydrator/TreeHydrator.php', |
|
180 | - 'Core\Form\ListFilterButtonsFieldset' => __DIR__ . '/Core/Form/ListFilterButtonsFieldset.php', |
|
181 | - 'Core\Form\LocalizationSettingsFieldset' => __DIR__ . '/Core/Form/LocalizationSettingsFieldset.php', |
|
182 | - 'Core\Form\MetaDataFieldset' => __DIR__ . '/Core/Form/MetaDataFieldset.php', |
|
183 | - 'Core\Form\PermissionsCollection' => __DIR__ . '/Core/Form/PermissionsCollection.php', |
|
184 | - 'Core\Form\PermissionsFieldset' => __DIR__ . '/Core/Form/PermissionsFieldset.php', |
|
185 | - 'Core\Form\RatingFieldset' => __DIR__ . '/Core/Form/RatingFieldset.php', |
|
186 | - 'Core\Form\SearchForm' => __DIR__ . '/Core/Form/SearchForm.php', |
|
187 | - 'Core\Form\Service\Initializer' => __DIR__ . '/Core/Form/Service/Initializer.php', |
|
188 | - 'Core\Form\Service\InjectHeadscriptInitializer' => __DIR__ . '/Core/Form/Service/InjectHeadscriptInitializer.php', |
|
189 | - 'Core\Form\SummaryForm' => __DIR__ . '/Core/Form/SummaryForm.php', |
|
190 | - 'Core\Form\SummaryFormButtonsFieldset' => __DIR__ . '/Core/Form/SummaryFormButtonsFieldset.php', |
|
191 | - 'Core\Form\SummaryFormInterface' => __DIR__ . '/Core/Form/SummaryFormInterface.php', |
|
192 | - 'Core\Form\Tree\AddItemFieldset' => __DIR__ . '/Core/Form/Tree/AddItemFieldset.php', |
|
193 | - 'Core\Form\Tree\ManagementFieldset' => __DIR__ . '/Core/Form/Tree/ManagementFieldset.php', |
|
194 | - 'Core\Form\Tree\ManagementForm' => __DIR__ . '/Core/Form/Tree/ManagementForm.php', |
|
195 | - 'Core\Form\Tree\Select' => __DIR__ . '/Core/Form/Tree/Select.php', |
|
196 | - 'Core\Form\ViewPartialProviderAbstract' => __DIR__ . '/Core/Form/ViewPartialProviderAbstract.php', |
|
197 | - 'Core\Form\ViewPartialProviderInterface' => __DIR__ . '/Core/Form/ViewPartialProviderInterface.php', |
|
198 | - 'Core\Form\ViewPartialProviderTrait' => __DIR__ . '/Core/Form/ViewPartialProviderTrait.php', |
|
199 | - 'Core\Form\View\Helper\Element\SpinnerButton' => __DIR__ . '/Core/Form/View/Helper/Element/SpinnerButton.php', |
|
200 | - 'Core\Form\View\Helper\FilterForm' => __DIR__ . '/Core/Form/View/Helper/FilterForm.php', |
|
201 | - 'Core\Form\View\Helper\Form' => __DIR__ . '/Core/Form/View/Helper/Form.php', |
|
202 | - 'Core\Form\View\Helper\FormCheckbox' => __DIR__ . '/Core/Form/View/Helper/FormCheckbox.php', |
|
203 | - 'Core\Form\View\Helper\FormCollection' => __DIR__ . '/Core/Form/View/Helper/FormCollection.php', |
|
204 | - 'Core\Form\View\Helper\FormCollectionContainer' => __DIR__ . '/Core/Form/View/Helper/FormCollectionContainer.php', |
|
205 | - 'Core\Form\View\Helper\FormContainer' => __DIR__ . '/Core/Form/View/Helper/FormContainer.php', |
|
206 | - 'Core\Form\View\Helper\FormDatePicker' => __DIR__ . '/Core/Form/View/Helper/FormDatePicker.php', |
|
207 | - 'Core\Form\View\Helper\FormEditor' => __DIR__ . '/Core/Form/View/Helper/FormEditor.php', |
|
208 | - 'Core\Form\View\Helper\FormEditorColor' => __DIR__ . '/Core/Form/View/Helper/FormEditorColor.php', |
|
209 | - 'Core\Form\View\Helper\FormEditorLight' => __DIR__ . '/Core/Form/View/Helper/FormEditorLight.php', |
|
210 | - 'Core\Form\View\Helper\FormElement' => __DIR__ . '/Core/Form/View/Helper/FormElement.php', |
|
211 | - 'Core\Form\View\Helper\FormFileUpload' => __DIR__ . '/Core/Form/View/Helper/FormFileUpload.php', |
|
212 | - 'Core\Form\View\Helper\FormImageUpload' => __DIR__ . '/Core/Form/View/Helper/FormImageUpload.php', |
|
213 | - 'Core\Form\View\Helper\FormInfoCheckbox' => __DIR__ . '/Core/Form/View/Helper/FormInfoCheckbox.php', |
|
214 | - 'Core\Form\View\Helper\FormPartial' => __DIR__ . '/Core/Form/View/Helper/FormPartial.php', |
|
215 | - 'Core\Form\View\Helper\FormRow' => __DIR__ . '/Core/Form/View/Helper/FormRow.php', |
|
216 | - 'Core\Form\View\Helper\FormRowCombined' => __DIR__ . '/Core/Form/View/Helper/FormRowCombined.php', |
|
217 | - 'Core\Form\View\Helper\FormSelect' => __DIR__ . '/Core/Form/View/Helper/FormSelect.php', |
|
218 | - 'Core\Form\View\Helper\FormSimple' => __DIR__ . '/Core/Form/View/Helper/FormSimple.php', |
|
219 | - 'Core\Form\View\Helper\FormSimpleRow' => __DIR__ . '/Core/Form/View/Helper/FormSimpleRow.php', |
|
220 | - 'Core\Form\View\Helper\FormTreeManagementFieldset' => __DIR__ . '/Core/Form/View/Helper/FormTreeManagementFieldset.php', |
|
221 | - 'Core\Form\View\Helper\FormWizardContainer' => __DIR__ . '/Core/Form/View/Helper/FormWizardContainer.php', |
|
222 | - 'Core\Form\View\Helper\RequiredMarkInFormLabel' => __DIR__ . '/Core/Form/View/Helper/RequiredMarkInFormLabel.php', |
|
223 | - 'Core\Form\View\Helper\SearchForm' => __DIR__ . '/Core/Form/View/Helper/SearchForm.php', |
|
224 | - 'Core\Form\View\Helper\SummaryForm' => __DIR__ . '/Core/Form/View/Helper/SummaryForm.php', |
|
225 | - 'Core\Form\View\Helper\ToggleButton' => __DIR__ . '/Core/Form/View/Helper/ToggleButton.php', |
|
226 | - 'Core\Form\WizardContainer' => __DIR__ . '/Core/Form/WizardContainer.php', |
|
227 | - 'Core\Form\propagateAttributeInterface' => __DIR__ . '/Core/Form/propagateAttributeInterface.php', |
|
228 | - 'Core\Html2Pdf\PdfInterface' => __DIR__ . '/Core/Html2Pdf/PdfInterface.php', |
|
229 | - 'Core\Html2Pdf\PdfServiceFactory' => __DIR__ . '/Core/Html2Pdf/PdfServiceFactory.php', |
|
230 | - 'Core\I18n\Locale' => __DIR__ . '/Core/I18n/Locale.php', |
|
231 | - 'Core\I18n\LocaleFactory' => __DIR__ . '/Core/I18n/LocaleFactory.php', |
|
232 | - 'Core\Listener\AjaxRenderListener' => __DIR__ . '/Core/Listener/AjaxRenderListener.php', |
|
233 | - 'Core\Listener\AjaxRouteListener' => __DIR__ . '/Core/Listener/AjaxRouteListener.php', |
|
234 | - 'Core\Listener\DefaultListener' => __DIR__ . '/Core/Listener/DefaultListener.php', |
|
235 | - 'Core\Listener\DeferredListenerAggregate' => __DIR__ . '/Core/Listener/DeferredListenerAggregate.php', |
|
236 | - 'Core\Listener\DeleteImageSetListener' => __DIR__ . '/Core/Listener/DeleteImageSetListener.php', |
|
237 | - 'Core\Listener\EnforceJsonResponseListener' => __DIR__ . '/Core/Listener/EnforceJsonResponseListener.php', |
|
238 | - 'Core\Listener\ErrorHandlerListener' => __DIR__ . '/Core/Listener/ErrorHandlerListener.php', |
|
239 | - 'Core\Listener\Events\AjaxEvent' => __DIR__ . '/Core/Listener/Events/AjaxEvent.php', |
|
240 | - 'Core\Listener\Events\CreatePaginatorEvent' => __DIR__ . '/Core/Listener/Events/CreatePaginatorEvent.php', |
|
241 | - 'Core\Listener\Events\FileEvent' => __DIR__ . '/Core/Listener/Events/FileEvent.php', |
|
242 | - 'Core\Listener\Events\NotificationEvent' => __DIR__ . '/Core/Listener/Events/NotificationEvent.php', |
|
243 | - 'Core\Listener\LanguageRouteListener' => __DIR__ . '/Core/Listener/LanguageRouteListener.php', |
|
244 | - 'Core\Listener\NotificationAjaxHandler' => __DIR__ . '/Core/Listener/NotificationAjaxHandler.php', |
|
245 | - 'Core\Listener\NotificationListener' => __DIR__ . '/Core/Listener/NotificationListener.php', |
|
246 | - 'Core\Listener\Response\ResponseInterface' => __DIR__ . '/Core/Listener/Response/ResponseInterface.php', |
|
247 | - 'Core\Listener\StringListener' => __DIR__ . '/Core/Listener/StringListener.php', |
|
248 | - 'Core\Listener\TracyListener' => __DIR__ . '/Core/Listener/TracyListener.php', |
|
249 | - 'Core\Listener\XmlRenderListener' => __DIR__ . '/Core/Listener/XmlRenderListener.php', |
|
250 | - 'Core\Log\ErrorLoggerFactory' => __DIR__ . '/Core/Log/ErrorLoggerFactory.php', |
|
251 | - 'Core\Log\Filter\ErrorType' => __DIR__ . '/Core/Log/Filter/ErrorType.php', |
|
252 | - 'Core\Log\Formatter\ErrorAndExceptionHandler' => __DIR__ . '/Core/Log/Formatter/ErrorAndExceptionHandler.php', |
|
253 | - 'Core\Log\LoggerAbstractFactory' => __DIR__ . '/Core/Log/LoggerAbstractFactory.php', |
|
254 | - 'Core\Log\Notification\NotificationEntity' => __DIR__ . '/Core/Log/Notification/NotificationEntity.php', |
|
255 | - 'Core\Log\Notification\NotificationEntityInterface' => __DIR__ . '/Core/Log/Notification/NotificationEntityInterface.php', |
|
256 | - 'Core\Log\Processor\UniqueId' => __DIR__ . '/Core/Log/Processor/UniqueId.php', |
|
257 | - 'Core\Mail\HTMLTemplateMessage' => __DIR__ . '/Core/Mail/HTMLTemplateMessage.php', |
|
258 | - 'Core\Mail\Mail' => __DIR__ . '/Core/Mail/Mail.php', |
|
259 | - 'Core\Mail\MailService' => __DIR__ . '/Core/Mail/MailService.php', |
|
260 | - 'Core\Mail\MailServiceConfig' => __DIR__ . '/Core/Mail/MailServiceConfig.php', |
|
261 | - 'Core\Mail\MailServiceFactory' => __DIR__ . '/Core/Mail/MailServiceFactory.php', |
|
262 | - 'Core\Mail\Message' => __DIR__ . '/Core/Mail/Message.php', |
|
263 | - 'Core\Mail\StringTemplateMessage' => __DIR__ . '/Core/Mail/StringTemplateMessage.php', |
|
264 | - 'Core\Mail\TranslatorAwareMessage' => __DIR__ . '/Core/Mail/TranslatorAwareMessage.php', |
|
265 | - 'Core\ModuleManager\ModuleConfigLoader' => __DIR__ . '/Core/ModuleManager/ModuleConfigLoader.php', |
|
266 | - 'Core\Options\Exception\ExceptionInterface' => __DIR__ . '/Core/Options/Exception/ExceptionInterface.php', |
|
267 | - 'Core\Options\Exception\MissingOptionException' => __DIR__ . '/Core/Options/Exception/MissingOptionException.php', |
|
268 | - 'Core\Options\FieldsetCustomizationOptions' => __DIR__ . '/Core/Options/FieldsetCustomizationOptions.php', |
|
269 | - 'Core\Options\ImageSetOptions' => __DIR__ . '/Core/Options/ImageSetOptions.php', |
|
270 | - 'Core\Options\ImagineOptions' => __DIR__ . '/Core/Options/ImagineOptions.php', |
|
271 | - 'Core\Options\MailServiceOptions' => __DIR__ . '/Core/Options/MailServiceOptions.php', |
|
272 | - 'Core\Options\ModuleOptions' => __DIR__ . '/Core/Options/ModuleOptions.php', |
|
273 | - 'Core\Paginator\Adapter\DoctrineMongoCursor' => __DIR__ . '/Core/Paginator/Adapter/DoctrineMongoCursor.php', |
|
274 | - 'Core\Paginator\Adapter\DoctrineMongoLateCursor' => __DIR__ . '/Core/Paginator/Adapter/DoctrineMongoLateCursor.php', |
|
275 | - 'Core\Paginator\Adapter\MongoCursor' => __DIR__ . '/Core/Paginator/Adapter/MongoCursor.php', |
|
276 | - 'Core\Paginator\PaginatorFactoryAbstract' => __DIR__ . '/Core/Paginator/PaginatorFactoryAbstract.php', |
|
277 | - 'Core\Paginator\PaginatorService' => __DIR__ . '/Core/Paginator/PaginatorService.php', |
|
278 | - 'Core\Paginator\PaginatorServiceConfig' => __DIR__ . '/Core/Paginator/PaginatorServiceConfig.php', |
|
279 | - 'Core\Paginator\PaginatorServiceFactory' => __DIR__ . '/Core/Paginator/PaginatorServiceFactory.php', |
|
280 | - 'Core\Repository\AbstractProviderRepository' => __DIR__ . '/Core/Repository/AbstractProviderRepository.php', |
|
281 | - 'Core\Repository\AbstractRepository' => __DIR__ . '/Core/Repository/AbstractRepository.php', |
|
282 | - 'Core\Repository\DefaultRepository' => __DIR__ . '/Core/Repository/DefaultRepository.php', |
|
283 | - 'Core\Repository\DoctrineMongoODM\Annotation\Searchable' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Annotation/Searchable.php', |
|
284 | - 'Core\Repository\DoctrineMongoODM\ConfigurationFactory' => __DIR__ . '/Core/Repository/DoctrineMongoODM/ConfigurationFactory.php', |
|
285 | - 'Core\Repository\DoctrineMongoODM\DocumentManagerFactory' => __DIR__ . '/Core/Repository/DoctrineMongoODM/DocumentManagerFactory.php', |
|
286 | - 'Core\Repository\DoctrineMongoODM\Event\AbstractUpdateFilesPermissionsSubscriber' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Event/AbstractUpdateFilesPermissionsSubscriber.php', |
|
287 | - 'Core\Repository\DoctrineMongoODM\Event\AbstractUpdatePermissionsSubscriber' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Event/AbstractUpdatePermissionsSubscriber.php', |
|
288 | - 'Core\Repository\DoctrineMongoODM\Event\EventArgs' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Event/EventArgs.php', |
|
289 | - 'Core\Repository\DoctrineMongoODM\Event\GenerateSearchKeywordsListener' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Event/GenerateSearchKeywordsListener.php', |
|
290 | - 'Core\Repository\DoctrineMongoODM\Event\PreUpdateDocumentsSubscriber' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Event/PreUpdateDocumentsSubscriber.php', |
|
291 | - 'Core\Repository\DoctrineMongoODM\Event\RepositoryEventsSubscriber' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Event/RepositoryEventsSubscriber.php', |
|
292 | - 'Core\Repository\DoctrineMongoODM\PaginatorAdapter\EagerCursor' => __DIR__ . '/Core/Repository/DoctrineMongoODM/PaginatorAdapter/EagerCursor.php', |
|
293 | - 'Core\Repository\DoctrineMongoODM\PersistenceListener' => __DIR__ . '/Core/Repository/DoctrineMongoODM/PersistenceListener.php', |
|
294 | - 'Core\Repository\DoctrineMongoODM\ServiceLocatorAwareConfiguration' => __DIR__ . '/Core/Repository/DoctrineMongoODM/ServiceLocatorAwareConfiguration.php', |
|
295 | - 'Core\Repository\DoctrineMongoODM\Types\TimezoneAwareDate' => __DIR__ . '/Core/Repository/DoctrineMongoODM/Types/TimezoneAwareDate.php', |
|
296 | - 'Core\Repository\DraftableEntityAwareInterface' => __DIR__ . '/Core/Repository/DraftableEntityAwareInterface.php', |
|
297 | - 'Core\Repository\DraftableEntityAwareTrait' => __DIR__ . '/Core/Repository/DraftableEntityAwareTrait.php', |
|
298 | - 'Core\Repository\Filter\AbstractPaginationQuery' => __DIR__ . '/Core/Repository/Filter/AbstractPaginationQuery.php', |
|
299 | - 'Core\Repository\Filter\PropertyToKeywords' => __DIR__ . '/Core/Repository/Filter/PropertyToKeywords.php', |
|
300 | - 'Core\Repository\RepositoryInterface' => __DIR__ . '/Core/Repository/RepositoryInterface.php', |
|
301 | - 'Core\Repository\RepositoryService' => __DIR__ . '/Core/Repository/RepositoryService.php', |
|
302 | - 'Core\Repository\RepositoryServiceFactory' => __DIR__ . '/Core/Repository/RepositoryServiceFactory.php', |
|
303 | - 'Core\Repository\SnapshotRepository' => __DIR__ . '/Core/Repository/SnapshotRepository.php', |
|
304 | - 'Core\Service\Config' => __DIR__ . '/Core/Service/Config.php', |
|
305 | - 'Core\Service\OptionValueInterface' => __DIR__ . '/Core/Service/OptionValueInterface.php', |
|
306 | - 'Core\Service\RestClient' => __DIR__ . '/Core/Service/RestClient.php', |
|
307 | - 'Core\Service\SnapshotGenerator' => __DIR__ . '/Core/Service/SnapshotGenerator.php', |
|
308 | - 'Core\Service\TemplateProvider' => __DIR__ . '/Core/Service/TemplateProvider.php', |
|
309 | - 'Core\Service\Tracy' => __DIR__ . '/Core/Service/Tracy.php', |
|
310 | - 'Core\View\Helper\AbstractEventsHelper' => __DIR__ . '/Core/View/Helper/AbstractEventsHelper.php', |
|
311 | - 'Core\View\Helper\AjaxUrl' => __DIR__ . '/Core/View/Helper/AjaxUrl.php', |
|
312 | - 'Core\View\Helper\Alert' => __DIR__ . '/Core/View/Helper/Alert.php', |
|
313 | - 'Core\View\Helper\DateFormat' => __DIR__ . '/Core/View/Helper/DateFormat.php', |
|
314 | - 'Core\View\Helper\InsertFile' => __DIR__ . '/Core/View/Helper/InsertFile.php', |
|
315 | - 'Core\View\Helper\InsertFile\FileEvent' => __DIR__ . '/Core/View/Helper/InsertFile/FileEvent.php', |
|
316 | - 'Core\View\Helper\LanguageSwitcher' => __DIR__ . '/Core/View/Helper/LanguageSwitcher.php', |
|
317 | - 'Core\View\Helper\Link' => __DIR__ . '/Core/View/Helper/Link.php', |
|
318 | - 'Core\View\Helper\Params' => __DIR__ . '/Core/View/Helper/Params.php', |
|
319 | - 'Core\View\Helper\Period' => __DIR__ . '/Core/View/Helper/Period.php', |
|
320 | - 'Core\View\Helper\Proxy' => __DIR__ . '/Core/View/Helper/Proxy.php', |
|
321 | - 'Core\View\Helper\Proxy\HelperProxy' => __DIR__ . '/Core/View/Helper/Proxy/HelperProxy.php', |
|
322 | - 'Core\View\Helper\Rating' => __DIR__ . '/Core/View/Helper/Rating.php', |
|
323 | - 'Core\View\Helper\Salutation' => __DIR__ . '/Core/View/Helper/Salutation.php', |
|
324 | - 'Core\View\Helper\Service\DateFormatHelperFactory' => __DIR__ . '/Core/View/Helper/Service/DateFormatHelperFactory.php', |
|
325 | - 'Core\View\Helper\Service\HeadScriptFactory' => __DIR__ . '/Core/View/Helper/Service/HeadScriptFactory.php', |
|
326 | - 'Core\View\Helper\Service\ParamsHelperFactory' => __DIR__ . '/Core/View/Helper/Service/ParamsHelperFactory.php', |
|
327 | - 'Core\View\Helper\Services' => __DIR__ . '/Core/View/Helper/Services.php', |
|
328 | - 'Core\View\Helper\Snippet' => __DIR__ . '/Core/View/Helper/Snippet.php', |
|
329 | - 'Core\View\Helper\SocialButtons' => __DIR__ . '/Core/View/Helper/SocialButtons.php', |
|
4 | + 'Core\Acl\FileAccessAssertion' => __DIR__.'/Core/Acl/FileAccessAssertion.php', |
|
5 | + 'Core\Collection\IdentityWrapper' => __DIR__.'/Core/Collection/IdentityWrapper.php', |
|
6 | + 'Core\Console\ProgressBar' => __DIR__.'/Core/Console/ProgressBar.php', |
|
7 | + 'Core\Controller\AbstractCoreController' => __DIR__.'/Core/Controller/AbstractCoreController.php', |
|
8 | + 'Core\Controller\AdminController' => __DIR__.'/Core/Controller/AdminController.php', |
|
9 | + 'Core\Controller\AdminControllerEvent' => __DIR__.'/Core/Controller/AdminControllerEvent.php', |
|
10 | + 'Core\Controller\ContentController' => __DIR__.'/Core/Controller/ContentController.php', |
|
11 | + 'Core\Controller\FileController' => __DIR__.'/Core/Controller/FileController.php', |
|
12 | + 'Core\Controller\IndexController' => __DIR__.'/Core/Controller/IndexController.php', |
|
13 | + 'Core\Controller\Plugin\Config' => __DIR__.'/Core/Controller/Plugin/Config.php', |
|
14 | + 'Core\Controller\Plugin\ConfigFactory' => __DIR__.'/Core/Controller/Plugin/ConfigFactory.php', |
|
15 | + 'Core\Controller\Plugin\ContentCollector' => __DIR__.'/Core/Controller/Plugin/ContentCollector.php', |
|
16 | + 'Core\Controller\Plugin\CreatePaginator' => __DIR__.'/Core/Controller/Plugin/CreatePaginator.php', |
|
17 | + 'Core\Controller\Plugin\CreatePaginatorService' => __DIR__.'/Core/Controller/Plugin/CreatePaginatorService.php', |
|
18 | + 'Core\Controller\Plugin\EntitySnapshot' => __DIR__.'/Core/Controller/Plugin/EntitySnapshot.php', |
|
19 | + 'Core\Controller\Plugin\FileSender' => __DIR__.'/Core/Controller/Plugin/FileSender.php', |
|
20 | + 'Core\Controller\Plugin\ListQuery' => __DIR__.'/Core/Controller/Plugin/ListQuery.php', |
|
21 | + 'Core\Controller\Plugin\Mailer' => __DIR__.'/Core/Controller/Plugin/Mailer.php', |
|
22 | + 'Core\Controller\Plugin\Notification' => __DIR__.'/Core/Controller/Plugin/Notification.php', |
|
23 | + 'Core\Controller\Plugin\PaginationBuilder' => __DIR__.'/Core/Controller/Plugin/PaginationBuilder.php', |
|
24 | + 'Core\Controller\Plugin\PaginationParams' => __DIR__.'/Core/Controller/Plugin/PaginationParams.php', |
|
25 | + 'Core\Controller\Plugin\SearchForm' => __DIR__.'/Core/Controller/Plugin/SearchForm.php', |
|
26 | + 'Core\Controller\Plugin\Service\EntitySnapshotFactory' => __DIR__.'/Core/Controller/Plugin/Service/EntitySnapshotFactory.php', |
|
27 | + 'Core\Controller\Plugin\Service\NotificationFactory' => __DIR__.'/Core/Controller/Plugin/Service/NotificationFactory.php', |
|
28 | + 'Core\Controller\Plugin\mail' => __DIR__.'/Core/Controller/Plugin/Mail.php', |
|
29 | + 'Core\Decorator\Decorator' => __DIR__.'/Core/Decorator/Decorator.php', |
|
30 | + 'Core\Decorator\ProxyDecorator' => __DIR__.'/Core/Decorator/ProxyDecorator.php', |
|
31 | + 'Core\Entity\AbstractEntity' => __DIR__.'/Core/Entity/AbstractEntity.php', |
|
32 | + 'Core\Entity\AbstractIdentifiableEntity' => __DIR__.'/Core/Entity/AbstractIdentifiableEntity.php', |
|
33 | + 'Core\Entity\AbstractIdentifiableHydratorAwareEntity' => __DIR__.'/Core/Entity/AbstractIdentifiableHydratorAwareEntity.php', |
|
34 | + 'Core\Entity\AbstractIdentifiableModificationDateAwareEntity' => __DIR__.'/Core/Entity/AbstractIdentifiableModificationDateAwareEntity.php', |
|
35 | + 'Core\Entity\AbstractLocation' => __DIR__.'/Core/Entity/AbstractLocation.php', |
|
36 | + 'Core\Entity\AbstractRatingEntity' => __DIR__.'/Core/Entity/AbstractRatingEntity.php', |
|
37 | + 'Core\Entity\AbstractStatusEntity' => __DIR__.'/Core/Entity/AbstractStatusEntity.php', |
|
38 | + 'Core\Entity\AddressInterface' => __DIR__.'/Core/Entity/AddressInterface.php', |
|
39 | + 'Core\Entity\AttachableEntityInterface' => __DIR__.'/Core/Entity/AttachableEntityInterface.php', |
|
40 | + 'Core\Entity\AttachableEntityManager' => __DIR__.'/Core/Entity/AttachableEntityManager.php', |
|
41 | + 'Core\Entity\AttachableEntityTrait' => __DIR__.'/Core/Entity/AttachableEntityTrait.php', |
|
42 | + 'Core\Entity\ClonableEntityInterface' => __DIR__.'/Core/Entity/ClonableEntityInterface.php', |
|
43 | + 'Core\Entity\ClonePropertiesTrait' => __DIR__.'/Core/Entity/ClonePropertiesTrait.php', |
|
44 | + 'Core\Entity\Collection\ArrayCollection' => __DIR__.'/Core/Entity/Collection/ArrayCollection.php', |
|
45 | + 'Core\Entity\Coordinates' => __DIR__.'/Core/Entity/Coordinates.php', |
|
46 | + 'Core\Entity\CoordinatesInterface' => __DIR__.'/Core/Entity/CoordinatesInterface.php', |
|
47 | + 'Core\Entity\DraftableEntityInterface' => __DIR__.'/Core/Entity/DraftableEntityInterface.php', |
|
48 | + 'Core\Entity\DraftableEntityTrait' => __DIR__.'/Core/Entity/DraftableEntityTrait.php', |
|
49 | + 'Core\Entity\EntityInterface' => __DIR__.'/Core/Entity/EntityInterface.php', |
|
50 | + 'Core\Entity\EntityTrait' => __DIR__.'/Core/Entity/EntityTrait.php', |
|
51 | + 'Core\Entity\Exception\ExceptionInterface' => __DIR__.'/Core/Entity/Exception/ExceptionInterface.php', |
|
52 | + 'Core\Entity\Exception\ImmutableEntityException' => __DIR__.'/Core/Entity/Exception/ImmutableEntityException.php', |
|
53 | + 'Core\Entity\Exception\NotFoundException' => __DIR__.'/Core/Entity/Exception/NotFoundException.php', |
|
54 | + 'Core\Entity\Exception\OutOfBoundsException' => __DIR__.'/Core/Entity/Exception/OutOfBoundsException.php', |
|
55 | + 'Core\Entity\FileEntity' => __DIR__.'/Core/Entity/FileEntity.php', |
|
56 | + 'Core\Entity\FileInterface' => __DIR__.'/Core/Entity/FileInterface.php', |
|
57 | + 'Core\Entity\Hydrator\AnonymEntityHydrator' => __DIR__.'/Core/Entity/Hydrator/AnonymEntityHydrator.php', |
|
58 | + 'Core\Entity\Hydrator\EntityHydrator' => __DIR__.'/Core/Entity/Hydrator/EntityHydrator.php', |
|
59 | + 'Core\Entity\Hydrator\EntityHydratorFactory' => __DIR__.'/Core/Entity/Hydrator/EntityHydratorFactory.php', |
|
60 | + 'Core\Entity\Hydrator\Factory\ImageSetHydratorFactory' => __DIR__.'/Core/Entity/Hydrator/Factory/ImageSetHydratorFactory.php', |
|
61 | + 'Core\Entity\Hydrator\FileCollectionUploadHydrator' => __DIR__.'/Core/Entity/Hydrator/FileCollectionUploadHydrator.php', |
|
62 | + 'Core\Entity\Hydrator\ImageSetHydrator' => __DIR__.'/Core/Entity/Hydrator/ImageSetHydrator.php', |
|
63 | + 'Core\Entity\Hydrator\JsonEntityHydrator' => __DIR__.'/Core/Entity/Hydrator/JsonEntityHydrator.php', |
|
64 | + 'Core\Entity\Hydrator\JsonEntityHydratorFactory' => __DIR__.'/Core/Entity/Hydrator/JsonEntityHydratorFactory.php', |
|
65 | + 'Core\Entity\Hydrator\MappingEntityHydrator' => __DIR__.'/Core/Entity/Hydrator/MappingEntityHydrator.php', |
|
66 | + 'Core\Entity\Hydrator\Strategy\FileCopyStrategy' => __DIR__.'/Core/Entity/Hydrator/Strategy/FileCopyStrategy.php', |
|
67 | + 'Core\Entity\Hydrator\Strategy\FileUploadStrategy' => __DIR__.'/Core/Entity/Hydrator/Strategy/FileUploadStrategy.php', |
|
68 | + 'Core\Entity\IdentifiableEntityInterface' => __DIR__.'/Core/Entity/IdentifiableEntityInterface.php', |
|
69 | + 'Core\Entity\IdentifiableEntityTrait' => __DIR__.'/Core/Entity/IdentifiableEntityTrait.php', |
|
70 | + 'Core\Entity\Image' => __DIR__.'/Core/Entity/Image.php', |
|
71 | + 'Core\Entity\ImageInterface' => __DIR__.'/Core/Entity/ImageInterface.php', |
|
72 | + 'Core\Entity\ImageSet' => __DIR__.'/Core/Entity/ImageSet.php', |
|
73 | + 'Core\Entity\ImageSetInterface' => __DIR__.'/Core/Entity/ImageSetInterface.php', |
|
74 | + 'Core\Entity\ImageTrait' => __DIR__.'/Core/Entity/ImageTrait.php', |
|
75 | + 'Core\Entity\ImmutableEntityInterface' => __DIR__.'/Core/Entity/ImmutableEntityInterface.php', |
|
76 | + 'Core\Entity\ImmutableEntityTrait' => __DIR__.'/Core/Entity/ImmutableEntityTrait.php', |
|
77 | + 'Core\Entity\LocalizationSettings' => __DIR__.'/Core/Entity/LocalizationSettings.php', |
|
78 | + 'Core\Entity\LocationInterface' => __DIR__.'/Core/Entity/LocationInterface.php', |
|
79 | + 'Core\Entity\MetaDataProviderInterface' => __DIR__.'/Core/Entity/MetaDataProviderInterface.php', |
|
80 | + 'Core\Entity\MetaDataProviderTrait' => __DIR__.'/Core/Entity/MetaDataProviderTrait.php', |
|
81 | + 'Core\Entity\ModificationDateAwareEntityInterface' => __DIR__.'/Core/Entity/ModificationDateAwareEntityInterface.php', |
|
82 | + 'Core\Entity\ModificationDateAwareEntityTrait' => __DIR__.'/Core/Entity/ModificationDateAwareEntityTrait.php', |
|
83 | + 'Core\Entity\Permissions' => __DIR__.'/Core/Entity/Permissions.php', |
|
84 | + 'Core\Entity\PermissionsAwareInterface' => __DIR__.'/Core/Entity/PermissionsAwareInterface.php', |
|
85 | + 'Core\Entity\PermissionsAwareTrait' => __DIR__.'/Core/Entity/PermissionsAwareTrait.php', |
|
86 | + 'Core\Entity\PermissionsInterface' => __DIR__.'/Core/Entity/PermissionsInterface.php', |
|
87 | + 'Core\Entity\PermissionsReference' => __DIR__.'/Core/Entity/PermissionsReference.php', |
|
88 | + 'Core\Entity\PermissionsResourceInterface' => __DIR__.'/Core/Entity/PermissionsResourceInterface.php', |
|
89 | + 'Core\Entity\PreUpdateAwareInterface' => __DIR__.'/Core/Entity/PreUpdateAwareInterface.php', |
|
90 | + 'Core\Entity\RatingInterface' => __DIR__.'/Core/Entity/RatingInterface.php', |
|
91 | + 'Core\Entity\SearchableEntityInterface' => __DIR__.'/Core/Entity/SearchableEntityInterface.php', |
|
92 | + 'Core\Entity\SettingsContainer' => __DIR__.'/Core/Entity/SettingsContainer.php', |
|
93 | + 'Core\Entity\Snapshot' => __DIR__.'/Core/Entity/Snapshot.php', |
|
94 | + 'Core\Entity\SnapshotAttributesProviderInterface' => __DIR__.'/Core/Entity/SnapshotAttributesProviderInterface.php', |
|
95 | + 'Core\Entity\SnapshotGeneratorProviderInterface' => __DIR__.'/Core/Entity/SnapshotGeneratorProviderInterface.php', |
|
96 | + 'Core\Entity\SnapshotInterface' => __DIR__.'/Core/Entity/SnapshotInterface.php', |
|
97 | + 'Core\Entity\SnapshotMeta' => __DIR__.'/Core/Entity/SnapshotMeta.php', |
|
98 | + 'Core\Entity\SnapshotTrait' => __DIR__.'/Core/Entity/SnapshotTrait.php', |
|
99 | + 'Core\Entity\StatusAwareEntityInterface' => __DIR__.'/Core/Entity/StatusAwareEntityInterface.php', |
|
100 | + 'Core\Entity\StatusAwareEntityTrait' => __DIR__.'/Core/Entity/StatusAwareEntityTrait.php', |
|
101 | + 'Core\Entity\StatusInterface' => __DIR__.'/Core/Entity/StatusInterface.php', |
|
102 | + 'Core\Entity\Status\AbstractSortableStatus' => __DIR__.'/Core/Entity/Status/AbstractSortableStatus.php', |
|
103 | + 'Core\Entity\Status\AbstractStatus' => __DIR__.'/Core/Entity/Status/AbstractStatus.php', |
|
104 | + 'Core\Entity\Status\StatusAwareEntityInterface' => __DIR__.'/Core/Entity/Status/StatusAwareEntityInterface.php', |
|
105 | + 'Core\Entity\Status\StatusAwareEntityTrait' => __DIR__.'/Core/Entity/Status/StatusAwareEntityTrait.php', |
|
106 | + 'Core\Entity\Status\StatusInterface' => __DIR__.'/Core/Entity/Status/StatusInterface.php', |
|
107 | + 'Core\Entity\Timeline' => __DIR__.'/Core/Entity/Timeline.php', |
|
108 | + 'Core\Entity\Tree\AbstractLeafs' => __DIR__.'/Core/Entity/Tree/AbstractLeafs.php', |
|
109 | + 'Core\Entity\Tree\AttachedLeafs' => __DIR__.'/Core/Entity/Tree/AttachedLeafs.php', |
|
110 | + 'Core\Entity\Tree\EmbeddedLeafs' => __DIR__.'/Core/Entity/Tree/EmbeddedLeafs.php', |
|
111 | + 'Core\Entity\Tree\LeafsInterface' => __DIR__.'/Core/Entity/Tree/LeafsInterface.php', |
|
112 | + 'Core\Entity\Tree\Node' => __DIR__.'/Core/Entity/Tree/Node.php', |
|
113 | + 'Core\Entity\Tree\NodeInterface' => __DIR__.'/Core/Entity/Tree/NodeInterface.php', |
|
114 | + 'Core\EventManager\EventManager' => __DIR__.'/Core/EventManager/EventManager.php', |
|
115 | + 'Core\EventManager\EventProviderInterface' => __DIR__.'/Core/EventManager/EventProviderInterface.php', |
|
116 | + 'Core\EventManager\ListenerAggregateTrait' => __DIR__.'/Core/EventManager/ListenerAggregateTrait.php', |
|
117 | + 'Core\Exception\ExceptionInterface' => __DIR__.'/Core/Exception/ExceptionInterface.php', |
|
118 | + 'Core\Exception\ImmutablePropertyException' => __DIR__.'/Core/Exception/ImmutablePropertyException.php', |
|
119 | + 'Core\Exception\MissingDependencyException' => __DIR__.'/Core/Exception/MissingDependencyException.php', |
|
120 | + 'Core\Factory\Controller\Plugin\SearchFormFactory' => __DIR__.'/Core/Factory/Controller/Plugin/SearchFormFactory.php', |
|
121 | + 'Core\Factory\EventManager\EventManagerAbstractFactory' => __DIR__.'/Core/Factory/EventManager/EventManagerAbstractFactory.php', |
|
122 | + 'Core\Factory\Filter\HtmlAbsPathFilterFactory' => __DIR__.'/Core/Factory/Filter/HtmlAbsPathFilterFactory.php', |
|
123 | + 'Core\Factory\Form\AbstractCustomizableFieldsetFactory' => __DIR__.'/Core/Factory/Form/AbstractCustomizableFieldsetFactory.php', |
|
124 | + 'Core\Factory\Form\Tree\SelectFactory' => __DIR__.'/Core/Factory/Form/Tree/SelectFactory.php', |
|
125 | + 'Core\Factory\Form\View\Helper\FormEditorLightFactory' => __DIR__.'/Core/Factory/Form/View/Helper/FormEditorLightFactory.php', |
|
126 | + 'Core\Factory\Listener\AjaxRouteListenerFactory' => __DIR__.'/Core/Factory/Listener/AjaxRouteListenerFactory.php', |
|
127 | + 'Core\Factory\Listener\DeleteImageSetListenerFactory' => __DIR__.'/Core/Factory/Listener/DeleteImageSetListenerFactory.php', |
|
128 | + 'Core\Factory\ModuleOptionsFactory' => __DIR__.'/Core/Factory/ModuleOptionsFactory.php', |
|
129 | + 'Core\Factory\Navigation\DefaultNavigationFactory' => __DIR__.'/Core/Factory/Navigation/DefaultNavigationFactory.php', |
|
130 | + 'Core\Factory\OptionsAbstractFactory' => __DIR__.'/Core/Factory/OptionsAbstractFactory.php', |
|
131 | + 'Core\Factory\Paginator\RepositoryAbstractFactory' => __DIR__.'/Core/Factory/Paginator/RepositoryAbstractFactory.php', |
|
132 | + 'Core\Factory\Service\ImagineFactory' => __DIR__.'/Core/Factory/Service/ImagineFactory.php', |
|
133 | + 'Core\Factory\Service\RestClientFactory' => __DIR__.'/Core/Factory/Service/RestClientFactory.php', |
|
134 | + 'Core\Factory\View\Helper\AjaxUrlFactory' => __DIR__.'/Core/Factory/View/Helper/AjaxUrlFactory.php', |
|
135 | + 'Core\Factory\View\Helper\SnippetFactory' => __DIR__.'/Core/Factory/View/Helper/SnippetFactory.php', |
|
136 | + 'Core\Factory\View\Helper\SocialButtonsFactory' => __DIR__.'/Core/Factory/View/Helper/SocialButtonsFactory.php', |
|
137 | + 'Core\Filter\HtmlAbsPathFilter' => __DIR__.'/Core/Filter/HtmlAbsPathFilter.php', |
|
138 | + 'Core\Filter\XssFilter' => __DIR__.'/Core/Filter/XssFilter.php', |
|
139 | + 'Core\Filter\XssFilterFactory' => __DIR__.'/Core/Filter/XssFilterFactory.php', |
|
140 | + 'Core\Form\BaseForm' => __DIR__.'/Core/Form/BaseForm.php', |
|
141 | + 'Core\Form\ButtonsFieldset' => __DIR__.'/Core/Form/ButtonsFieldset.php', |
|
142 | + 'Core\Form\CollectionContainer' => __DIR__.'/Core/Form/CollectionContainer.php', |
|
143 | + 'Core\Form\Container' => __DIR__.'/Core/Form/Container.php', |
|
144 | + 'Core\Form\CustomizableFieldsetInterface' => __DIR__.'/Core/Form/CustomizableFieldsetInterface.php', |
|
145 | + 'Core\Form\CustomizableFieldsetTrait' => __DIR__.'/Core/Form/CustomizableFieldsetTrait.php', |
|
146 | + 'Core\Form\DefaultButtonsFieldset' => __DIR__.'/Core/Form/DefaultButtonsFieldset.php', |
|
147 | + 'Core\Form\DescriptionAwareFormInterface' => __DIR__.'/Core/Form/DescriptionAwareFormInterface.php', |
|
148 | + 'Core\Form\DisableCapableInterface' => __DIR__.'/Core/Form/DisableCapableInterface.php', |
|
149 | + 'Core\Form\DisableElementsCapableInterface' => __DIR__.'/Core/Form/DisableElementsCapableInterface.php', |
|
150 | + 'Core\Form\Element\Checkbox' => __DIR__.'/Core/Form/Element/Checkbox.php', |
|
151 | + 'Core\Form\Element\Select' => __DIR__.'/Core/Form/Element/Select.php', |
|
152 | + 'Core\Form\Element\DatePicker' => __DIR__.'/Core/Form/Element/DatePicker.php', |
|
153 | + 'Core\Form\Element\DateRange' => __DIR__.'/Core/Form/Element/DateRange.php', |
|
154 | + 'Core\Form\Element\Editor' => __DIR__.'/Core/Form/Element/Editor.php', |
|
155 | + 'Core\Form\Element\EditorLight' => __DIR__.'/Core/Form/Element/EditorLight.php', |
|
156 | + 'Core\Form\Element\FileUpload' => __DIR__.'/Core/Form/Element/FileUpload.php', |
|
157 | + 'Core\Form\Element\InfoCheckbox' => __DIR__.'/Core/Form/Element/InfoCheckbox.php', |
|
158 | + 'Core\Form\Element\Phone' => __DIR__.'/Core/Form/Element/Phone.php', |
|
159 | + 'Core\Form\Element\Rating' => __DIR__.'/Core/Form/Element/Rating.php', |
|
160 | + 'Core\Form\Element\SpinnerSubmit' => __DIR__.'/Core/Form/Element/SpinnerSubmit.php', |
|
161 | + 'Core\Form\Element\ToggleButton' => __DIR__.'/Core/Form/Element/ToggleButton.php', |
|
162 | + 'Core\Form\Element\ViewHelperProviderInterface' => __DIR__.'/Core/Form/Element/ViewHelperProviderInterface.php', |
|
163 | + 'Core\Form\EmptySummaryAwareInterface' => __DIR__.'/Core/Form/EmptySummaryAwareInterface.php', |
|
164 | + 'Core\Form\EmptySummaryAwareTrait' => __DIR__.'/Core/Form/EmptySummaryAwareTrait.php', |
|
165 | + 'Core\Form\Event\FormEvent' => __DIR__.'/Core/Form/Event/FormEvent.php', |
|
166 | + 'Core\Form\ExplicitParameterProviderInterface' => __DIR__.'/Core/Form/ExplicitParameterProviderInterface.php', |
|
167 | + 'Core\Form\FileUploadFactory' => __DIR__.'/Core/Form/FileUploadFactory.php', |
|
168 | + 'Core\Form\Form' => __DIR__.'/Core/Form/Form.php', |
|
169 | + 'Core\Form\FormParentInterface' => __DIR__.'/Core/Form/FormParentInterface.php', |
|
170 | + 'Core\Form\FormSubmitButtonsFieldset' => __DIR__.'/Core/Form/FormSubmitButtonsFieldset.php', |
|
171 | + 'Core\Form\HeadscriptProviderInterface' => __DIR__.'/Core/Form/HeadscriptProviderInterface.php', |
|
172 | + 'Core\Form\HydratorStrategyAwareTrait' => __DIR__.'/Core/Form/HydratorStrategyAwareTrait.php', |
|
173 | + 'Core\Form\Hydrator\HydratorStrategyProviderInterface' => __DIR__.'/Core/Form/Hydrator/HydratorStrategyProviderInterface.php', |
|
174 | + 'Core\Form\Hydrator\HydratorStrategyProviderTrait' => __DIR__.'/Core/Form/Hydrator/HydratorStrategyProviderTrait.php', |
|
175 | + 'Core\Form\Hydrator\MetaDataHydrator' => __DIR__.'/Core/Form/Hydrator/MetaDataHydrator.php', |
|
176 | + 'Core\Form\Hydrator\Strategy\CollectionStrategy' => __DIR__.'/Core/Form/Hydrator/Strategy/CollectionStrategy.php', |
|
177 | + 'Core\Form\Hydrator\Strategy\TemplateProviderStrategy' => __DIR__.'/Core/Form/Hydrator/Strategy/TemplateProviderStrategy.php', |
|
178 | + 'Core\Form\Hydrator\Strategy\TreeSelectStrategy' => __DIR__.'/Core/Form/Hydrator/Strategy/TreeSelectStrategy.php', |
|
179 | + 'Core\Form\Hydrator\TreeHydrator' => __DIR__.'/Core/Form/Hydrator/TreeHydrator.php', |
|
180 | + 'Core\Form\ListFilterButtonsFieldset' => __DIR__.'/Core/Form/ListFilterButtonsFieldset.php', |
|
181 | + 'Core\Form\LocalizationSettingsFieldset' => __DIR__.'/Core/Form/LocalizationSettingsFieldset.php', |
|
182 | + 'Core\Form\MetaDataFieldset' => __DIR__.'/Core/Form/MetaDataFieldset.php', |
|
183 | + 'Core\Form\PermissionsCollection' => __DIR__.'/Core/Form/PermissionsCollection.php', |
|
184 | + 'Core\Form\PermissionsFieldset' => __DIR__.'/Core/Form/PermissionsFieldset.php', |
|
185 | + 'Core\Form\RatingFieldset' => __DIR__.'/Core/Form/RatingFieldset.php', |
|
186 | + 'Core\Form\SearchForm' => __DIR__.'/Core/Form/SearchForm.php', |
|
187 | + 'Core\Form\Service\Initializer' => __DIR__.'/Core/Form/Service/Initializer.php', |
|
188 | + 'Core\Form\Service\InjectHeadscriptInitializer' => __DIR__.'/Core/Form/Service/InjectHeadscriptInitializer.php', |
|
189 | + 'Core\Form\SummaryForm' => __DIR__.'/Core/Form/SummaryForm.php', |
|
190 | + 'Core\Form\SummaryFormButtonsFieldset' => __DIR__.'/Core/Form/SummaryFormButtonsFieldset.php', |
|
191 | + 'Core\Form\SummaryFormInterface' => __DIR__.'/Core/Form/SummaryFormInterface.php', |
|
192 | + 'Core\Form\Tree\AddItemFieldset' => __DIR__.'/Core/Form/Tree/AddItemFieldset.php', |
|
193 | + 'Core\Form\Tree\ManagementFieldset' => __DIR__.'/Core/Form/Tree/ManagementFieldset.php', |
|
194 | + 'Core\Form\Tree\ManagementForm' => __DIR__.'/Core/Form/Tree/ManagementForm.php', |
|
195 | + 'Core\Form\Tree\Select' => __DIR__.'/Core/Form/Tree/Select.php', |
|
196 | + 'Core\Form\ViewPartialProviderAbstract' => __DIR__.'/Core/Form/ViewPartialProviderAbstract.php', |
|
197 | + 'Core\Form\ViewPartialProviderInterface' => __DIR__.'/Core/Form/ViewPartialProviderInterface.php', |
|
198 | + 'Core\Form\ViewPartialProviderTrait' => __DIR__.'/Core/Form/ViewPartialProviderTrait.php', |
|
199 | + 'Core\Form\View\Helper\Element\SpinnerButton' => __DIR__.'/Core/Form/View/Helper/Element/SpinnerButton.php', |
|
200 | + 'Core\Form\View\Helper\FilterForm' => __DIR__.'/Core/Form/View/Helper/FilterForm.php', |
|
201 | + 'Core\Form\View\Helper\Form' => __DIR__.'/Core/Form/View/Helper/Form.php', |
|
202 | + 'Core\Form\View\Helper\FormCheckbox' => __DIR__.'/Core/Form/View/Helper/FormCheckbox.php', |
|
203 | + 'Core\Form\View\Helper\FormCollection' => __DIR__.'/Core/Form/View/Helper/FormCollection.php', |
|
204 | + 'Core\Form\View\Helper\FormCollectionContainer' => __DIR__.'/Core/Form/View/Helper/FormCollectionContainer.php', |
|
205 | + 'Core\Form\View\Helper\FormContainer' => __DIR__.'/Core/Form/View/Helper/FormContainer.php', |
|
206 | + 'Core\Form\View\Helper\FormDatePicker' => __DIR__.'/Core/Form/View/Helper/FormDatePicker.php', |
|
207 | + 'Core\Form\View\Helper\FormEditor' => __DIR__.'/Core/Form/View/Helper/FormEditor.php', |
|
208 | + 'Core\Form\View\Helper\FormEditorColor' => __DIR__.'/Core/Form/View/Helper/FormEditorColor.php', |
|
209 | + 'Core\Form\View\Helper\FormEditorLight' => __DIR__.'/Core/Form/View/Helper/FormEditorLight.php', |
|
210 | + 'Core\Form\View\Helper\FormElement' => __DIR__.'/Core/Form/View/Helper/FormElement.php', |
|
211 | + 'Core\Form\View\Helper\FormFileUpload' => __DIR__.'/Core/Form/View/Helper/FormFileUpload.php', |
|
212 | + 'Core\Form\View\Helper\FormImageUpload' => __DIR__.'/Core/Form/View/Helper/FormImageUpload.php', |
|
213 | + 'Core\Form\View\Helper\FormInfoCheckbox' => __DIR__.'/Core/Form/View/Helper/FormInfoCheckbox.php', |
|
214 | + 'Core\Form\View\Helper\FormPartial' => __DIR__.'/Core/Form/View/Helper/FormPartial.php', |
|
215 | + 'Core\Form\View\Helper\FormRow' => __DIR__.'/Core/Form/View/Helper/FormRow.php', |
|
216 | + 'Core\Form\View\Helper\FormRowCombined' => __DIR__.'/Core/Form/View/Helper/FormRowCombined.php', |
|
217 | + 'Core\Form\View\Helper\FormSelect' => __DIR__.'/Core/Form/View/Helper/FormSelect.php', |
|
218 | + 'Core\Form\View\Helper\FormSimple' => __DIR__.'/Core/Form/View/Helper/FormSimple.php', |
|
219 | + 'Core\Form\View\Helper\FormSimpleRow' => __DIR__.'/Core/Form/View/Helper/FormSimpleRow.php', |
|
220 | + 'Core\Form\View\Helper\FormTreeManagementFieldset' => __DIR__.'/Core/Form/View/Helper/FormTreeManagementFieldset.php', |
|
221 | + 'Core\Form\View\Helper\FormWizardContainer' => __DIR__.'/Core/Form/View/Helper/FormWizardContainer.php', |
|
222 | + 'Core\Form\View\Helper\RequiredMarkInFormLabel' => __DIR__.'/Core/Form/View/Helper/RequiredMarkInFormLabel.php', |
|
223 | + 'Core\Form\View\Helper\SearchForm' => __DIR__.'/Core/Form/View/Helper/SearchForm.php', |
|
224 | + 'Core\Form\View\Helper\SummaryForm' => __DIR__.'/Core/Form/View/Helper/SummaryForm.php', |
|
225 | + 'Core\Form\View\Helper\ToggleButton' => __DIR__.'/Core/Form/View/Helper/ToggleButton.php', |
|
226 | + 'Core\Form\WizardContainer' => __DIR__.'/Core/Form/WizardContainer.php', |
|
227 | + 'Core\Form\propagateAttributeInterface' => __DIR__.'/Core/Form/propagateAttributeInterface.php', |
|
228 | + 'Core\Html2Pdf\PdfInterface' => __DIR__.'/Core/Html2Pdf/PdfInterface.php', |
|
229 | + 'Core\Html2Pdf\PdfServiceFactory' => __DIR__.'/Core/Html2Pdf/PdfServiceFactory.php', |
|
230 | + 'Core\I18n\Locale' => __DIR__.'/Core/I18n/Locale.php', |
|
231 | + 'Core\I18n\LocaleFactory' => __DIR__.'/Core/I18n/LocaleFactory.php', |
|
232 | + 'Core\Listener\AjaxRenderListener' => __DIR__.'/Core/Listener/AjaxRenderListener.php', |
|
233 | + 'Core\Listener\AjaxRouteListener' => __DIR__.'/Core/Listener/AjaxRouteListener.php', |
|
234 | + 'Core\Listener\DefaultListener' => __DIR__.'/Core/Listener/DefaultListener.php', |
|
235 | + 'Core\Listener\DeferredListenerAggregate' => __DIR__.'/Core/Listener/DeferredListenerAggregate.php', |
|
236 | + 'Core\Listener\DeleteImageSetListener' => __DIR__.'/Core/Listener/DeleteImageSetListener.php', |
|
237 | + 'Core\Listener\EnforceJsonResponseListener' => __DIR__.'/Core/Listener/EnforceJsonResponseListener.php', |
|
238 | + 'Core\Listener\ErrorHandlerListener' => __DIR__.'/Core/Listener/ErrorHandlerListener.php', |
|
239 | + 'Core\Listener\Events\AjaxEvent' => __DIR__.'/Core/Listener/Events/AjaxEvent.php', |
|
240 | + 'Core\Listener\Events\CreatePaginatorEvent' => __DIR__.'/Core/Listener/Events/CreatePaginatorEvent.php', |
|
241 | + 'Core\Listener\Events\FileEvent' => __DIR__.'/Core/Listener/Events/FileEvent.php', |
|
242 | + 'Core\Listener\Events\NotificationEvent' => __DIR__.'/Core/Listener/Events/NotificationEvent.php', |
|
243 | + 'Core\Listener\LanguageRouteListener' => __DIR__.'/Core/Listener/LanguageRouteListener.php', |
|
244 | + 'Core\Listener\NotificationAjaxHandler' => __DIR__.'/Core/Listener/NotificationAjaxHandler.php', |
|
245 | + 'Core\Listener\NotificationListener' => __DIR__.'/Core/Listener/NotificationListener.php', |
|
246 | + 'Core\Listener\Response\ResponseInterface' => __DIR__.'/Core/Listener/Response/ResponseInterface.php', |
|
247 | + 'Core\Listener\StringListener' => __DIR__.'/Core/Listener/StringListener.php', |
|
248 | + 'Core\Listener\TracyListener' => __DIR__.'/Core/Listener/TracyListener.php', |
|
249 | + 'Core\Listener\XmlRenderListener' => __DIR__.'/Core/Listener/XmlRenderListener.php', |
|
250 | + 'Core\Log\ErrorLoggerFactory' => __DIR__.'/Core/Log/ErrorLoggerFactory.php', |
|
251 | + 'Core\Log\Filter\ErrorType' => __DIR__.'/Core/Log/Filter/ErrorType.php', |
|
252 | + 'Core\Log\Formatter\ErrorAndExceptionHandler' => __DIR__.'/Core/Log/Formatter/ErrorAndExceptionHandler.php', |
|
253 | + 'Core\Log\LoggerAbstractFactory' => __DIR__.'/Core/Log/LoggerAbstractFactory.php', |
|
254 | + 'Core\Log\Notification\NotificationEntity' => __DIR__.'/Core/Log/Notification/NotificationEntity.php', |
|
255 | + 'Core\Log\Notification\NotificationEntityInterface' => __DIR__.'/Core/Log/Notification/NotificationEntityInterface.php', |
|
256 | + 'Core\Log\Processor\UniqueId' => __DIR__.'/Core/Log/Processor/UniqueId.php', |
|
257 | + 'Core\Mail\HTMLTemplateMessage' => __DIR__.'/Core/Mail/HTMLTemplateMessage.php', |
|
258 | + 'Core\Mail\Mail' => __DIR__.'/Core/Mail/Mail.php', |
|
259 | + 'Core\Mail\MailService' => __DIR__.'/Core/Mail/MailService.php', |
|
260 | + 'Core\Mail\MailServiceConfig' => __DIR__.'/Core/Mail/MailServiceConfig.php', |
|
261 | + 'Core\Mail\MailServiceFactory' => __DIR__.'/Core/Mail/MailServiceFactory.php', |
|
262 | + 'Core\Mail\Message' => __DIR__.'/Core/Mail/Message.php', |
|
263 | + 'Core\Mail\StringTemplateMessage' => __DIR__.'/Core/Mail/StringTemplateMessage.php', |
|
264 | + 'Core\Mail\TranslatorAwareMessage' => __DIR__.'/Core/Mail/TranslatorAwareMessage.php', |
|
265 | + 'Core\ModuleManager\ModuleConfigLoader' => __DIR__.'/Core/ModuleManager/ModuleConfigLoader.php', |
|
266 | + 'Core\Options\Exception\ExceptionInterface' => __DIR__.'/Core/Options/Exception/ExceptionInterface.php', |
|
267 | + 'Core\Options\Exception\MissingOptionException' => __DIR__.'/Core/Options/Exception/MissingOptionException.php', |
|
268 | + 'Core\Options\FieldsetCustomizationOptions' => __DIR__.'/Core/Options/FieldsetCustomizationOptions.php', |
|
269 | + 'Core\Options\ImageSetOptions' => __DIR__.'/Core/Options/ImageSetOptions.php', |
|
270 | + 'Core\Options\ImagineOptions' => __DIR__.'/Core/Options/ImagineOptions.php', |
|
271 | + 'Core\Options\MailServiceOptions' => __DIR__.'/Core/Options/MailServiceOptions.php', |
|
272 | + 'Core\Options\ModuleOptions' => __DIR__.'/Core/Options/ModuleOptions.php', |
|
273 | + 'Core\Paginator\Adapter\DoctrineMongoCursor' => __DIR__.'/Core/Paginator/Adapter/DoctrineMongoCursor.php', |
|
274 | + 'Core\Paginator\Adapter\DoctrineMongoLateCursor' => __DIR__.'/Core/Paginator/Adapter/DoctrineMongoLateCursor.php', |
|
275 | + 'Core\Paginator\Adapter\MongoCursor' => __DIR__.'/Core/Paginator/Adapter/MongoCursor.php', |
|
276 | + 'Core\Paginator\PaginatorFactoryAbstract' => __DIR__.'/Core/Paginator/PaginatorFactoryAbstract.php', |
|
277 | + 'Core\Paginator\PaginatorService' => __DIR__.'/Core/Paginator/PaginatorService.php', |
|
278 | + 'Core\Paginator\PaginatorServiceConfig' => __DIR__.'/Core/Paginator/PaginatorServiceConfig.php', |
|
279 | + 'Core\Paginator\PaginatorServiceFactory' => __DIR__.'/Core/Paginator/PaginatorServiceFactory.php', |
|
280 | + 'Core\Repository\AbstractProviderRepository' => __DIR__.'/Core/Repository/AbstractProviderRepository.php', |
|
281 | + 'Core\Repository\AbstractRepository' => __DIR__.'/Core/Repository/AbstractRepository.php', |
|
282 | + 'Core\Repository\DefaultRepository' => __DIR__.'/Core/Repository/DefaultRepository.php', |
|
283 | + 'Core\Repository\DoctrineMongoODM\Annotation\Searchable' => __DIR__.'/Core/Repository/DoctrineMongoODM/Annotation/Searchable.php', |
|
284 | + 'Core\Repository\DoctrineMongoODM\ConfigurationFactory' => __DIR__.'/Core/Repository/DoctrineMongoODM/ConfigurationFactory.php', |
|
285 | + 'Core\Repository\DoctrineMongoODM\DocumentManagerFactory' => __DIR__.'/Core/Repository/DoctrineMongoODM/DocumentManagerFactory.php', |
|
286 | + 'Core\Repository\DoctrineMongoODM\Event\AbstractUpdateFilesPermissionsSubscriber' => __DIR__.'/Core/Repository/DoctrineMongoODM/Event/AbstractUpdateFilesPermissionsSubscriber.php', |
|
287 | + 'Core\Repository\DoctrineMongoODM\Event\AbstractUpdatePermissionsSubscriber' => __DIR__.'/Core/Repository/DoctrineMongoODM/Event/AbstractUpdatePermissionsSubscriber.php', |
|
288 | + 'Core\Repository\DoctrineMongoODM\Event\EventArgs' => __DIR__.'/Core/Repository/DoctrineMongoODM/Event/EventArgs.php', |
|
289 | + 'Core\Repository\DoctrineMongoODM\Event\GenerateSearchKeywordsListener' => __DIR__.'/Core/Repository/DoctrineMongoODM/Event/GenerateSearchKeywordsListener.php', |
|
290 | + 'Core\Repository\DoctrineMongoODM\Event\PreUpdateDocumentsSubscriber' => __DIR__.'/Core/Repository/DoctrineMongoODM/Event/PreUpdateDocumentsSubscriber.php', |
|
291 | + 'Core\Repository\DoctrineMongoODM\Event\RepositoryEventsSubscriber' => __DIR__.'/Core/Repository/DoctrineMongoODM/Event/RepositoryEventsSubscriber.php', |
|
292 | + 'Core\Repository\DoctrineMongoODM\PaginatorAdapter\EagerCursor' => __DIR__.'/Core/Repository/DoctrineMongoODM/PaginatorAdapter/EagerCursor.php', |
|
293 | + 'Core\Repository\DoctrineMongoODM\PersistenceListener' => __DIR__.'/Core/Repository/DoctrineMongoODM/PersistenceListener.php', |
|
294 | + 'Core\Repository\DoctrineMongoODM\ServiceLocatorAwareConfiguration' => __DIR__.'/Core/Repository/DoctrineMongoODM/ServiceLocatorAwareConfiguration.php', |
|
295 | + 'Core\Repository\DoctrineMongoODM\Types\TimezoneAwareDate' => __DIR__.'/Core/Repository/DoctrineMongoODM/Types/TimezoneAwareDate.php', |
|
296 | + 'Core\Repository\DraftableEntityAwareInterface' => __DIR__.'/Core/Repository/DraftableEntityAwareInterface.php', |
|
297 | + 'Core\Repository\DraftableEntityAwareTrait' => __DIR__.'/Core/Repository/DraftableEntityAwareTrait.php', |
|
298 | + 'Core\Repository\Filter\AbstractPaginationQuery' => __DIR__.'/Core/Repository/Filter/AbstractPaginationQuery.php', |
|
299 | + 'Core\Repository\Filter\PropertyToKeywords' => __DIR__.'/Core/Repository/Filter/PropertyToKeywords.php', |
|
300 | + 'Core\Repository\RepositoryInterface' => __DIR__.'/Core/Repository/RepositoryInterface.php', |
|
301 | + 'Core\Repository\RepositoryService' => __DIR__.'/Core/Repository/RepositoryService.php', |
|
302 | + 'Core\Repository\RepositoryServiceFactory' => __DIR__.'/Core/Repository/RepositoryServiceFactory.php', |
|
303 | + 'Core\Repository\SnapshotRepository' => __DIR__.'/Core/Repository/SnapshotRepository.php', |
|
304 | + 'Core\Service\Config' => __DIR__.'/Core/Service/Config.php', |
|
305 | + 'Core\Service\OptionValueInterface' => __DIR__.'/Core/Service/OptionValueInterface.php', |
|
306 | + 'Core\Service\RestClient' => __DIR__.'/Core/Service/RestClient.php', |
|
307 | + 'Core\Service\SnapshotGenerator' => __DIR__.'/Core/Service/SnapshotGenerator.php', |
|
308 | + 'Core\Service\TemplateProvider' => __DIR__.'/Core/Service/TemplateProvider.php', |
|
309 | + 'Core\Service\Tracy' => __DIR__.'/Core/Service/Tracy.php', |
|
310 | + 'Core\View\Helper\AbstractEventsHelper' => __DIR__.'/Core/View/Helper/AbstractEventsHelper.php', |
|
311 | + 'Core\View\Helper\AjaxUrl' => __DIR__.'/Core/View/Helper/AjaxUrl.php', |
|
312 | + 'Core\View\Helper\Alert' => __DIR__.'/Core/View/Helper/Alert.php', |
|
313 | + 'Core\View\Helper\DateFormat' => __DIR__.'/Core/View/Helper/DateFormat.php', |
|
314 | + 'Core\View\Helper\InsertFile' => __DIR__.'/Core/View/Helper/InsertFile.php', |
|
315 | + 'Core\View\Helper\InsertFile\FileEvent' => __DIR__.'/Core/View/Helper/InsertFile/FileEvent.php', |
|
316 | + 'Core\View\Helper\LanguageSwitcher' => __DIR__.'/Core/View/Helper/LanguageSwitcher.php', |
|
317 | + 'Core\View\Helper\Link' => __DIR__.'/Core/View/Helper/Link.php', |
|
318 | + 'Core\View\Helper\Params' => __DIR__.'/Core/View/Helper/Params.php', |
|
319 | + 'Core\View\Helper\Period' => __DIR__.'/Core/View/Helper/Period.php', |
|
320 | + 'Core\View\Helper\Proxy' => __DIR__.'/Core/View/Helper/Proxy.php', |
|
321 | + 'Core\View\Helper\Proxy\HelperProxy' => __DIR__.'/Core/View/Helper/Proxy/HelperProxy.php', |
|
322 | + 'Core\View\Helper\Rating' => __DIR__.'/Core/View/Helper/Rating.php', |
|
323 | + 'Core\View\Helper\Salutation' => __DIR__.'/Core/View/Helper/Salutation.php', |
|
324 | + 'Core\View\Helper\Service\DateFormatHelperFactory' => __DIR__.'/Core/View/Helper/Service/DateFormatHelperFactory.php', |
|
325 | + 'Core\View\Helper\Service\HeadScriptFactory' => __DIR__.'/Core/View/Helper/Service/HeadScriptFactory.php', |
|
326 | + 'Core\View\Helper\Service\ParamsHelperFactory' => __DIR__.'/Core/View/Helper/Service/ParamsHelperFactory.php', |
|
327 | + 'Core\View\Helper\Services' => __DIR__.'/Core/View/Helper/Services.php', |
|
328 | + 'Core\View\Helper\Snippet' => __DIR__.'/Core/View/Helper/Snippet.php', |
|
329 | + 'Core\View\Helper\SocialButtons' => __DIR__.'/Core/View/Helper/SocialButtons.php', |
|
330 | 330 | ); |
@@ -131,6 +131,9 @@ |
||
131 | 131 | return $this->description; |
132 | 132 | } |
133 | 133 | |
134 | + /** |
|
135 | + * @param string $mode |
|
136 | + */ |
|
134 | 137 | public function isMode($mode) |
135 | 138 | { |
136 | 139 | return $this->mode == $mode; |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | class JobEntityDependencyListener extends AbstractDependenciesListener |
27 | 27 | { |
28 | - protected $entityClasses = [ Job::class ]; |
|
28 | + protected $entityClasses = [Job::class]; |
|
29 | 29 | |
30 | 30 | protected function dependencyCheck(DependencyResultEvent $event) |
31 | 31 | { |
@@ -245,6 +245,6 @@ |
||
245 | 245 | |
246 | 246 | public function __toString() |
247 | 247 | { |
248 | - return self::class . '( ' . $this->getSnapshotId() . ' )'; |
|
248 | + return self::class.'( '.$this->getSnapshotId().' )'; |
|
249 | 249 | } |
250 | 250 | } |
@@ -159,7 +159,7 @@ |
||
159 | 159 | : [ |
160 | 160 | 'description' => isset($result[2]) ? $result[2] : null, |
161 | 161 | 'viewScript' => isset($result[3]) ? $result[3] : null, |
162 | - ], |
|
162 | + ], |
|
163 | 163 | ]; |
164 | 164 | } |
165 | 165 |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | $name = "\\$namespace\\Entity\\$entityName"; |
39 | 39 | } |
40 | 40 | |
41 | - $repository = $this->dm->getRepository($name); |
|
41 | + $repository = $this->dm->getRepository($name); |
|
42 | 42 | |
43 | - if (!$repository instanceOf AbstractRepository) { |
|
43 | + if (!$repository instanceOf AbstractRepository) { |
|
44 | 44 | $eventArgs = new DoctrineMongoODM\Event\EventArgs( |
45 | 45 | array( |
46 | 46 | 'repository' => $repository, |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | && $events->dispatchEvent('postCommit', new EventArgs(array('document' => $entity, 'documentManager' => $this->dm))); |
74 | 74 | } |
75 | 75 | |
76 | - public function remove(EntityInterface $entity, $flush=false) |
|
76 | + public function remove(EntityInterface $entity, $flush = false) |
|
77 | 77 | { |
78 | 78 | $dm = $this->dm; |
79 | 79 | $events = $dm->getEventManager(); |
@@ -71,13 +71,13 @@ discard block |
||
71 | 71 | if (!$this->params('no-check')) { |
72 | 72 | |
73 | 73 | |
74 | - $console->writeLine('Checking dependencies ... ' . PHP_EOL); |
|
74 | + $console->writeLine('Checking dependencies ... '.PHP_EOL); |
|
75 | 75 | |
76 | 76 | $eraser = $this->plugin(EntityEraser::class); |
77 | 77 | $counts = []; |
78 | 78 | $totalCount = 0; |
79 | 79 | foreach ($entities as $entity) { |
80 | - $console->writeLine(' ' . $this->entityToString($entity)); |
|
80 | + $console->writeLine(' '.$this->entityToString($entity)); |
|
81 | 81 | $totalCount += 1; |
82 | 82 | $dependencies = $eraser->checkDependencies($entity); |
83 | 83 | |
@@ -90,24 +90,24 @@ discard block |
||
90 | 90 | $entitiesCount = count($dependendEntities); |
91 | 91 | } |
92 | 92 | |
93 | - $console->writeLine(' ' . $entitiesCount . ' ' . $dependencyList->getName() . ': ' . $dependencyList->getDescription()); |
|
93 | + $console->writeLine(' '.$entitiesCount.' '.$dependencyList->getName().': '.$dependencyList->getDescription()); |
|
94 | 94 | |
95 | 95 | $totalCount += $entitiesCount; |
96 | 96 | if (!isset($counts[$dependencyList->getName()])) { $counts[$dependencyList->getName()] = 0; } |
97 | 97 | $counts[$dependencyList->getName()] += $entitiesCount; |
98 | 98 | |
99 | 99 | foreach ($dependendEntities as $dependendEntity) { |
100 | - $console->writeLine(' - ' . $this->entityToString($dependendEntity)); |
|
100 | + $console->writeLine(' - '.$this->entityToString($dependendEntity)); |
|
101 | 101 | } |
102 | 102 | $console->writeLine(' '); |
103 | 103 | } |
104 | 104 | $console->writeLine(''); |
105 | 105 | } |
106 | 106 | |
107 | - $console->writeLine($totalCount . ' entities affected:'); |
|
108 | - $console->writeLine(' ' . count($entities) . ' ' . $this->params('entity')); |
|
107 | + $console->writeLine($totalCount.' entities affected:'); |
|
108 | + $console->writeLine(' '.count($entities).' '.$this->params('entity')); |
|
109 | 109 | foreach ($counts as $name => $count) { |
110 | - $console->writeLine(' ' . $count . ' ' . $name); |
|
110 | + $console->writeLine(' '.$count.' '.$name); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | $console->writeLine(''); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | $totalCount = 0; |
124 | 124 | $counts = []; |
125 | 125 | |
126 | - $progress = new ProgressBar(count($entities)); |
|
126 | + $progress = new ProgressBar(count($entities)); |
|
127 | 127 | $i = 0; |
128 | 128 | foreach ($entities as $entity) { |
129 | 129 | $progress->update(++$i, $entity->getId()); |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | |
141 | 141 | $progress->finish(); |
142 | 142 | $console->writeLine(''); |
143 | - $console->writeLine('Processed ' . $totalCount . ' entities.'); |
|
144 | - $console->writeLine(' ' . count($entities) . ' ' . $this->params('entity') . ' deleted.'); |
|
143 | + $console->writeLine('Processed '.$totalCount.' entities.'); |
|
144 | + $console->writeLine(' '.count($entities).' '.$this->params('entity').' deleted.'); |
|
145 | 145 | foreach ($counts as $name => $count) { |
146 | - $console->writeLine(' ' . $count[0] . ' ' . $name . ' ' . $count[1]); |
|
146 | + $console->writeLine(' '.$count[0].' '.$name.' '.$count[1]); |
|
147 | 147 | } |
148 | 148 | } |
149 | 149 | |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | $str = get_class($entity); |
189 | 189 | |
190 | 190 | if ($entity instanceOf \Core\Entity\IdentifiableEntityInterface) { |
191 | - $str .= '( ' . $entity->getId() . ' )'; |
|
191 | + $str .= '( '.$entity->getId().' )'; |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | return $str; |