public function BackgroundImageSettingsBlurCacheContext::getContext in Background Image 2.0.x
Same name and namespace in other branches
- 8 src/Cache/Context/BackgroundImageSettingsBlurCacheContext.php \Drupal\background_image\Cache\Context\BackgroundImageSettingsBlurCacheContext::getContext()
- 2.x src/Cache/Context/BackgroundImageSettingsBlurCacheContext.php \Drupal\background_image\Cache\Context\BackgroundImageSettingsBlurCacheContext::getContext()
Returns the string representation of the cache context.
A cache context service's name is used as a token (placeholder) cache key, and is then replaced with the string returned by this method.
Return value
string The string representation of the cache context.
Overrides CacheContextInterface::getContext
File
- src/
Cache/ Context/ BackgroundImageSettingsBlurCacheContext.php, line 20
Class
- BackgroundImageSettingsBlurCacheContext
- Cache context ID: 'background_image.settings.blur'.
Namespace
Drupal\background_image\Cache\ContextCode
public function getContext() {
return $this->backgroundImage ? $this->backgroundImage
->getSettingsHash('blur') : 0;
}