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 587

Code

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