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 760
- Configuration system that lets administrators modify the workings of the site.
Code
1 2 3 4 5 | 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 ); } } |
Please login to continue.