Same name in other branches
  1. 7.x-1.x ExifFactory.php \Drupal\exif\ExifFactory::getExtractionSolutions()
  2. 8.x-1.x src/ExifFactory.php \Drupal\exif\ExifFactory::getExtractionSolutions()

Return description of exif parser implementations.

Return value

array List names of parser implementations

1 call to ExifFactory::getExtractionSolutions()
ExifSettingsForm::buildForm dans src/Form/ExifSettingsForm.php

Fichier

src/ExifFactory.php, line 20

Classe

ExifFactory
Class ExifFactory allow to get right implementation.

Namespace

Drupal\exif

Code

public static function getExtractionSolutions() {
    return [
        'php_extensions' => 'php extensions',
        'simple_exiftool' => 'exiftool',
    ];
}