class ConfigOverrideIntegrationTestCacheContext in Drupal 10
Same name and namespace in other branches
- 8 core/modules/config/tests/config_override_integration_test/src/Cache/ConfigOverrideIntegrationTestCacheContext.php \Drupal\config_override_integration_test\Cache\ConfigOverrideIntegrationTestCacheContext
- 9 core/modules/config/tests/config_override_integration_test/src/Cache/ConfigOverrideIntegrationTestCacheContext.php \Drupal\config_override_integration_test\Cache\ConfigOverrideIntegrationTestCacheContext
A cache context service intended for the config override integration test.
Cache context ID: 'config_override_integration_test'.
Hierarchy
- class \Drupal\config_override_integration_test\Cache\ConfigOverrideIntegrationTestCacheContext implements CacheContextInterface
Expanded class hierarchy of ConfigOverrideIntegrationTestCacheContext
1 string reference to 'ConfigOverrideIntegrationTestCacheContext'
- config_override_integration_test.services.yml in core/
modules/ config/ tests/ config_override_integration_test/ config_override_integration_test.services.yml - core/modules/config/tests/config_override_integration_test/config_override_integration_test.services.yml
1 service uses ConfigOverrideIntegrationTestCacheContext
- cache_context.config_override_integration_test in core/
modules/ config/ tests/ config_override_integration_test/ config_override_integration_test.services.yml - Drupal\config_override_integration_test\Cache\ConfigOverrideIntegrationTestCacheContext
File
- core/
modules/ config/ tests/ config_override_integration_test/ src/ Cache/ ConfigOverrideIntegrationTestCacheContext.php, line 13
Namespace
Drupal\config_override_integration_test\CacheView source
class ConfigOverrideIntegrationTestCacheContext implements CacheContextInterface {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return t('Config override integration test');
}
/**
* {@inheritdoc}
*/
public function getContext() {
// Default to the 'disabled' state.
$state = \Drupal::state()
->get('config_override_integration_test.enabled', FALSE) ? 'yes' : 'no';
return 'config_override_integration_test.' . $state;
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata() {
// Since this depends on State this can change at any time and is not
// cacheable.
$metadata = new CacheableMetadata();
$metadata
->setCacheMaxAge(0);
return $metadata;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigOverrideIntegrationTestCacheContext:: |
public | function |
Gets the cacheability metadata for the context. Overrides CacheContextInterface:: |
|
ConfigOverrideIntegrationTestCacheContext:: |
public | function |
Returns the string representation of the cache context. Overrides CacheContextInterface:: |
|
ConfigOverrideIntegrationTestCacheContext:: |
public static | function |
Returns the label of the cache context. Overrides CacheContextInterface:: |