class IsFrontPathCacheContext in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/Context/IsFrontPathCacheContext.php \Drupal\Core\Cache\Context\IsFrontPathCacheContext
- 9 core/lib/Drupal/Core/Cache/Context/IsFrontPathCacheContext.php \Drupal\Core\Cache\Context\IsFrontPathCacheContext
Defines a cache context for whether the URL is the front page of the site.
Cache context ID: 'url.path.is_front'.
Hierarchy
- class \Drupal\Core\Cache\Context\IsFrontPathCacheContext implements CacheContextInterface
Expanded class hierarchy of IsFrontPathCacheContext
1 file declares its use of IsFrontPathCacheContext
- IsFrontPathCacheContextTest.php in core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ IsFrontPathCacheContextTest.php
1 string reference to 'IsFrontPathCacheContext'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses IsFrontPathCacheContext
File
- core/
lib/ Drupal/ Core/ Cache/ Context/ IsFrontPathCacheContext.php, line 13
Namespace
Drupal\Core\Cache\ContextView source
class IsFrontPathCacheContext implements CacheContextInterface {
/**
* @var \Drupal\Core\Path\PathMatcherInterface
*/
protected $pathMatcher;
/**
* Constructs an IsFrontPathCacheContext object.
*
* @param \Drupal\Core\Path\PathMatcherInterface $path_matcher
* The path matcher.
*/
public function __construct(PathMatcherInterface $path_matcher) {
$this->pathMatcher = $path_matcher;
}
/**
* {@inheritdoc}
*/
public static function getLabel() {
return t('Is front page');
}
/**
* {@inheritdoc}
*/
public function getContext() {
return 'is_front.' . (int) $this->pathMatcher
->isFrontPage();
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata() {
$metadata = new CacheableMetadata();
$metadata
->addCacheTags([
'config:system.site',
]);
return $metadata;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
IsFrontPathCacheContext:: |
protected | property | ||
IsFrontPathCacheContext:: |
public | function |
Gets the cacheability metadata for the context. Overrides CacheContextInterface:: |
|
IsFrontPathCacheContext:: |
public | function |
Returns the string representation of the cache context. Overrides CacheContextInterface:: |
|
IsFrontPathCacheContext:: |
public static | function |
Returns the label of the cache context. Overrides CacheContextInterface:: |
|
IsFrontPathCacheContext:: |
public | function | Constructs an IsFrontPathCacheContext object. |