1 system.install system_update_1102()

Set the "Log in", "Reset password", and "Create new account" pages to use tabs for switching between these pages.

Related topics

File

core/modules/system/system.install, line 3796
Install, update and uninstall functions for the system module.

Code

function system_update_1102() {
  $config = config('system.core');
  if ($config->get('user_login_appearance') === NULL) {
    $config->set('user_login_appearance', 'tabs');
    $config->set('login_admin_theme', 1);
    $config->save();
  }
}