X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/6e1d7f7295c7d66282aad5603705009b931d70b3..0f3e0c6731495e0462fd086d60479cf5920c21bf:/DependencyInjection/Configuration.php diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 9be5f15..9b1c3a3 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -11,21 +11,29 @@ use Symfony\Component\Config\Definition\ConfigurationInterface; * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/configuration.html} */ class Configuration implements ConfigurationInterface { - /** - * {@inheritdoc} - */ - public function getConfigTreeBuilder() { - $treeBuilder = new TreeBuilder('parameters'); + /** + * {@inheritdoc} + */ + public function getConfigTreeBuilder() { + $treeBuilder = new TreeBuilder('rapsys_air'); - // Here you should define the parameters that are allowed to - // configure your bundle. See the documentation linked above for - // more information on that topic. + // Here you should define the parameters that are allowed to + // configure your bundle. See the documentation linked above for + // more information on that topic. //Set defaults $defaults = [ - 'logo' => 'bundles/rapsysair/png/logo.png', - 'title' => 'Open Air', - 'contact_name' => 'Raphaël Gertz', - 'contact_mail' => 'airlibre@rapsys.eu', + 'site' => [ + 'logo' => '@RapsysAir/../public/png/logo.png', + 'title' => 'Air Libre' + ], + 'copy' => [ + 'long' => 'John Doe all rights reserved', + 'short' => 'Copyright 2019' + ], + 'contact' => [ + 'name' => 'John Doe', + 'mail' => 'contact@example.com' + ] ]; //Here we define the parameters that are allowed to configure the bundle. @@ -39,18 +47,30 @@ class Configuration implements ConfigurationInterface { ->getRootNode() ->addDefaultsIfNotSet() ->children() - ->arrayNode('rapsys_air') + ->arrayNode('site') ->addDefaultsIfNotSet() ->children() - ->scalarNode('logo')->defaultValue($defaults['logo'])->treatNullLike($defaults['logo'])->isRequired()->end() - ->scalarNode('title')->defaultValue($defaults['title'])->treatNullLike($defaults['title'])->isRequired()->end() - ->scalarNode('contact_name')->defaultValue($defaults['contact_name'])->treatNullLike($defaults['contact_name'])->isRequired()->end() - ->scalarNode('contact_mail')->defaultValue($defaults['contact_mail'])->treatNullLike($defaults['contact_mail'])->isRequired()->end() + ->scalarNode('logo')->cannotBeEmpty()->defaultValue($defaults['site']['logo'])->end() + ->scalarNode('title')->cannotBeEmpty()->defaultValue($defaults['site']['title'])->end() + ->end() + ->end() + ->arrayNode('copy') + ->addDefaultsIfNotSet() + ->children() + ->scalarNode('long')->defaultValue($defaults['copy']['long'])->end() + ->scalarNode('short')->defaultValue($defaults['copy']['short'])->end() + ->end() + ->end() + ->arrayNode('contact') + ->addDefaultsIfNotSet() + ->children() + ->scalarNode('name')->cannotBeEmpty()->defaultValue($defaults['contact']['name'])->end() + ->scalarNode('mail')->cannotBeEmpty()->defaultValue($defaults['contact']['mail'])->end() ->end() ->end() ->end() ->end(); - return $treeBuilder; - } + return $treeBuilder; + } }