You are here

NotAvailablePdfEngine.php in Entity Print 8

File

tests/modules/entity_print_test/src/Plugin/EntityPrint/PdfEngine/NotAvailablePdfEngine.php
View source
<?php

namespace Drupal\entity_print_test\Plugin\EntityPrint\PdfEngine;

use Drupal\entity_print\Plugin\PdfEngineBase;
class NotAvailablePdfEngine extends PdfEngineBase {

  /**
   * {@inheritdoc}
   */
  public function send($filename = NULL) {
  }

  /**
   * {@inheritdoc}
   */
  public function getError() {
  }

  /**
   * {@inheritdoc}
   */
  public function addPage($content) {
  }

  /**
   * {@inheritdoc}
   */
  public static function dependenciesAvailable() {
    return FALSE;
  }

}

Classes