function ControllerBase::languageManager
Returns the language manager service.
Return value
\Drupal\Core\Language\LanguageManagerInterface The language manager.
File
-
core/
lib/ Drupal/ Core/ Controller/ ControllerBase.php, line 245
Class
- ControllerBase
- Utility base class for thin controllers.
Namespace
Drupal\Core\ControllerCode
protected function languageManager() {
if (!$this->languageManager) {
$this->languageManager = $this->container()
->get('language_manager');
}
return $this->languageManager;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.