You are here

class BackgroundImageSettingsBlurCacheContext in Background Image 2.0.x

Same name and namespace in other branches
  1. 8 src/Cache/Context/BackgroundImageSettingsBlurCacheContext.php \Drupal\background_image\Cache\Context\BackgroundImageSettingsBlurCacheContext
  2. 2.x src/Cache/Context/BackgroundImageSettingsBlurCacheContext.php \Drupal\background_image\Cache\Context\BackgroundImageSettingsBlurCacheContext

Cache context ID: 'background_image.settings.blur'.

Hierarchy

Expanded class hierarchy of BackgroundImageSettingsBlurCacheContext

1 string reference to 'BackgroundImageSettingsBlurCacheContext'
background_image.services.yml in ./background_image.services.yml
background_image.services.yml
1 service uses BackgroundImageSettingsBlurCacheContext
cache_context.background_image.settings.blur in ./background_image.services.yml
Drupal\background_image\Cache\Context\BackgroundImageSettingsBlurCacheContext

File

src/Cache/Context/BackgroundImageSettingsBlurCacheContext.php, line 8

Namespace

Drupal\background_image\Cache\Context
View source
class BackgroundImageSettingsBlurCacheContext extends BackgroundImageBaseCacheContext {

  /**
   * {@inheritdoc}
   */
  public static function getLabel() {
    return t('Background Image: Blur Settings');
  }

  /**
   * {@inheritdoc}
   */
  public function getContext() {
    return $this->backgroundImage ? $this->backgroundImage
      ->getSettingsHash('blur') : 0;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BackgroundImageBaseCacheContext::$backgroundImage protected property
BackgroundImageBaseCacheContext::$manager protected property
BackgroundImageBaseCacheContext::getCacheableMetadata public function Gets the cacheability metadata for the context. Overrides CacheContextInterface::getCacheableMetadata
BackgroundImageBaseCacheContext::__construct public function Constructs a BackgroundImageCacheContext object.
BackgroundImageSettingsBlurCacheContext::getContext public function Returns the string representation of the cache context. Overrides CacheContextInterface::getContext
BackgroundImageSettingsBlurCacheContext::getLabel public static function Returns the label of the cache context. Overrides CacheContextInterface::getLabel