interface CacheableRouteProviderInterface
Same name in other branches
- 9 core/lib/Drupal/Core/Routing/CacheableRouteProviderInterface.php \Drupal\Core\Routing\CacheableRouteProviderInterface
- 8.9.x core/lib/Drupal/Core/Routing/CacheableRouteProviderInterface.php \Drupal\Core\Routing\CacheableRouteProviderInterface
- 10 core/lib/Drupal/Core/Routing/CacheableRouteProviderInterface.php \Drupal\Core\Routing\CacheableRouteProviderInterface
Extends the router provider interface to provide caching support.
Hierarchy
- interface \Drupal\Core\Routing\RouteProviderInterface
- interface \Drupal\Core\Routing\CacheableRouteProviderInterface extends \Drupal\Core\Routing\RouteProviderInterface
Expanded class hierarchy of CacheableRouteProviderInterface
All classes that implement CacheableRouteProviderInterface
2 files declare their use of CacheableRouteProviderInterface
- WorkspaceRequestSubscriber.php in core/
modules/ workspaces/ src/ EventSubscriber/ WorkspaceRequestSubscriber.php - WorkspaceRequestSubscriberTest.php in core/
modules/ workspaces/ tests/ src/ Unit/ WorkspaceRequestSubscriberTest.php
File
-
core/
lib/ Drupal/ Core/ Routing/ CacheableRouteProviderInterface.php, line 8
Namespace
Drupal\Core\RoutingView source
interface CacheableRouteProviderInterface extends RouteProviderInterface {
/**
* Adds a cache key part to be used in the cache ID of the route collection.
*
* @param string $cache_key_provider
* The provider of the cache key part.
* @param string $cache_key_part
* A string to be used as a cache key part.
*/
public function addExtraCacheKeyPart($cache_key_provider, $cache_key_part);
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
CacheableRouteProviderInterface::addExtraCacheKeyPart | public | function | Adds a cache key part to be used in the cache ID of the route collection. | 1 |
RouteProviderInterface::getAllRoutes | public | function | Returns all the routes on the system. | 4 |
RouteProviderInterface::getRouteByName | public | function | Find the route using the provided route name. | 4 |
RouteProviderInterface::getRouteCollectionForRequest | public | function | Finds routes that may potentially match the request. | 4 |
RouteProviderInterface::getRoutesByNames | public | function | Find many routes by their names using the provided list of names. | 4 |
RouteProviderInterface::getRoutesByPattern | public | function | Get all routes which match a certain pattern. | 4 |
RouteProviderInterface::reset | public | function | Resets the route provider object. | 4 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.