Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ControllerBase.php

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\Controller

Code

protected function languageManager() {
    if (!$this->languageManager) {
        $this->languageManager = $this->container()
            ->get('language_manager');
    }
    return $this->languageManager;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal