function system_form_user_profile_form_alter

Implements hook_form_FORM_ID_alter().

File

drupal/core/modules/system/system.module, line 2405
Configuration system that lets administrators modify the workings of the site.

Code

function system_form_user_profile_form_alter(&$form, &$form_state) {
  if (config('system.date')
    ->get('timezone.user.configurable')) {
    system_user_timezone($form, $form_state);
  }
  return $form;
}