public function MetadataBubblingUrlGenerator::getPathFromRoute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Render/MetadataBubblingUrlGenerator.php \Drupal\Core\Render\MetadataBubblingUrlGenerator::getPathFromRoute()
Gets the internal path (system path) for a route.
Parameters
string|\Symfony\Component\Routing\Route $name: The route name or a route object.
array $parameters: An array of parameters as passed to \Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate().
Return value
string The internal Drupal path corresponding to the route.
Overrides UrlGeneratorInterface::getPathFromRoute
File
- core/
lib/ Drupal/ Core/ Render/ MetadataBubblingUrlGenerator.php, line 72 - Contains \Drupal\Core\Render\MetadataBubblingUrlGenerator.
Class
- MetadataBubblingUrlGenerator
- Decorator for the URL generator, which bubbles bubbleable URL metadata.
Namespace
Drupal\Core\RenderCode
public function getPathFromRoute($name, $parameters = array()) {
return $this->urlGenerator
->getPathFromRoute($name, $parameters);
}