Url::urlGenerator

protected Url::urlGenerator()

Gets the URL generator.

Return value

\Drupal\Core\Routing\UrlGeneratorInterface The URL generator.

File

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

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

1
2
3
4
5
6
protected function urlGenerator() {
  if (!$this->urlGenerator) {
    $this->urlGenerator = \Drupal::urlGenerator();
  }
  return $this->urlGenerator;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.