コード例 #1
0
ファイル: View.php プロジェクト: alvarpoon/aeg
 /**
  * Get instance of itself
  * 
  * @return AAM_Backend_View
  * 
  * @access public
  */
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }