X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/e2f3a2bc4d37351dd216f03625901a0f06190e67..576070fab9876583244210b655602ff14de36095:/DependencyInjection/Configuration.php?ds=sidebyside diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 829a1aa..3ceb22f 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -1,7 +1,7 @@ * @@ -79,6 +79,7 @@ class Configuration implements ConfigurationInterface { ], 'context' => [], 'edit' => [ + 'field' => [], 'route' => ['index' => 'index_url'], 'view' => [ 'name' => '@RapsysUser/form/register.html.twig', @@ -110,6 +111,7 @@ class Configuration implements ConfigurationInterface { ] ], 'register' => [ + 'field' => [], 'route' => ['index' => 'index_url', 'confirm' => 'confirm_url'], 'view' => [ 'name' => '@RapsysUser/form/register.html.twig', @@ -146,15 +148,9 @@ class Configuration implements ConfigurationInterface { ->scalarPrototype()->end() ->end() ->arrayNode('default') - ->addDefaultsIfNotSet() - ->children() - ->scalarNode('civility')->cannotBeEmpty()->defaultValue($defaults['default']['civility'])->end() - ->arrayNode('group') - ->treatNullLike([]) - ->defaultValue($defaults['default']['group']) - ->scalarPrototype()->end() - ->end() - ->end() + ->treatNullLike([]) + ->defaultValue($defaults['default']) + ->variablePrototype()->end() ->end() ->arrayNode('route') ->addDefaultsIfNotSet() @@ -253,6 +249,11 @@ class Configuration implements ConfigurationInterface { ->arrayNode('edit') ->addDefaultsIfNotSet() ->children() + ->arrayNode('field') + ->treatNullLike([]) + ->defaultValue($defaults['edit']['field']) + ->variablePrototype()->end() + ->end() ->arrayNode('route') ->treatNullLike([]) ->defaultValue($defaults['edit']['route']) @@ -333,6 +334,11 @@ class Configuration implements ConfigurationInterface { ->arrayNode('register') ->addDefaultsIfNotSet() ->children() + ->arrayNode('field') + ->treatNullLike([]) + ->defaultValue($defaults['register']['field']) + ->variablePrototype()->end() + ->end() ->arrayNode('route') ->treatNullLike([]) ->defaultValue($defaults['register']['route'])