You are here

PdfEngine.php in Entity Print 8

File

src/Annotation/PdfEngine.php
View source
<?php

namespace Drupal\entity_print\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * The PdfEngine annotation.
 *
 * @Annotation
 */
class PdfEngine extends Plugin {

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

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

}

Classes

Namesort descending Description
PdfEngine The PdfEngine annotation.