Ejemplo n.º 1
0
 /**
  *
  */
 public static function getInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new refnotes_reference_database();
         /* Loading has to be separated from construction to prevent infinite recursion */
         self::$instance->load();
     }
     return self::$instance;
 }