コード例 #1
0
ファイル: class-admin.php プロジェクト: cs-team/kanban
 /**
  * get the instance of this class
  * @return	object	the instance
  */
 public static function get_instance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }