interface PreloadableRouteProviderInterface
Extends the router provider interface to pre-load routes.
Hierarchy
- interface \Drupal\Core\Routing\RouteProviderInterface extends \Symfony\Cmf\Component\Routing\RouteProviderInterface- interface \Drupal\Core\Routing\PreloadableRouteProviderInterface extends \Drupal\Core\Routing\RouteProviderInterface
 
Expanded class hierarchy of PreloadableRouteProviderInterface
All classes that implement PreloadableRouteProviderInterface
1 file declares its use of PreloadableRouteProviderInterface
- 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 | 
| RouteProviderInterface::getAllRoutes | public | function | Returns all the routes on the system. | 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.
