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

Return description of exif parser implementations.

Return value

array list names of parser implementations

1 call to ExifFactory::getExtractionSolutions()
ExifSettingsForm::buildForm in src/Controller/ExifSettingsForm.php

File

src/ExifFactory.php, line 20

Class

ExifFactory
Class ExifFactory allow to get right implementation.

Namespace

Drupal\exif

Code

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