public static function ExifFactory::getExtractionSolutions in Exif 8
Same name and namespace in other branches
- 8.2 src/ExifFactory.php \Drupal\exif\ExifFactory::getExtractionSolutions()
- 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\exifCode
public static function getExtractionSolutions() {
return [
"simple_exiftool" => "exiftool",
"php_extensions" => "php extensions",
];
}