X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/576070fab9876583244210b655602ff14de36095..7147766cba7c940cba95c8028b14d02846b055fa:/DependencyInjection/Configuration.php

diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
index 3ceb22f..fa3306c 100644
--- a/DependencyInjection/Configuration.php
+++ b/DependencyInjection/Configuration.php
@@ -39,6 +39,7 @@ class Configuration implements ConfigurationInterface {
 				'user' => 'Rapsys\\UserBundle\\Entity\\User'
 			],
 			'default' => [
+				'admin' => 'ROLE_ADMIN',
 				'civility' => 'Mister',
 				'group' => [ 'User' ]
 			],
@@ -69,22 +70,29 @@ class Configuration implements ConfigurationInterface {
 				]
 			],
 			'translate' => [],
-			'locales' => '%kernel.translator.fallbacks%',
 			'languages' => [
 				'en_gb' => 'English'
 			],
 			'contact' => [
-				'title' => 'John Doe',
-				'mail' => 'contact@example.com'
+				'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' => []
 				]
 			],
@@ -100,7 +108,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' => [
@@ -111,6 +119,7 @@ class Configuration implements ConfigurationInterface {
 				]
 			],
 			'register' => [
+				'admin' => [],
 				'field' => [],
 				'route' => ['index' => 'index_url', 'confirm' => 'confirm_url'],
 				'view' => [
@@ -148,9 +157,16 @@ class Configuration implements ConfigurationInterface {
 						->scalarPrototype()->end()
 					->end()
 					->arrayNode('default')
-						->treatNullLike([])
-						->defaultValue($defaults['default'])
-						->variablePrototype()->end()
+						->addDefaultsIfNotSet()
+						->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()
@@ -228,7 +244,7 @@ class Configuration implements ConfigurationInterface {
 						->defaultValue($defaults['translate'])
 						->scalarPrototype()->end()
 					->end()
-					->scalarNode('locales')->cannotBeEmpty()->defaultValue($defaults['locales'])->end()
+					#TODO: see if we can't prevent key normalisation with ->normalizeKeys(false)
 					->arrayNode('languages')
 						->treatNullLike([])
 						->defaultValue($defaults['languages'])
@@ -237,8 +253,8 @@ class Configuration implements ConfigurationInterface {
 					->arrayNode('contact')
 						->addDefaultsIfNotSet()
 						->children()
-							->scalarNode('title')->cannotBeEmpty()->defaultValue($defaults['contact']['title'])->end()
-							->scalarNode('mail')->cannotBeEmpty()->defaultValue($defaults['contact']['mail'])->end()
+							->scalarNode('address')->cannotBeEmpty()->defaultValue($defaults['contact']['address'])->end()
+							->scalarNode('name')->cannotBeEmpty()->defaultValue($defaults['contact']['name'])->end()
 						->end()
 					->end()
 					->arrayNode('context')
@@ -249,6 +265,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'])
@@ -274,6 +295,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()
@@ -334,6 +376,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'])