public function CompiledRoute::getPatternOutline in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Routing/CompiledRoute.php \Drupal\Core\Routing\CompiledRoute::getPatternOutline()
Returns the pattern outline of this route.
The pattern outline of a route is the path pattern of the route, but normalized such that all placeholders are replaced with %.
Return value
string The normalized path pattern.
File
- core/
lib/ Drupal/ Core/ Routing/ CompiledRoute.php, line 111 - Contains \Drupal\Core\Routing\CompiledRoute.
Class
- CompiledRoute
- A compiled route contains derived information from a route object.
Namespace
Drupal\Core\RoutingCode
public function getPatternOutline() {
return $this->patternOutline;
}