コード例 #1
0
ファイル: Roles.php プロジェクト: BGCX262/zupal-svn-to-git
 /**
  *
  * @return Model_Users
  */
 public static function getInstance()
 {
     if (is_null(self::$_Instance)) {
         // process
         self::$_Instance = new self();
     }
     return self::$_Instance;
 }