X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/58242917a50ec39071529953e77343fd3eb6dda0..face6575364d85f53b5398175699779850dbf8d1:/DependencyInjection/Configuration.php diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 13d24a7..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(); + /** + * {@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. @@ -36,21 +44,33 @@ class Configuration implements ConfigurationInterface { //Here we define the parameters that are allowed to configure the bundle. $treeBuilder //Parameters - ->root('parameters') + ->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; + } }