public LanguageNegotiationMethodBase::setCurrentUser(AccountInterface $current_user)
Injects the current user.
Parameters
\Drupal\Core\Session\AccountInterface $current_user: The current active user.
Overrides LanguageNegotiationMethodInterface::setCurrentUser
File
- core/modules/language/src/LanguageNegotiationMethodBase.php, line 52
Class
- LanguageNegotiationMethodBase
- Base class for language negotiation methods.
Namespace
Drupal\language
Code
public function setCurrentUser(AccountInterface $current_user) {
$this->currentUser = $current_user;
}
Please login to continue.