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

Return value

array

1 call to ExifPHPExtension::getMetadataSections()
ExifPHPExtension::getMetadataFields in ./ExifPHPExtension.php
Work out which fields have to be processed.

File

./ExifPHPExtension.php, line 31

Class

ExifPHPExtension
This is a helper class to handle the whole data processing of exif.

Namespace

Drupal\exif

Code

public static function getMetadataSections() {
    $sections = array(
        'exif',
        'file',
        'computed',
        'ifd0',
        'gps',
        'winxp',
        'iptc',
        'xmp',
    );
    return $sections;
}