Exemplo n.º 1
0
 /**
  * Get singleton instance
  *
  * @access public
  * @return object Singleton instance
  */
 public static function getInstance()
 {
     // optionally create new instance
     if (!self::$instance) {
         self::$instance = new KocujSitemapPluginHTML5();
     }
     // exit
     return self::$instance;
 }