[symfony-users] Re: How can i display the register link, in my login page using SfGuardExtraPlugin?

2010-02-15 Thread p16
Hi, the regstration link seems ok. (I gave you the wrong one yesterday, sorry) The routing role sf_guard_register you added doesn't seem to be right. The plugin should register its own routing roles by itself.

[symfony-users] Re: How can i display the register link, in my login page using SfGuardExtraPlugin?

2010-02-14 Thread p16
Hi, You should use the link in the standard signinSuccess.php template in your login template. a href=?php echo url_for('@sf_guard_password') ??php echo __('Forgot your password?') ?/a Filippo On Feb 12, 7:04 pm, Fruitlover krizhel...@yahoo.com wrote: Hi, How can i display the register link,

[symfony-users] Re: creating profile row upon registration

2010-02-14 Thread p16
Hi, You can embed the profile form into the registration form and let the user fill it: In your registration form class, configure() method, add: $profile_form = new YourProfileForm($this-object-Profile); $this-embedForm('Profile', $profile_form); Or you can do it inside the action

[symfony-users] Re: Does the showSucess works same way a form?

2010-01-18 Thread p16
Hi, If you need to change those labels frequently, maybe you should store them on the database: Lead: columns: id: ... id_label: ... name: ... name_label: ... So that you can do something like this: ... th?php echo $leads-getIdLabel() ?/th td?php echo $leads-getId() ?/td ...

[symfony-users] Re: Create a many-to-many relation from sfGuardUser class (sfDoctrineGuardPlugin) to itself

2009-12-03 Thread p16
Hi, A solution could be the creation of a Profile model class. This class should be in a one to one relation with the sfGuardUser model class, and you can still make a many to many relation on the profile table. Filippo On Dec 1, 2:32 pm, tirengarfio tirengar...@gmail.com wrote: Hi all, I

[symfony-users] Re: Create a many-to-many relation from sfGuardUser class (sfDoctrineGuardPlugin) to itself

2009-12-03 Thread p16
Hi, A solution could be creating a Profile model class in relation one to one with the sfGuardUser model class. Then you can create a many-yo-many relation on the Profile class with itself. Filippo On Dec 1, 2:32 pm, tirengarfio tirengar...@gmail.com wrote: Hi all, I would like