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/
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
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
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
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
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