class PathCacheContext
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Cache/Context/PathCacheContext.php \Drupal\Core\Cache\Context\PathCacheContext
- 10 core/lib/Drupal/Core/Cache/Context/PathCacheContext.php \Drupal\Core\Cache\Context\PathCacheContext
- 8.9.x core/lib/Drupal/Core/Cache/Context/PathCacheContext.php \Drupal\Core\Cache\Context\PathCacheContext
Defines the PathCacheContext service, for "per URL path" caching.
Cache context ID: 'url.path'.
(This allows for caching relative URLs.)
Hierarchy
- class \Drupal\Core\Cache\Context\RequestStackCacheContextBase
- class \Drupal\Core\Cache\Context\PathCacheContext implements \Drupal\Core\Cache\Context\CacheContextInterface extends \Drupal\Core\Cache\Context\RequestStackCacheContextBase
Expanded class hierarchy of PathCacheContext
See also
\Symfony\Component\HttpFoundation\Request::getBasePath()
\Symfony\Component\HttpFoundation\Request::getPathInfo()
1 string reference to 'PathCacheContext'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses PathCacheContext
File
-
core/
lib/ Drupal/ Core/ Cache/ Context/ PathCacheContext.php, line 17
Namespace
Drupal\Core\Cache\ContextView source
class PathCacheContext extends RequestStackCacheContextBase implements CacheContextInterface {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return t('Path');
}
/**
* {@inheritdoc}
*/
public function getContext() {
$request = $this->requestStack
->getCurrentRequest();
return $request->getBasePath() . $request->getPathInfo();
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata() {
return new CacheableMetadata();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.