You are here

ExportTypeManagerInterface.php in Entity Print 8.2

File

src/Plugin/ExportTypeManagerInterface.php
View source
<?php

namespace Drupal\entity_print\Plugin;

use Drupal\Component\Plugin\PluginManagerInterface;

/**
 * Export type manager interface.
 */
interface ExportTypeManagerInterface extends PluginManagerInterface {

  /**
   * Gets an array of options suitable for Form API.
   *
   * @return array
   *   An array with plugin ids as the keys and the label as values.
   */
  public function getFormOptions();

}

Interfaces

Namesort descending Description
ExportTypeManagerInterface Export type manager interface.