You are here

BibciteFormatManagerInterface.php in Bibliography & Citation 8

Same filename and directory in other branches
  1. 2.0.x src/Plugin/BibciteFormatManagerInterface.php

File

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

namespace Drupal\bibcite\Plugin;

use Drupal\Component\Plugin\PluginManagerInterface;

/**
 * Defines an interface for bibcite_format managers.
 */
interface BibciteFormatManagerInterface extends PluginManagerInterface {

  /**
   * Get definitions of export formats.
   *
   * @return array|null
   *   List of plugin definitions.
   */
  public function getExportDefinitions();

  /**
   * Get definitions of import formats.
   *
   * @return array|null
   *   List of plugin definitions.
   */
  public function getImportDefinitions();

}

Interfaces

Namesort descending Description
BibciteFormatManagerInterface Defines an interface for bibcite_format managers.