You are here

public function BibciteFormatManager::getImportDefinitions in Bibliography & Citation 8

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

Get definitions of import formats.

Return value

array|null List of plugin definitions.

Overrides BibciteFormatManagerInterface::getImportDefinitions

File

src/Plugin/BibciteFormatManager.php, line 93

Class

BibciteFormatManager
Provides the default bibcite_format manager.

Namespace

Drupal\bibcite\Plugin

Code

public function getImportDefinitions() {
  return $this
    ->filterDefinitionsBySubclass(DecoderInterface::class);
}