function UserLogoutConfirm::submitForm

Overrides FormInterface::submitForm

File

core/modules/user/src/Form/UserLogoutConfirm.php, line 49

Class

UserLogoutConfirm
Provides a confirmation form for user logout.

Namespace

Drupal\user\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) : void {
    user_logout();
    $form_state->setRedirect('<front>');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.