Exemplo n.º 1
0
 /**
  * Initializes or get the initialized Loader. (Singleton)
  *
  * @static
  * @return null|WeLearn_Base_Loader
  */
 public static function &getInstance()
 {
     if (is_null(self::$_instance)) {
         $className = __CLASS__;
         self::$_instance = new $className();
     }
     return self::$_instance;
 }