You are here

public function LinkGenerator::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Utility/LinkGenerator.php \Drupal\Core\Utility\LinkGenerator::__construct()

Constructs a LinkGenerator instance.

Parameters

\Drupal\Core\Routing\UrlGeneratorInterface $url_generator: The url generator.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\Core\Render\RendererInterface $renderer: The renderer service.

File

core/lib/Drupal/Core/Utility/LinkGenerator.php, line 58
Contains \Drupal\Core\Utility\LinkGenerator.

Class

LinkGenerator
Provides a class which generates a link with route names and parameters.

Namespace

Drupal\Core\Utility

Code

public function __construct(UrlGeneratorInterface $url_generator, ModuleHandlerInterface $module_handler, RendererInterface $renderer) {
  $this->urlGenerator = $url_generator;
  $this->moduleHandler = $module_handler;
  $this->renderer = $renderer;
}