public function FormatConfigurationFormPdf::__construct in Printer and PDF versions for Drupal 8+ 8
Same name and namespace in other branches
- 2.x src/Form/FormatConfigurationFormPdf.php \Drupal\printable\Form\FormatConfigurationFormPdf::__construct()
Constructs a new form object.
Parameters
\Drupal\printable\PrintableEntityManagerInterface $printable_entity_manager: The printable entity manager.
\Drupal\Core\Config\ConfigFactory $configFactory: Defines the configuration object factory.
File
- src/
Form/ FormatConfigurationFormPdf.php, line 39
Class
- FormatConfigurationFormPdf
- Provides shared configuration form for all printable formats.
Namespace
Drupal\printable\FormCode
public function __construct(PrintableEntityManagerInterface $printable_entity_manager, ConfigFactory $configFactory) {
$this->printableEntityManager = $printable_entity_manager;
$this->configFactory = $configFactory;
}