You are here

public static function filedepot::getInstance in filedepot 6

Same name and namespace in other branches
  1. 7 filedepot.class.php \filedepot::getInstance()
2 calls to filedepot::getInstance()
filedepot_filedepot in ./filedepot.module
filedepot_uninstall in ./filedepot.install
Implementation of hook_uninstall().

File

./filedepot.class.php, line 159
filedepot.class.php Main class for the Filedepot module

Class

filedepot
@file filedepot.class.php Main class for the Filedepot module

Code

public static function getInstance() {
  if (self::$_instance === NULL) {
    self::$_instance = new self();
  }
  return self::$_instance;
}