简体   繁体   中英

Use Symfony2 without its authentication system?

I want to implement an authentication system with a username and password of the users table.

I have 2 other tables and users_type1 users_type2 that contain a foreign key to the users table ( fk_users ). My goal is to identify during the authentication if the user matches the type 1 or type 2 in order to redirect properly.

With the Symfony authentication system, I can not do it.

If I code everything myself without using the Symfony system, so I managed to do what I want.

My question is: What do you think to use Symfony2 without its authentication system?

You can use Symfony's RoleInterface to group users by their roles.

Symfony's documentation .

You can also control the redirect from a form parameter .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM