]> Raphaël G. Git Repositories - airbundle/commitdiff
Cleanup
authorRaphaël Gertz <git@rapsys.eu>
Thu, 1 Feb 2024 03:23:56 +0000 (04:23 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 1 Feb 2024 03:23:56 +0000 (04:23 +0100)
Add locale, locales and languages config keys

DependencyInjection/Configuration.php

index 4e20178c2d0cb38cecfd72d63067a3d4222404e5..ed548930491976dece8beb5c34416ea9ef17088c 100644 (file)
@@ -65,14 +65,16 @@ class Configuration implements ConfigurationInterface {
                                'url' => 'rapsys_air'
                        ],
                        'copy' => [
-                               'long' => 'John Doe all rights reserved',
+                               'long' => 'All rights reserved',
                                'short' => 'Copyright 2019'
                        ],
                        'contact' => [
                                'name' => 'John Doe',
                                'mail' => 'contact@example.com'
                        ],
-                       'locales' => '%kernel.translator.fallbacks%'
+                       'locale' => '%kernel.default_locale%',
+                       'locales' => '%kernel.translator.fallbacks%',
+                       'languages' => '%rapsys_user.languages%',
                ];
 
                //Here we define the parameters that are allowed to configure the bundle.
@@ -115,7 +117,14 @@ class Configuration implements ConfigurationInterface {
                                                        ->scalarNode('mail')->cannotBeEmpty()->defaultValue($defaults['contact']['mail'])->end()
                                                ->end()
                                        ->end()
+                                       ->scalarNode('locale')->cannotBeEmpty()->defaultValue($defaults['locale'])->end()
                                        ->scalarNode('locales')->cannotBeEmpty()->defaultValue($defaults['locales'])->end()
+                                       ->scalarNode('languages')->cannotBeEmpty()->defaultValue($defaults['languages'])->end()
+                                       /*->arrayNode('languages')
+                                               ->treatNullLike([])
+                                               ->defaultValue($defaults['languages'])
+                                               ->scalarPrototype()->end()
+                                       ->end()*/
                                ->end()
                        ->end();