コード例 #1
0
ファイル: Sections.php プロジェクト: ircoco/BlackCatCMS
 /**
  * constructor
  *
  * @access private
  * @return void
  **/
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }