function LanguageConfigFactoryOverride::getCacheableMetadata
Gets the cacheability metadata associated with the config factory override.
Parameters
string $name: The name of the configuration override to get metadata for.
Return value
\Drupal\Core\Cache\CacheableMetadata A cacheable metadata object.
Overrides ConfigFactoryOverrideInterface::getCacheableMetadata
File
- 
              core/modules/ language/ src/ Config/ LanguageConfigFactoryOverride.php, line 221 
Class
- LanguageConfigFactoryOverride
- Provides language overrides for the configuration factory.
Namespace
Drupal\language\ConfigCode
public function getCacheableMetadata($name) {
  $metadata = new CacheableMetadata();
  if ($this->language) {
    $metadata->setCacheContexts([
      'languages:language_interface',
    ]);
  }
  return $metadata;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
