public function AccountProxy::getPreferredLangcode in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Session/AccountProxy.php \Drupal\Core\Session\AccountProxy::getPreferredLangcode()
Returns the preferred language code of the account.
Parameters
bool $fallback_to_default: (optional) Whether the return value will fall back to the site default language if the user has no language preference.
Return value
string The language code that is preferred by the account. If the preferred language is not set or is a language not configured anymore on the site, the site default is returned or an empty string is returned (if $fallback_to_default is FALSE).
Overrides AccountInterface::getPreferredLangcode
File
- core/
lib/ Drupal/ Core/ Session/ AccountProxy.php, line 107 - Contains \Drupal\Core\Session\AccountProxy.
Class
- AccountProxy
- A proxied implementation of AccountInterface.
Namespace
Drupal\Core\SessionCode
public function getPreferredLangcode($fallback_to_default = TRUE) {
return $this
->getAccount()
->getPreferredLangcode($fallback_to_default);
}