public function UrlGenerator::generate

public UrlGenerator::generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH)

File

core/lib/Drupal/Core/Routing/UrlGenerator.php, line 267

Class

UrlGenerator
Generates URLs from route names and parameters.

Namespace

Drupal\Core\Routing

Code

public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) {
  $options['absolute'] = is_bool($referenceType) ? $referenceType : $referenceType === self::ABSOLUTE_URL;
  return $this->generateFromRoute($name, $parameters, $options);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Routing!UrlGenerator.php/function/UrlGenerator::generate/8.1.x