You are here

ExportableContentEntityInterface.php in FillPDF 8.4

Same filename and directory in other branches
  1. 5.0.x src/ExportableContentEntityInterface.php

Namespace

Drupal\fillpdf

File

src/ExportableContentEntityInterface.php
View source
<?php

namespace Drupal\fillpdf;

use Drupal\Core\Entity\ContentEntityInterface;

/**
 * Interface ExportableContentEntityInterface.
 *
 * @package Drupal\fillpdf
 */
interface ExportableContentEntityInterface extends ContentEntityInterface {

  /**
   * Gets the content entity properties to export if declared on the annotation.
   *
   * @return array|null
   *   The properties to export or NULL if they can not be determined.
   */
  public function getPropertiesToExport();

}

Interfaces

Namesort descending Description
ExportableContentEntityInterface Interface ExportableContentEntityInterface.