protected function AccountForm::getEditedFieldNames in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::getEditedFieldNames()
Gets the names of all fields edited in the form.
If the entity form customly adds some fields to the form (i.e. without using the form display), it needs to add its fields here and override flagViolations() for displaying the violations.
Parameters
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
string[] An array of field names.
Overrides ContentEntityForm::getEditedFieldNames
File
- core/
modules/ user/ src/ AccountForm.php, line 350 - Contains \Drupal\user\AccountForm.
Class
- AccountForm
- Form controller for the user account forms.
Namespace
Drupal\userCode
protected function getEditedFieldNames(FormStateInterface $form_state) {
return array_merge(array(
'name',
'pass',
'mail',
'timezone',
'langcode',
'preferred_langcode',
'preferred_admin_langcode',
), parent::getEditedFieldNames($form_state));
}