You are here

public function BibciteFormatManager::getExportDefinitions in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x src/Plugin/BibciteFormatManager.php \Drupal\bibcite\Plugin\BibciteFormatManager::getExportDefinitions()

Get definitions of export formats.

Return value

array|null List of plugin definitions.

Overrides BibciteFormatManagerInterface::getExportDefinitions

File

src/Plugin/BibciteFormatManager.php, line 86

Class

BibciteFormatManager
Provides the default bibcite_format manager.

Namespace

Drupal\bibcite\Plugin

Code

public function getExportDefinitions() {
  return $this
    ->filterDefinitionsBySubclass(EncoderInterface::class);
}