public function LanguageNegotiator::setCurrentUser in Drupal 8
Same name and namespace in other branches
- 9 core/modules/language/src/LanguageNegotiator.php \Drupal\language\LanguageNegotiator::setCurrentUser()
Sets the current active user and resets all language types.
Parameters
\Drupal\Core\Session\AccountInterface $current_user: The current active user.
Overrides LanguageNegotiatorInterface::setCurrentUser
File
- core/
modules/ language/ src/ LanguageNegotiator.php, line 115
Class
- LanguageNegotiator
- Class responsible for performing language negotiation.
Namespace
Drupal\languageCode
public function setCurrentUser(AccountInterface $current_user) {
$this->currentUser = $current_user;
$this
->reset();
}