function system_form_user_form_alter

system_form_user_form_alter(&$form, FormStateInterface $form_state)

Implements hook_form_FORM_ID_alter() for \Drupal\user\AccountForm.

File

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

Code

function system_form_user_form_alter(&$form, FormStateInterface $form_state) {
  if (\Drupal::config('system.date')->get('timezone.user.configurable')) {
    system_user_timezone($form, $form_state);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!system!system.module/function/system_form_user_form_alter/8.1.x