protected RouteProvider::getRoutesByPath($path)
Get all routes which match a certain pattern.
Parameters
string $path: The route pattern to search for (contains % as placeholders).
Return value
\Symfony\Component\Routing\RouteCollection Returns a route collection of matching routes.
File
- core/lib/Drupal/Core/Routing/RouteProvider.php, line 325
Class
- RouteProvider
- A Route Provider front-end for all Drupal-stored routes.
Namespace
Drupal\Core\Routing
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | protected function getRoutesByPath( $path ) { // Split the path up on the slashes, ignoring multiple slashes in a row // or leading or trailing slashes. $parts = preg_split( '@/+@' , $path , NULL, PREG_SPLIT_NO_EMPTY); $collection = new RouteCollection(); $ancestors = $this ->getCandidateOutlines( $parts ); if ( empty ( $ancestors )) { return $collection ; } // The >= check on number_parts allows us to match routes with optional // trailing wildcard parts as long as the pattern matches, since we // dump the route pattern without those optional parts. try { $routes = $this ->connection->query( "SELECT name, route, fit FROM {" . $this ->connection->escapeTable( $this ->tableName) . "} WHERE pattern_outline IN ( :patterns[] ) AND number_parts >= :count_parts" , array ( ':patterns[]' => $ancestors , ':count_parts' => count ( $parts ), )) ->fetchAll(\PDO::FETCH_ASSOC); } catch (\Exception $e ) { $routes = []; } // We sort by fit and name in PHP to avoid a SQL filesort. usort( $routes , array ( $this , 'routeProviderRouteCompare' )); foreach ( $routes as $row ) { $collection ->add( $row [ 'name' ], unserialize( $row [ 'route' ])); } return $collection ; } |
Please login to continue.