You are here

public function ElfController::__construct in External Links Filter 8

Constructs a new ELF controller.

Parameters

\Symfony\Component\HttpFoundation\Request $request: The current request.

\Drupal\elf\ElfManagerInterface $elf_manager: The ELF manager.

File

src/Controller/ElfController.php, line 39

Class

ElfController
Provides route controllers for External Link Filter.

Namespace

Drupal\elf\Controller

Code

public function __construct(Request $request, ElfManagerInterface $elf_manager) {
  $this->request = $request;
  $this->elfManager = $elf_manager;
}