function user_user_presave

Implements hook_ENTITY_TYPE_presave() for user entities.

@todo https://www.drupal.org/project/drupal/issues/3112704 Move to \Drupal\user\Entity\User::preSave().

File

core/modules/user/user.module, line 156

Code

function user_user_presave(UserInterface $account) {
  $config = \Drupal::config('system.date');
  if ($config->get('timezone.user.configurable') && !$account->getTimeZone() && !$config->get('timezone.user.default')) {
    $account->timezone = $config->get('timezone.default');
  }
}

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