我是我在Symfony2项目中使用的FOSUserBundle的新手。
我想要的是在用户成功注册时,即在确认注册过程后,在我的系统中执行某些操作(保留某些信息)。
我该怎样进行?
提前致谢。
答案 0 :(得分:3)
您可以注册一个事件监听器来收听注册确认事件并处理那里的任何帖子注册操作。
FOSUserBundle事件:https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/FOSUserEvents.php
Symfony2事件监听器: http://symfony.com/doc/current/cookbook/service_container/event_listener.html