示例#1
0
 /**
  * Initialize the singleton
  */
 public static function instance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new Custom_Field_Suite();
     }
     return self::$instance;
 }
示例#2
0
文件: cfs.php 项目: OutThisLife/HTW
 /**
  * Singleton
  */
 public static function instance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }