X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/ee389cd4c92c394753f98d1bfd3ccee2817b541d..4695f6a4609dce0c65aad7878ca0361d3b3ea424:/DependencyInjection/Configuration.php diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index aa71eb7..8434833 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -61,18 +61,20 @@ class Configuration implements ConfigurationInterface { 70 => '@RapsysAir/png/icon.70.png' ], 'svg' => '@RapsysAir/svg/icon.svg', - 'title' => 'Open Air', + 'title' => 'Libre Air', '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,9 @@ 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() ->end() ->end();