public function LanguageManager::getCurrentLanguage

public LanguageManager::getCurrentLanguage($type = LanguageInterface::TYPE_INTERFACE)

Returns the current language for the given type.

Parameters

string $type: (optional) The language type; e.g., the interface or the content language. Defaults to \Drupal\Core\Language\LanguageInterface::TYPE_INTERFACE.

Return value

\Drupal\Core\Language\LanguageInterface The current language object for the given type of language.

Overrides LanguageManagerInterface::getCurrentLanguage

File

core/lib/Drupal/Core/Language/LanguageManager.php, line 102

Class

LanguageManager
Class responsible for providing language support on language-unaware sites.

Namespace

Drupal\Core\Language

Code

public function getCurrentLanguage($type = LanguageInterface::TYPE_INTERFACE) {
  return $this->getDefaultLanguage();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Language!LanguageManager.php/function/LanguageManager::getCurrentLanguage/8.1.x