예제 #1
0
파일: page.class.php 프로젝트: vityapro/cms
 public static function getInstance()
 {
     if (self::$instance === null) {
         self::$instance = new self();
     }
     return self::$instance;
 }