Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sure this is a simple question but I can't quite see or find the correct way to do it.

How do I add a role to a user when that user is created using the registration form?

share|improve this question

3 Answers

up vote 3 down vote accepted

Found it. I was on the right track :)

Override the registration form handler.

https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_forms.md

Add

$user->addRole('ROLE_MYROLE');

before

parent::onSuccess()
share|improve this answer

Don't add it to your constructor, ... my god. This is not a good way to change role at registration, because it ll change role at all actions of user. ( Bad for performance and security)

Please follow tetranz advice, Use the overrriding form way is better. But there is a good way to solve it. Please wait i ll give you an update.

Try to overide registration controller and add your user role line:

https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_controllers.md

share|improve this answer
Thanks. Overriding the controller looks like another way although it seems like it means more code duplicated in my controller class then if I override the handler. – tetranz Sep 13 '12 at 14:51

I'd just do it in the constructor of the user class if it involves all new users:

public function __construct() { /* your code */ $this->addRole('MYROLE'); }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.