You are here

public static function ExifPHPExtension::getMetadataSections in Exif 7

Same name and namespace in other branches
  1. 8.2 src/ExifPHPExtension.php \Drupal\exif\ExifPHPExtension::getMetadataSections()
  2. 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

ExifPHPExtension

Namespace

Drupal\exif

Code

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