You are here

function _exif_get_class in Exif 7

Same name and namespace in other branches
  1. 6 exif.module \_exif_get_class()

Helper function to get the exif class

Return value

Exif

4 calls to _exif_get_class()
exif_admin_settings in ./exif.admin.inc
Just some help page. Gives you an overview over the available tags
_exif_field_widget_retrieve_exif_fields in ./exif.module
retrieve all field keys possible
_exif_get_image_fields_metadata in ./exif.module
_exif_node_insert_update in ./exif.module
Main entrypoint of the module.

File

./exif.module, line 486

Code

function _exif_get_class() {
  include_once drupal_get_path('module', 'exif') . '/ExifFactory.php';
  $exif = \Drupal\exif\ExifFactory::getExifInterface();
  return $exif;
}