You are here

public function PrintEventBase::__construct in Entity Print 8.2

The Print Engine event base class.

Parameters

\Drupal\entity_print\Plugin\PrintEngineInterface $print_engine: The Print Engine.

1 call to PrintEventBase::__construct()
PreSendPrintEvent::__construct in src/Event/PreSendPrintEvent.php
PreSendPrintEvent constructor.
1 method overrides PrintEventBase::__construct()
PreSendPrintEvent::__construct in src/Event/PreSendPrintEvent.php
PreSendPrintEvent constructor.

File

src/Event/PrintEventBase.php, line 26

Class

PrintEventBase
Event base class.

Namespace

Drupal\entity_print\Event

Code

public function __construct(PrintEngineInterface $print_engine) {
  $this->printEngine = $print_engine;
}