You are here

public function LinksConfigurationForm::__construct in Printer and PDF versions for Drupal 8+ 8

Same name and namespace in other branches
  1. 2.x src/Form/LinksConfigurationForm.php \Drupal\printable\Form\LinksConfigurationForm::__construct()

Constructs a new form object.

Parameters

\Drupal\printable\PrintableEntityManagerInterface $printable_entity_manager: The printable entity manager.

\Drupal\printable\PrintableFormatPluginManager $printable_format_manager: The printable format plugin manager.

\Drupal\Core\Config\ConfigFactory $configFactory: Defines the configuration object factory.

File

src/Form/LinksConfigurationForm.php, line 41

Class

LinksConfigurationForm
Provides shared configuration form for all printable formats.

Namespace

Drupal\printable\Form

Code

public function __construct(PrintableEntityManagerInterface $printable_entity_manager, PrintableFormatPluginManager $printable_format_manager, ConfigFactory $configFactory) {
  $this->printableEntityManager = $printable_entity_manager;
  $this->printableFormatManager = $printable_format_manager;
  $this->configFactory = $configFactory;
}