You are here

public function FileUrlGenerator::__construct in Drupal 9

Constructs a new file URL generator object.

Parameters

\Drupal\Core\StreamWrapper\StreamWrapperManagerInterface $stream_wrapper_manager: The stream wrapper manager.

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.

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

File

core/lib/Drupal/Core/File/FileUrlGenerator.php, line 49

Class

FileUrlGenerator
Default implementation for the file URL generator service.

Namespace

Drupal\Core\File

Code

public function __construct(StreamWrapperManagerInterface $stream_wrapper_manager, RequestStack $request_stack, ModuleHandlerInterface $module_handler) {
  $this->streamWrapperManager = $stream_wrapper_manager;
  $this->requestStack = $request_stack;
  $this->moduleHandler = $module_handler;
}