public function 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

drupal/core/lib/Drupal/Core/Routing/CompiledRoute.php, line 108
Definition of Drupal\Core\Routing\CompiledRoute.

Class

CompiledRoute
Description of CompiledRoute

Namespace

Drupal\Core\Routing

Code

public function getPatternOutline() {
  return $this->patternOutline;
}