public function ExifInterface::getMetadataFields in Exif 8.2
Same name and namespace in other branches
- 8 src/ExifInterface.php \Drupal\exif\ExifInterface::getMetadataFields()
- 7 ExifInterface.php \Drupal\exif\ExifInterface::getMetadataFields()
Return drupal fields related to this extension.
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.
Naming convention are: field_exif_xxx (xxx would be the name of the exif tag to read.
Parameters
array $arCckFields: CCK fields.
Return value
array List of exif tags to read for this image
2 methods override ExifInterface::getMetadataFields()
- ExifPHPExtension::getMetadataFields in src/
ExifPHPExtension.php - Return drupal fields related to this extension.
- SimpleExifToolFacade::getMetadataFields in src/
SimpleExifToolFacade.php - Return drupal fields related to this extension.
File
- src/
ExifInterface.php, line 28
Class
- ExifInterface
- Interface ExifInterface define contract for implementations.
Namespace
Drupal\exifCode
public function getMetadataFields(array $arCckFields = []);