RouteNameCacheContext.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Core\Cache\ContextFile
core/lib/Drupal/Core/Cache/Context/RouteNameCacheContext.phpView source
<?php
namespace Drupal\Core\Cache\Context;
/**
* Defines the RouteCacheContext service, for "per route name" caching.
*
* Cache context ID: 'route.name'.
*/
class RouteNameCacheContext extends RouteCacheContext {
/**
* {@inheritdoc}
*/
public static function getLabel() {
return t('Route name');
}
/**
* {@inheritdoc}
*/
public function getContext() {
return $this->routeMatch
->getRouteName();
}
}
Classes
Name | Description |
---|---|
RouteNameCacheContext | Defines the RouteCacheContext service, for "per route name" caching. |