public function MetadataBubblingUrlGenerator::generate

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

File

core/lib/Drupal/Core/Render/MetadataBubblingUrlGenerator.php, line 94

Class

MetadataBubblingUrlGenerator
Decorator for the URL generator, which bubbles bubbleable URL metadata.

Namespace

Drupal\Core\Render

Code

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

© 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!Render!MetadataBubblingUrlGenerator.php/function/MetadataBubblingUrlGenerator::generate/8.1.x