public function LanguagesCacheContext::getContext in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Cache/Context/LanguagesCacheContext.php \Drupal\Core\Cache\Context\LanguagesCacheContext::getContext()
 
$type can be NULL, or one of the language types supported by the language manager, typically:
Throws
\RuntimeException In case an invalid language type is specified.
Overrides CalculatedCacheContextInterface::getContext
See also
\Drupal\Core\Language\LanguageManagerInterface::getLanguageTypes()
File
- core/
lib/ Drupal/ Core/ Cache/ Context/ LanguagesCacheContext.php, line 56  - Contains \Drupal\Core\Cache\Context\LanguagesCacheContext.
 
Class
- LanguagesCacheContext
 - Defines the LanguagesCacheContext service, for "per language" caching.
 
Namespace
Drupal\Core\Cache\ContextCode
public function getContext($type = NULL) {
  if ($type === NULL) {
    $context_parts = array();
    if ($this->languageManager
      ->isMultilingual()) {
      foreach ($this->languageManager
        ->getLanguageTypes() as $type) {
        $context_parts[] = $this->languageManager
          ->getCurrentLanguage($type)
          ->getId();
      }
    }
    else {
      $context_parts[] = $this->languageManager
        ->getCurrentLanguage()
        ->getId();
    }
    return implode(',', $context_parts);
  }
  else {
    $language_types = $this->languageManager
      ->getDefinedLanguageTypesInfo();
    if (!isset($language_types[$type])) {
      throw new \RuntimeException(sprintf('The language type "%s" is invalid.', $type));
    }
    return $this->languageManager
      ->getCurrentLanguage($type)
      ->getId();
  }
}