You are here

public function Exif::getInstance in Exif 6

1 call to Exif::getInstance()
_exif_get_class in ./exif.module
Helper function to get the exif class

File

./exif.class.php, line 19

Class

Exif
@author Raphael Schär This is a helper class to handle the whole data processing of exif

Code

public function getInstance() {
  if (is_null(self::$instance)) {
    self::$instance = new self();
  }
  return self::$instance;
}