PathParentCacheContext.php in Drupal 10
File
core/lib/Drupal/Core/Cache/Context/PathParentCacheContext.php
View source
<?php
namespace Drupal\Core\Cache\Context;
use Drupal\Core\Cache\CacheableMetadata;
class PathParentCacheContext extends RequestStackCacheContextBase implements CacheContextInterface {
public static function getLabel() {
return t('Parent path');
}
public function getContext() {
$request = $this->requestStack
->getCurrentRequest();
$path_elements = explode('/', trim($request
->getPathInfo(), '/'));
array_pop($path_elements);
return implode('/', $path_elements);
}
public function getCacheableMetadata() {
return new CacheableMetadata();
}
}