public AccountForm::alterPreferredLangcodeDescription(array $element)
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 282
Class
- AccountForm
- Form controller for the user account forms.
Namespace
Drupal\user
Code
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; }
Please login to continue.