You are here

public function FillPdfAccessHelper::__construct in FillPDF 8.4

Same name and namespace in other branches
  1. 5.0.x src/FillPdfAccessHelper.php \Drupal\fillpdf\FillPdfAccessHelper::__construct()

Constructs a FillPdfAccessManager object.

Parameters

\Drupal\fillpdf\FillPdfLinkManipulatorInterface $link_manipulator: The FillPDF link manipulator.

\Drupal\fillpdf\FillPdfContextManagerInterface $context_manager: The FillPDF context manager.

File

src/FillPdfAccessHelper.php, line 38

Class

FillPdfAccessHelper
Class FillPdfAccessHelper.

Namespace

Drupal\fillpdf

Code

public function __construct(FillPdfLinkManipulatorInterface $link_manipulator, FillPdfContextManagerInterface $context_manager) {
  $this->linkManipulator = $link_manipulator;
  $this->contextManager = $context_manager;
}