function RouteCompiler::getPatternOutline
Returns the pattern outline.
The pattern outline is the path pattern but normalized so that all placeholders are the string '%'.
Parameters
string $path: The path for which we want the normalized outline.
Return value
string The path pattern outline.
3 calls to RouteCompiler::getPatternOutline()
- PathPluginBase::overrideAppliesPathAndMethod in core/
modules/ views/ src/ Plugin/ views/ display/ PathPluginBase.php  - Determines whether an override for the path and method should happen.
 - RouteCompiler::compile in core/
lib/ Drupal/ Core/ Routing/ RouteCompiler.php  - Compiles the current route instance.
 - RouteProvider::getRoutesByPattern in core/
lib/ Drupal/ Core/ Routing/ RouteProvider.php  - Get all routes which match a certain pattern.
 
File
- 
              core/
lib/ Drupal/ Core/ Routing/ RouteCompiler.php, line 76  
Class
- RouteCompiler
 - Compiler to generate derived information from a Route necessary for matching.
 
Namespace
Drupal\Core\RoutingCode
public static function getPatternOutline($path) {
  return preg_replace('#\\{\\w+\\}#', '%', $path);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.