[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. http://trac.symfony-project.org/browser/plugins/sfGuardExtraPlugin/branches/1.2/lib/

[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 regis

[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. Filippo On Feb 12, 7:04 pm, Fruitlover wrote: > Hi, > > How can i display the register link, in my login page using > SfGuardExtraPlugin? > > My login and logout was came from sfGuard and after insta

[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: ... getIdLabel() ?> getId() ?> ... getNameLabel() ?> getName() ?> ... In the

[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 wrote: > Hi all, > > I would like tocreateamany-to-manyrelationfr

[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 wrote: > Hi all, > > I would like to creat