public static function ExifPHPExtension::getMetadataSections in Exif 7
Same name and namespace in other branches
- 8.2 src/ExifPHPExtension.php \Drupal\exif\ExifPHPExtension::getMetadataSections()
- 8 src/ExifPHPExtension.php \Drupal\exif\ExifPHPExtension::getMetadataSections()
1 call to ExifPHPExtension::getMetadataSections()
- ExifPHPExtension::getMetadataFields in ./
ExifPHPExtension.php - Going through all the fields that have been created for a given node type and try to figure out which match the naming convention -> so that we know which exif information we have to read
File
- ./
ExifPHPExtension.php, line 31
Class
Namespace
Drupal\exifCode
public static function getMetadataSections() {
$sections = array(
'exif',
'file',
'computed',
'ifd0',
'gps',
'winxp',
'iptc',
'xmp',
);
return $sections;
}