Same name in other branches
- 7.x-1.x ExifFactory.php \Drupal\exif\ExifFactory::getExtractionSolutions()
- 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 in src/
Form/ ExifSettingsForm.php
File
-
src/
ExifFactory.php, line 20
Class
- ExifFactory
- Class ExifFactory allow to get right implementation.
Namespace
Drupal\exifCode
public static function getExtractionSolutions() {
return [
'php_extensions' => 'php extensions',
'simple_exiftool' => 'exiftool',
];
}