You are here

class BackgroundImageCacheContext in Background Image 2.0.x

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

Cache context ID: 'background_image'.

Hierarchy

Expanded class hierarchy of BackgroundImageCacheContext

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

File

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

Namespace

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

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

  /**
   * {@inheritdoc}
   */
  public function getContext() {
    return $this->backgroundImage ? $this->backgroundImage
      ->getImageHash() : 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.
BackgroundImageCacheContext::getContext public function Returns the string representation of the cache context. Overrides CacheContextInterface::getContext
BackgroundImageCacheContext::getLabel public static function Returns the label of the cache context. Overrides CacheContextInterface::getLabel