class UserCacheContext in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Cache/Context/UserCacheContext.php \Drupal\Core\Cache\Context\UserCacheContext
Defines the UserCacheContext service, for "per user" caching.
Cache context ID: 'user'.
Hierarchy
- class \Drupal\Core\Cache\Context\UserCacheContextBase
- class \Drupal\Core\Cache\Context\UserCacheContext implements CacheContextInterface
Expanded class hierarchy of UserCacheContext
1 string reference to 'UserCacheContext'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses UserCacheContext
File
- core/
lib/ Drupal/ Core/ Cache/ Context/ UserCacheContext.php, line 12
Namespace
Drupal\Core\Cache\ContextView source
class UserCacheContext extends UserCacheContextBase implements CacheContextInterface {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return t('User');
}
/**
* {@inheritdoc}
*/
public function getContext() {
return $this->user
->id();
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata() {
return new CacheableMetadata();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UserCacheContext:: |
public | function |
Gets the cacheability metadata for the context. Overrides CacheContextInterface:: |
|
UserCacheContext:: |
public | function |
Returns the string representation of the cache context. Overrides CacheContextInterface:: |
|
UserCacheContext:: |
public static | function |
Returns the label of the cache context. Overrides CacheContextInterface:: |
|
UserCacheContextBase:: |
protected | property | The account object. | |
UserCacheContextBase:: |
public | function | Constructs a new UserCacheContextBase class. | 1 |