You are here

public function RouteProviderInterface::getRoutesByPattern in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Routing/RouteProviderInterface.php \Drupal\Core\Routing\RouteProviderInterface::getRoutesByPattern()

Get all routes which match a certain pattern.

Parameters

string $pattern: The route pattern to search for (contains {} as placeholders).

Return value

\Symfony\Component\Routing\RouteCollection Returns a route collection of matching routes.

2 methods override RouteProviderInterface::getRoutesByPattern()
MockRouteProvider::getRoutesByPattern in core/modules/system/src/Tests/Routing/MockRouteProvider.php
Get all routes which match a certain pattern.
RouteProvider::getRoutesByPattern in core/lib/Drupal/Core/Routing/RouteProvider.php
Get all routes which match a certain pattern.

File

core/lib/Drupal/Core/Routing/RouteProviderInterface.php, line 28
Contains \Drupal\Core\Routing\RouteProviderInterface.

Class

RouteProviderInterface
Extends the router provider interface

Namespace

Drupal\Core\Routing

Code

public function getRoutesByPattern($pattern);