protected function Url::urlGenerator in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::urlGenerator()
Gets the URL generator.
Return value
\Drupal\Core\Routing\UrlGeneratorInterface The URL generator.
File
- core/
lib/ Drupal/ Core/ Url.php, line 852
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
protected function urlGenerator() {
if (!$this->urlGenerator) {
$this->urlGenerator = \Drupal::urlGenerator();
}
return $this->urlGenerator;
}