You are here

function exif_display_field_extra_fields in EXIF Custom 7

Implements hook_field_extra_fields().

File

exif_display/exif_display.module, line 11
Primary hook implementations for the EXIF Display module.

Code

function exif_display_field_extra_fields() {
  $extra['file']['image']['form']['exif_display'] = array(
    'label' => t('EXIF Display'),
    'description' => t('A read-only display of all EXIF data available on this image.'),
    'weight' => 2,
  );
  return $extra;
}