You are here

function _exif_get_class in Exif 6

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

Helper function to get the exif class

Return value

Exif

5 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_helper_form_alter in exif_helper/exif_helper.module
implementation of hook_form_alter
exif_nodeapi in ./exif.module
implementation of hook_nodeapi
fast_gallery_token_list in ./exif.module
Implementation of hook_hoken_list
fast_gallery_token_values in ./exif.module
implementation of hook_token_values

File

./exif.module, line 297
implementing the drupal api

Code

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