There is a bundle for (Propel) for symfony2,is there sfguard bundle for symfony2

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

There's no sfGuard bundle (yet), but have you checked out FOSUserBundle? I actually like it better than sfGuard.

link|improve this answer
feedback

sfGuard Bundle for symfony2 is not available yet.

link|improve this answer
1  
And it won't ever be. FOSUserBundle is its successor. – Nanocom Nov 1 '11 at 12:20
feedback

The FOSUserBundle does the job and it's fully compatible with Propel. Note the official bundle for Propel is the PropelBundle.

William

link|improve this answer
feedback

FOSUserBundle is better than sfGuardUser, it allow to use different data source as ORM (Doctrine), MongoDB/CouchDB ODM or Propel.

Out of the box this Bundle does NOT support database persisted roles, the ACL funtionality is allow but only on two level of user: ROLE_USER, and ROLE_ADMIN, this roles can be grant to the user by the command line.

$ php app/console fos:user:promote testuser ROLE_ADMIN

You can found more about how store role on the data source at this link http://blog.jmoz.co.uk/symfony2-fosuserbundle-roles

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.