class BackgroundImageSettingsTextCacheContext in Background Image 8
Same name and namespace in other branches
- 2.x src/Cache/Context/BackgroundImageSettingsTextCacheContext.php \Drupal\background_image\Cache\Context\BackgroundImageSettingsTextCacheContext
- 2.0.x src/Cache/Context/BackgroundImageSettingsTextCacheContext.php \Drupal\background_image\Cache\Context\BackgroundImageSettingsTextCacheContext
Cache context ID: 'background_image.settings.text'.
Hierarchy
- class \Drupal\background_image\Cache\Context\BackgroundImageBaseCacheContext implements CacheContextInterface
- class \Drupal\background_image\Cache\Context\BackgroundImageSettingsTextCacheContext
Expanded class hierarchy of BackgroundImageSettingsTextCacheContext
1 string reference to 'BackgroundImageSettingsTextCacheContext'
1 service uses BackgroundImageSettingsTextCacheContext
File
- src/
Cache/ Context/ BackgroundImageSettingsTextCacheContext.php, line 8
Namespace
Drupal\background_image\Cache\ContextView source
class BackgroundImageSettingsTextCacheContext extends BackgroundImageBaseCacheContext {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return t('Background Image: Text Setting');
}
/**
* {@inheritdoc}
*/
public function getContext() {
$context = $this->backgroundImage ? $this->backgroundImage
->getSettingsHash('text') : 0;
// Add entity specific target if text has tokens.
if ((!isset($name) || $name === 'text' || $name === 'text.value') && $this->backgroundImage
->hasEntityToken() && ($entity = $this->manager
->getEntityFromCurrentRoute())) {
$context .= ":{$entity->getEntityTypeId()}:{$entity->id()}";
}
return $context;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BackgroundImageBaseCacheContext:: |
protected | property | ||
BackgroundImageBaseCacheContext:: |
protected | property | ||
BackgroundImageBaseCacheContext:: |
public | function |
Gets the cacheability metadata for the context. Overrides CacheContextInterface:: |
|
BackgroundImageBaseCacheContext:: |
public | function | Constructs a BackgroundImageCacheContext object. | |
BackgroundImageSettingsTextCacheContext:: |
public | function |
Returns the string representation of the cache context. Overrides CacheContextInterface:: |
|
BackgroundImageSettingsTextCacheContext:: |
public static | function |
Returns the label of the cache context. Overrides CacheContextInterface:: |