class FooCacheContext 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\FooCacheContext
Fake cache context class.
Hierarchy
- class \Drupal\Tests\Core\Cache\Context\FooCacheContext implements CacheContextInterface
Expanded class hierarchy of FooCacheContext
File
- core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ CacheContextsManagerTest.php, line 252 - Contains \Drupal\Tests\Core\Cache\Context\CacheContextsManagerTest.
Namespace
Drupal\Tests\Core\Cache\ContextView source
class FooCacheContext implements CacheContextInterface {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return 'Foo';
}
/**
* {@inheritdoc}
*/
public function getContext() {
return 'bar';
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata() {
return new CacheableMetadata();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FooCacheContext:: |
public | function |
Gets the cacheability metadata for the context. Overrides CacheContextInterface:: |
|
FooCacheContext:: |
public | function |
Returns the string representation of the cache context. Overrides CacheContextInterface:: |
|
FooCacheContext:: |
public static | function |
Returns the label of the cache context. Overrides CacheContextInterface:: |