Logs a user in, no redirects.
AftersuccessfulLogin event is called if the second parameter is set to true.
Syntax
Security::loginAs($username, $callEvent = true)
Arguments
$username
name of the user to be logged in.
$callEvent
optional. AftersuccessfulLogin event will be called if the second parameter is set to true or omitted.
Return value
No return value.
Example
Authorize the current user:
$username = "User";
Security::loginAs($username);
See also: