function Url::setUrlGenerator
Same name in other branches
- 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setUrlGenerator()
- 10 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setUrlGenerator()
- 11.x 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 880
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function setUrlGenerator(UrlGeneratorInterface $url_generator = NULL) {
$this->urlGenerator = $url_generator;
$this->internalPath = NULL;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.