/**
  * Singleton pattern
  *
  * @return pspGoogleAuthorship Singleton instance
  */
 public static function getInstance($the_plugin = array())
 {
     if (!self::$_instance) {
         self::$_instance = new self($the_plugin);
     }
     return self::$_instance;
 }