You are here

public function PdfEngineBase::__construct in Entity Print 8

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides PluginBase::__construct

3 calls to PdfEngineBase::__construct()
DomPdf::__construct in src/Plugin/EntityPrint/PdfEngine/DomPdf.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
PhpWkhtmlToPdf::__construct in src/Plugin/EntityPrint/PdfEngine/PhpWkhtmlToPdf.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
TestPdfEngine::__construct in tests/modules/entity_print_test/src/Plugin/EntityPrint/PdfEngine/TestPdfEngine.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
3 methods override PdfEngineBase::__construct()
DomPdf::__construct in src/Plugin/EntityPrint/PdfEngine/DomPdf.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
PhpWkhtmlToPdf::__construct in src/Plugin/EntityPrint/PdfEngine/PhpWkhtmlToPdf.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
TestPdfEngine::__construct in tests/modules/entity_print_test/src/Plugin/EntityPrint/PdfEngine/TestPdfEngine.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/Plugin/PdfEngineBase.php, line 23

Class

PdfEngineBase
The PdfEngineBase class.

Namespace

Drupal\entity_print\Plugin

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this
    ->setConfiguration($configuration);
}