TwigExtension::getPath

public TwigExtension::getPath($name, $parameters = array(), $options = array())

Generates a URL path given a route name and parameters.

Parameters

$name: The name of the route.

array $parameters: An associative array of route parameters names and values.

array $options: (optional) An associative array of additional options. The 'absolute' option is forced to be FALSE.

Return value

string The generated URL path (relative URL) for the given route.

See also

\Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute()

File

core/lib/Drupal/Core/Template/TwigExtension.php, line 219

Class

TwigExtension
A class providing Drupal Twig extensions.

Namespace

Drupal\Core\Template

Code

public function getPath($name, $parameters = array(), $options = array()) {
  $options['absolute'] = FALSE;
  return $this->urlGenerator->generateFromRoute($name, $parameters, $options);
}
doc_Drupal
2016-10-29 09:49:41
Comments
Leave a Comment

Please login to continue.