You are here

class PrintEngine in Entity Print 8.2

The PrintEngine annotation.

Hierarchy

Expanded class hierarchy of PrintEngine

5 classes are annotated with PrintEngine
DomPdf in src/Plugin/EntityPrint/PrintEngine/DomPdf.php
A Entity Print plugin for the DomPdf library.
NotAvailablePrintEngine in tests/modules/entity_print_test/src/Plugin/EntityPrint/PrintEngine/NotAvailablePrintEngine.php
Unavailable print engine for testing.
PrintExceptionEngine in tests/modules/entity_print_test/src/Plugin/EntityPrint/PrintEngine/PrintExceptionEngine.php
A test print engine that throws an exception.
TestPrintEngine in tests/modules/entity_print_test/src/Plugin/EntityPrint/PrintEngine/TestPrintEngine.php
A test print engine plugin.
TestWordPrintEngine in tests/modules/entity_print_test/src/Plugin/EntityPrint/PrintEngine/TestWordPrintEngine.php
The test word pring engine.

File

src/Annotation/PrintEngine.php, line 12

Namespace

Drupal\entity_print\Annotation
View source
class PrintEngine extends Plugin {

  /**
   * The unique Id of the Print engine implementation.
   *
   * @var string
   */
  public $id;

  /**
   * The human readable name of the Print engine implementation.
   *
   * @var string
   */
  public $label;

  /**
   * The filetype to be exported to.
   *
   * @var string
   *
   * @codingStandardsIgnoreStart
   */
  public $export_type;

}

Members

Namesort descending Modifiers Type Description Overrides
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2
PrintEngine::$export_type public property The filetype to be exported to.
PrintEngine::$id public property The unique Id of the Print engine implementation.
PrintEngine::$label public property The human readable name of the Print engine implementation.