X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/4d179d12db7cad65f5dc866becda2c0c18bdc0a9..1675b4362da8161d1e9f8ab67da2027ed0f51389:/DependencyInjection/Configuration.php?ds=sidebyside diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 22c34f0..ffe1d14 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -34,11 +34,12 @@ class Configuration implements ConfigurationInterface { //The bundle default values $defaults = [ 'class' => [ - 'group' => 'Rapsys\\UserBundle\\Entity\\Group', 'civility' => 'Rapsys\\UserBundle\\Entity\\Civility', + 'group' => 'Rapsys\\UserBundle\\Entity\\Group', 'user' => 'Rapsys\\UserBundle\\Entity\\User' ], 'default' => [ + 'admin' => 'ROLE_ADMIN', 'civility' => 'Mister', 'group' => [ 'User' ] ], @@ -69,21 +70,26 @@ class Configuration implements ConfigurationInterface { ] ], 'translate' => [], - 'languages' => [ - 'en_gb' => 'English' - ], 'contact' => [ 'address' => 'contact@example.com', 'name' => 'John Doe' ], 'context' => [], 'edit' => [ + 'admin' => ['mail' => true, 'pseudonym' => true], 'field' => [], 'route' => ['index' => 'index_url'], 'view' => [ 'name' => '@RapsysUser/form/register.html.twig', - 'edit' => 'Rapsys\UserBundle\Form\RegisterType', - 'reset' => 'Rapsys\UserBundle\Form\LoginType', + 'edit' => 'Rapsys\UserBundle\Form\EditType', + 'reset' => 'Rapsys\UserBundle\Form\ResetType', + 'context' => [] + ] + ], + 'index' => [ + 'route' => ['index' => 'index_url'], + 'view' => [ + 'name' => '@RapsysUser/form/index.html.twig', 'context' => [] ] ], @@ -99,7 +105,7 @@ class Configuration implements ConfigurationInterface { 'route' => ['index' => 'index_url', 'recover' => 'recover_url'], 'view' => [ 'name' => '@RapsysUser/form/recover.html.twig', - 'form' => 'Rapsys\UserBundle\Form\LoginType', + 'form' => 'Rapsys\UserBundle\Form\RecoverType', 'context' => [] ], 'mail' => [ @@ -110,6 +116,7 @@ class Configuration implements ConfigurationInterface { ] ], 'register' => [ + 'admin' => [], 'field' => [], 'route' => ['index' => 'index_url', 'confirm' => 'confirm_url'], 'view' => [ @@ -142,14 +149,26 @@ class Configuration implements ConfigurationInterface { ->addDefaultsIfNotSet() ->children() ->arrayNode('class') - ->treatNullLike([]) - ->defaultValue($defaults['class']) - ->scalarPrototype()->end() + ->addDefaultsIfNotSet() + ->ignoreExtraKeys() + ->children() + ->scalarNode('civility')->cannotBeEmpty()->defaultValue($defaults['class']['civility'])->end() + ->scalarNode('group')->cannotBeEmpty()->defaultValue($defaults['class']['group'])->end() + ->scalarNode('user')->cannotBeEmpty()->defaultValue($defaults['class']['user'])->end() + ->end() ->end() ->arrayNode('default') - ->treatNullLike([]) - ->defaultValue($defaults['default']) - ->variablePrototype()->end() + ->addDefaultsIfNotSet() + ->ignoreExtraKeys() + ->children() + ->scalarNode('admin')->cannotBeEmpty()->defaultValue($defaults['default']['admin'])->end() + ->scalarNode('civility')->cannotBeEmpty()->defaultValue($defaults['default']['civility'])->end() + ->arrayNode('group') + ->treatNullLike([]) + ->defaultValue($defaults['default']['group']) + ->scalarPrototype()->end() + ->end() + ->end() ->end() ->arrayNode('route') ->addDefaultsIfNotSet() @@ -227,12 +246,6 @@ class Configuration implements ConfigurationInterface { ->defaultValue($defaults['translate']) ->scalarPrototype()->end() ->end() - #TODO: see if we can't prevent key normalisation with ->normalizeKeys(false) - ->arrayNode('languages') - ->treatNullLike([]) - ->defaultValue($defaults['languages']) - ->scalarPrototype()->end() - ->end() ->arrayNode('contact') ->addDefaultsIfNotSet() ->children() @@ -248,6 +261,11 @@ class Configuration implements ConfigurationInterface { ->arrayNode('edit') ->addDefaultsIfNotSet() ->children() + ->arrayNode('admin') + ->treatNullLike([]) + ->defaultValue($defaults['edit']['admin']) + ->variablePrototype()->end() + ->end() ->arrayNode('field') ->treatNullLike([]) ->defaultValue($defaults['edit']['field']) @@ -273,6 +291,27 @@ class Configuration implements ConfigurationInterface { ->end() ->end() ->end() + ->arrayNode('index') + ->addDefaultsIfNotSet() + ->children() + ->arrayNode('route') + ->treatNullLike([]) + ->defaultValue($defaults['index']['route']) + ->scalarPrototype()->end() + ->end() + ->arrayNode('view') + ->addDefaultsIfNotSet() + ->children() + ->scalarNode('name')->cannotBeEmpty()->defaultValue($defaults['index']['view']['name'])->end() + ->arrayNode('context') + ->treatNullLike([]) + ->defaultValue($defaults['index']['view']['context']) + ->variablePrototype()->end() + ->end() + ->end() + ->end() + ->end() + ->end() ->arrayNode('login') ->addDefaultsIfNotSet() ->children() @@ -333,6 +372,11 @@ class Configuration implements ConfigurationInterface { ->arrayNode('register') ->addDefaultsIfNotSet() ->children() + ->arrayNode('admin') + ->treatNullLike([]) + ->defaultValue($defaults['edit']['admin']) + ->variablePrototype()->end() + ->end() ->arrayNode('field') ->treatNullLike([]) ->defaultValue($defaults['register']['field'])