function socialxeServerProviderYozm(&$sessionManager, $consumer_key, $consumer_secret)
 {
     parent::socialxeServerProvider('yozm', $sessionManager);
     $this->consumer_key = $consumer_key;
     $this->consumer_secret = $consumer_secret;
     $this->oauth_callback = $this->getNotEncodedFullUrl('', 'module', 'socialxeserver', 'act', 'procSocialxeserverCallback', 'provider', 'yozm');
 }
 function socialxeServerProviderFacebook(&$sessionManager, $app_id, $app_secret)
 {
     parent::socialxeServerProvider('facebook', $sessionManager);
     $this->app_id = $app_id;
     $this->app_secret = $app_secret;
     $this->callback = $this->getNotEncodedFullUrl('', 'module', 'socialxeserver', 'act', 'procSocialxeserverCallback', 'provider', 'facebook');
 }
 function socialxeServerProviderGoogle(&$sessionManager, $google_client_id = 1, $google_client_secret = 1, $google_developer_key = 1)
 {
     parent::socialxeServerProvider('google', $sessionManager);
     $this->google_client_id = $google_client_id;
     $this->google_client_secret = $google_client_secret;
     $this->google_redirect_url = $this->getNotEncodedFullUrl('', 'module', 'socialxeserver', 'act', 'procSocialxeserverCallback', 'provider', 'google');
     $this->google_developer_key = $google_developer_key;
 }
 function socialxeServerProviderMe2day(&$sessionManager, $application_key)
 {
     parent::socialxeServerProvider('me2day', $sessionManager);
     $this->application_key = $application_key;
 }