0

I am trying to customize sfDoctrineGuardPlugin to fit into my model and tie things together. Problem is I don't see very thorough documentation beyond how to set it up. I could go through and read the code, but it would be nice if there was a reference manual of some sort. Is there such a thing that I just can't find?

My main goal is to use emails for logins, tie in a user id to the rest of my model, etc, but I'm not sure where to start.

Benny
  • 3,899
  • 8
  • 46
  • 81

4 Answers4

1

Check this one http://www.symfony-project.org/plugins/sfDoctrineApplyPlugin. Yo can see there how they associate the id of the sf_guard_user with the sf_guard_user_profile table. Otherwise you can check in /plugins/sfDoctrineGuardPlugin/lib/validator/sfGuardValidatorUser.class.php how validates the user and pass

Luis Chanferoni
  • 336
  • 2
  • 4
  • 1
    Better check sfForkedDoctrineApplyPlugin, which is a fork of former, but has evolved very much – Dziamid Apr 01 '11 at 22:02
0

Have you read the readme section here ?

http://www.symfony-project.org/plugins/sfDoctrineGuardPlugin

It was the only doc I have found when I have installed doctrineGuard in my app

Elorfin
  • 2,487
  • 1
  • 27
  • 50
0

There's an extended documentation on the origin sfGuardPlugin which is also suitable for sfDoctrineGuardPlugin :

domi27
  • 6,903
  • 2
  • 21
  • 33
0

I added installation instructions for the forgot password feature on this site.

Community
  • 1
  • 1
Tapper
  • 1,393
  • 17
  • 28