Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setUrlGenerator()
  2. 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setUrlGenerator()

Sets the URL generator.

Parameters

\Drupal\Core\Routing\UrlGeneratorInterface $url_generator: (optional) The URL generator, specify NULL to reset it.

Return value

$this

File

core/lib/Drupal/Core/Url.php, line 900

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function setUrlGenerator(UrlGeneratorInterface $url_generator = NULL) {
  $this->urlGenerator = $url_generator;
  $this->internalPath = NULL;
  return $this;
}