function PirateDayCacheabilityMetadataConfigOverride::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_test/ src/ PirateDayCacheabilityMetadataConfigOverride.php, line 55  
Class
- PirateDayCacheabilityMetadataConfigOverride
 - Test implementation of a config override that provides cacheability metadata.
 
Namespace
Drupal\config_override_testCode
public function getCacheableMetadata($name) {
  $metadata = new CacheableMetadata();
  $metadata->setCacheContexts([
    'pirate_day',
  ])
    ->setCacheTags([
    'pirate-day-tag',
  ])
    ->setCacheMaxAge(PirateDayCacheContext::PIRATE_DAY_MAX_AGE);
  return $metadata;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.