123456789101112131415161718192021222324252627 |
- fos_user:
- db_driver: orm # can be orm or odm
- firewall_name: main
- # if you change the class configuration, please also alter the sonata_user.yml file
- user_class: Chamilo\UserBundle\Entity\User
- group:
- group_class: Chamilo\UserBundle\Entity\Group
- group_manager: sonata.user.orm.group_manager
- service:
- user_manager: sonata.user.orm.user_manager
- registration:
- form:
- type: fos_user_profile
- handler: fos_user.profile.form.handler.default
- name: fos_user_profile_form
- validation_groups: [ProfileCustom]
- profile:
- form:
- type: fos_user_profile
- handler: fos_user.profile.form.handler.default
- name: fos_user_profile_form
- validation_groups: [ProfileCustom]
|