public function AccountForm::alterPreferredLangcodeDescription in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::alterPreferredLangcodeDescription()
Alters the preferred language widget description.
Parameters
array $element: The preferred language form element.
Return value
array The preferred language form element.
File
- core/
modules/ user/ src/ AccountForm.php, line 328
Class
- AccountForm
- Form controller for the user account forms.
Namespace
Drupal\userCode
public function alterPreferredLangcodeDescription(array $element) {
// Only add to the description if the form element has a description.
if (isset($element['#description'])) {
$element['#description'] .= ' ' . $this
->t("This is also assumed to be the primary language of this account's profile information.");
}
return $element;
}