Beispiel #1
0
 /**
  * Setup the instance (singleton)
  *
  * @return ACP
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }