コード例 #1
0
ファイル: Admin.php プロジェクト: varvanin/currycms
 /**
  * Get the singleton instance.
  *
  * @return Curry_Admin
  */
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new Curry_Admin();
     }
     return self::$instance;
 }