beforeLogin() protected method
This method is called before logging in a user.
The default implementation will trigger the EVENT_BEFORE_LOGIN event. If you override this method, make sure you call the parent implementation so that the event is triggered.
| protected boolean beforeLogin ( $identity, $cookieBased, $duration ) | ||
|---|---|---|
| $identity | yii\web\IdentityInterface |
The user identity information |
| $cookieBased | boolean |
Whether the login is cookie-based |
| $duration | integer |
Number of seconds that the user can remain in logged-in status. If 0, it means login till the user closes the browser or the session is manually destroyed. |
| return | boolean |
Whether the user should continue to be logged in |
Please login to continue.