예제 #1
0
파일: seo.class.php 프로젝트: Geotex/v6
 /**
  * Setup the instance (singleton)
  *
  * @return SEO
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }