public static function User::getAllowedConfigurableLanguageCodes in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::getAllowedConfigurableLanguageCodes()
Defines allowed configurable language codes for AllowedValues constraints.
Return value
string[] The allowed values.
File
- core/
modules/ user/ src/ Entity/ User.php, line 572 - Contains \Drupal\user\Entity\User.
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\EntityCode
public static function getAllowedConfigurableLanguageCodes() {
return array_keys(\Drupal::languageManager()
->getLanguages(LanguageInterface::STATE_CONFIGURABLE));
}