I have started using Yii framework and I have a -newbie- question about the use of the UserIdentity component.
My application has a admin module, which will act as a backoffice for content showed into the real site. This module has its own table for admins tbl_admin_user.
I want to separate the login method (to check against that table instead of tbl_user) of the module from the one of the general site. For that, I have assumed that I need to implement the authenticate method of UserIdentity just for the module and not the full app, correct my if I'm wrong.
When I override that method, I get nothing. The admin module is using the UserIdentity located at the *protected\components* instead of its own.
Any suggestion?