public function CacheabilityMetadataConfigOverride::getCacheableMetadata in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/config/tests/config_override_integration_test/src/CacheabilityMetadataConfigOverride.php \Drupal\config_override_integration_test\CacheabilityMetadataConfigOverride::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/ config/ tests/ config_override_integration_test/ src/ CacheabilityMetadataConfigOverride.php, line 55 
- Contains \Drupal\config_override_integration_test\CacheabilityMetadataConfigOverride.
Class
- CacheabilityMetadataConfigOverride
- Test implementation of a config override that provides cacheability metadata.
Namespace
Drupal\config_override_integration_testCode
public function getCacheableMetadata($name) {
  $metadata = new CacheableMetadata();
  if ($name === 'block.block.config_override_test') {
    $metadata
      ->setCacheContexts([
      'config_override_integration_test',
    ])
      ->setCacheTags([
      'config_override_integration_test_tag',
    ]);
  }
  return $metadata;
}