You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($config['event_listeners_backward_compatibility_layer']) {
208
+
trigger_deprecation('api-platform/core', '3.3', sprintf('The "event_listeners_backward_compatibility_layer" will be removed in 4.0. Use the configuration "use_symfony_listeners" to use Symfony listeners. The following listeners are deprecated and will be removed in API Platform 4.0: "%s"', implode(', ', [
209
+
AddHeadersListener::class,
210
+
AddTagsListener::class,
211
+
AddLinkHeaderListener::class,
212
+
HydraAddLinkHeaderListener::class,
213
+
DenyAccessListener::class,
214
+
])));
215
+
}
216
+
217
+
if ($config['event_listeners_backward_compatibility_layer']) {
@@ -508,8 +546,18 @@ private function registerJsonLdHydraConfiguration(ContainerBuilder $container, a
508
546
return;
509
547
}
510
548
549
+
if ($config['use_symfony_listeners']) {
550
+
$loader->load('symfony/jsonld.xml');
551
+
} else {
552
+
$loader->load('state/jsonld.xml');
553
+
}
554
+
555
+
if ($config['event_listeners_backward_compatibility_layer']) {
556
+
$loader->load('legacy/hydra.xml');
557
+
}
558
+
559
+
$loader->load('state/hydra.xml');
511
560
$loader->load('jsonld.xml');
512
-
$loader->load('legacy/hydra.xml');
513
561
$loader->load('hydra.xml');
514
562
515
563
if (!$container->has('api_platform.json_schema.schema_factory')) {
@@ -588,7 +636,7 @@ private function registerGraphQlConfiguration(ContainerBuilder $container, array
588
636
->addTag('api_platform.graphql.error_handler');
589
637
590
638
/* TODO: remove these in 4.x only one resolver factory is used and we're using providers/processors */
591
-
if ($config['event_listeners_backward_compatibility_layer'] ?? true) {
639
+
if ($config['event_listeners_backward_compatibility_layer']) {
592
640
// @TODO: API Platform 3.3 trigger_deprecation('api-platform/core', '3.3', 'In API Platform 4 only one factory "api_platform.graphql.resolver.factory.item" will remain. Stages are deprecated in favor of using a provider/processor.');
593
641
// + deprecate every service from legacy/graphql.xml
594
642
$loader->load('legacy/graphql.xml');
@@ -683,7 +731,10 @@ private function registerDoctrineMongoDbOdmConfiguration(ContainerBuilder $conta
@@ -83,7 +84,8 @@ public function getConfigTreeBuilder(): TreeBuilder
83
84
->defaultValue('0.0.0')
84
85
->end()
85
86
->booleanNode('show_webby')->defaultTrue()->info('If true, show Webby on the documentation page')->end()
86
-
->booleanNode('event_listeners_backward_compatibility_layer')->defaultTrue()->info('If true API Platform uses Symfony event listeners instead of providers and processors.')->end() // TODO: Add link to the documentation
87
+
->booleanNode('event_listeners_backward_compatibility_layer')->defaultNull()->info('If true API Platform uses Symfony event listeners instead of providers and processors.')->end() // TODO: Add link to the documentation
88
+
->booleanNode('use_symfony_listeners')->defaultFalse()->info(sprintf('Uses Symfony event listeners instead of the %s.', MainController::class))->end() // TODO: Add link to the documentation
87
89
->scalarNode('name_converter')->defaultNull()->info('Specify a name converter to use.')->end()
88
90
->scalarNode('asset_package')->defaultNull()->info('Specify an asset package name to use.')->end()
89
91
->scalarNode('path_segment_name_generator')->defaultValue('api_platform.metadata.path_segment_name_generator.underscore')->info('Specify a path name generator to use.')->end()
0 commit comments