interface PreloadableRouteProviderInterface
Same name in other branches
- 9 core/lib/Drupal/Core/Routing/PreloadableRouteProviderInterface.php \Drupal\Core\Routing\PreloadableRouteProviderInterface
- 8.9.x core/lib/Drupal/Core/Routing/PreloadableRouteProviderInterface.php \Drupal\Core\Routing\PreloadableRouteProviderInterface
- 11.x core/lib/Drupal/Core/Routing/PreloadableRouteProviderInterface.php \Drupal\Core\Routing\PreloadableRouteProviderInterface
Extends the router provider interface to pre-load routes.
Hierarchy
- interface \Drupal\Core\Routing\PreloadableRouteProviderInterface extends \Drupal\Core\Routing\RouteProviderInterface
Expanded class hierarchy of PreloadableRouteProviderInterface
All classes that implement PreloadableRouteProviderInterface
2 files declare their use of PreloadableRouteProviderInterface
- MenuLinkTree.php in core/
lib/ Drupal/ Core/ Menu/ MenuLinkTree.php - RouteProvider.php in core/
tests/ Drupal/ KernelTests/ RouteProvider.php
File
-
core/
lib/ Drupal/ Core/ Routing/ PreloadableRouteProviderInterface.php, line 8
Namespace
Drupal\Core\RoutingView source
interface PreloadableRouteProviderInterface extends RouteProviderInterface {
/**
* Pre-load routes by their names using the provided list of names.
*
* This method exists in order to allow performance optimizations. It allows
* pre-loading serialized routes that may latter be retrieved using
* ::getRoutesByName()
*
* @param string[] $names
* Array of route names to load.
*/
public function preLoadRoutes($names);
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
PreloadableRouteProviderInterface::preLoadRoutes | public | function | Pre-load routes by their names using the provided list of names. | 3 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.