コード例 #1
0
ファイル: dynamic-content.php プロジェクト: andru/cms-press
 /**
  * Returns the singleton instance of the Dynamic_Content_Builder
  *
  * @return Dynamic_Content_Builder
  */
 public static function GetInstance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new Dynamic_Content_Builder();
     }
     return self::$instance;
 }