function user_logout
Same name in other branches
- 7.x modules/user/user.pages.inc \user_logout()
- 8.9.x core/modules/user/user.module \user_logout()
- 10 core/modules/user/user.module \user_logout()
- 11.x core/modules/user/user.module \user_logout()
Logs the current user out.
5 calls to user_logout()
- MaintenanceModeSubscriber::onKernelRequestMaintenance in core/
modules/ user/ src/ EventSubscriber/ MaintenanceModeSubscriber.php - Logout users if site is in maintenance mode.
- MaintenanceModeSubscriber::onMaintenanceModeRequest in core/
modules/ user/ src/ EventSubscriber/ MaintenanceModeSubscriber.php - Logout users if site is in maintenance mode and user is not exempt.
- UserAuthenticationController::userLogout in core/
modules/ user/ src/ Controller/ UserAuthenticationController.php - Logs the user out.
- UserController::logout in core/
modules/ user/ src/ Controller/ UserController.php - Logs the current user out.
- UserController::resetPass in core/
modules/ user/ src/ Controller/ UserController.php - Redirects to the user password reset form.
File
-
core/
modules/ user/ user.module, line 1224
Code
function user_logout() {
$user = \Drupal::currentUser();
\Drupal::logger('user')->notice('Session closed for %name.', [
'%name' => $user->getAccountName(),
]);
\Drupal::moduleHandler()->invokeAll('user_logout', [
$user,
]);
// Destroy the current session, and reset $user to the anonymous user.
// Note: In Symfony the session is intended to be destroyed with
// Session::invalidate(). Regrettably this method is currently broken and may
// lead to the creation of spurious session records in the database.
// @see https://github.com/symfony/symfony/issues/12375
\Drupal::service('session_manager')->destroy();
$user->setAccount(new AnonymousUserSession());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.