class IsFrontPathCacheContext
Same name in other branches
- 9 core/lib/Drupal/Core/Cache/Context/IsFrontPathCacheContext.php \Drupal\Core\Cache\Context\IsFrontPathCacheContext
- 10 core/lib/Drupal/Core/Cache/Context/IsFrontPathCacheContext.php \Drupal\Core\Cache\Context\IsFrontPathCacheContext
- 11.x 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 \Drupal\Core\Cache\Context\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
*/
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
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
IsFrontPathCacheContext::$pathMatcher | protected | property | ||
IsFrontPathCacheContext::getCacheableMetadata | public | function | Gets the cacheability metadata for the context. | Overrides CacheContextInterface::getCacheableMetadata |
IsFrontPathCacheContext::getContext | public | function | Returns the string representation of the cache context. | Overrides CacheContextInterface::getContext |
IsFrontPathCacheContext::getLabel | public static | function | Returns the label of the cache context. | Overrides CacheContextInterface::getLabel |
IsFrontPathCacheContext::__construct | public | function | Constructs an IsFrontPathCacheContext object. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.