You are here

public static function ExifFactory::getExtractionSolutions in Exif 8.2

Same name and namespace in other branches
  1. 8 src/ExifFactory.php \Drupal\exif\ExifFactory::getExtractionSolutions()
  2. 7 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 in src/Controller/ExifSettingsForm.php
Form constructor.

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",
  ];
}