You are here

public function FillPdfOverviewForm::__construct in FillPDF 5.0.x

Same name and namespace in other branches
  1. 8.4 src/Form/FillPdfOverviewForm.php \Drupal\fillpdf\Form\FillPdfOverviewForm::__construct()

Constructs a FillPdfSettingsForm object.

Parameters

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

\Drupal\fillpdf\Plugin\PdfBackendManager $backend_manager: The FillPDF backend manager.

\Drupal\Core\File\FileSystemInterface $file_system: The file system.

\Drupal\fillpdf\InputHelperInterface $input_helper: The FillPDF input helper.

File

src/Form/FillPdfOverviewForm.php, line 63

Class

FillPdfOverviewForm
FillPDF overview form.

Namespace

Drupal\fillpdf\Form

Code

public function __construct(ModuleHandlerInterface $module_handler, PdfBackendManager $backend_manager, FileSystemInterface $file_system, InputHelperInterface $input_helper) {
  $this->moduleHandler = $module_handler;
  $this->backendManager = $backend_manager;
  $this->fileSystem = $file_system;
  $this->inputHelper = $input_helper;
}