class NoOptimizeCacheContext in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Cache/Context/CacheContextsManagerTest.php \Drupal\Tests\Core\Cache\Context\NoOptimizeCacheContext
Non-optimizable context class.
Hierarchy
- class \Drupal\Tests\Core\Cache\Context\NoOptimizeCacheContext implements CacheContextInterface
Expanded class hierarchy of NoOptimizeCacheContext
File
- core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ CacheContextsManagerTest.php, line 311 - Contains \Drupal\Tests\Core\Cache\Context\CacheContextsManagerTest.
Namespace
Drupal\Tests\Core\Cache\ContextView source
class NoOptimizeCacheContext implements CacheContextInterface {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return 'Foo';
}
/**
* {@inheritdoc}
*/
public function getContext() {
return 'bar';
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata() {
$cacheable_metadata = new CacheableMetadata();
return $cacheable_metadata
->setCacheMaxAge(0);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NoOptimizeCacheContext:: |
public | function |
Gets the cacheability metadata for the context. Overrides CacheContextInterface:: |
|
NoOptimizeCacheContext:: |
public | function |
Returns the string representation of the cache context. Overrides CacheContextInterface:: |
|
NoOptimizeCacheContext:: |
public static | function |
Returns the label of the cache context. Overrides CacheContextInterface:: |