Interface MOXMAN_Auth_IAuthenticator
Implement this interface to provide an authenticator.
Public Methods
Method | Description | Defined By |
---|---|---|
authenticate() | Gets called on a authentication request. This method should check sessions or similar to verify that the user has access to the backend. | MOXMAN_Auth_IAuthenticator |
Method Details
Gets called on a authentication request. This method should check sessions or similar to verify that the user has access to the backend.
This method should return true if the current request is authenticated or false if it's not.
public abstract boolean authenticate ( MOXMAN_Auth_User $user ) | ||
$user | MOXMAN_Auth_User | User that wants to be authenticated. |
return | boolean | State if the user is authenticated. |
---|