예제 #1
0
 /**
  * Retrieve the singleton instance
  * 
  * @return WPRSS_Help
  */
 public static function get_instance()
 {
     if (is_null(self::$_instance)) {
         $class_name = __CLASS__;
         // Late static bindings not allowed
         self::$_instance = new $class_name();
     }
     return self::$_instance;
 }