Exemplo n.º 1
0
 function __construct()
 {
     $this->name = "Google";
     $this->usernamePrefix = "g_";
     parent::__construct();
 }
Exemplo n.º 2
0
 function __construct()
 {
     $this->name = "Github";
     $this->usernamePrefix = "github_";
     parent::__construct();
 }
Exemplo n.º 3
0
 function __construct()
 {
     $this->name = "WindowsLive";
     $this->usernamePrefix = "wl_";
     parent::__construct();
 }
Exemplo n.º 4
0
 function __construct()
 {
     $this->name = "Meetup";
     $this->usernamePrefix = "meetup_";
     parent::__construct();
 }
Exemplo n.º 5
0
 function __construct()
 {
     $this->name = "Twitter";
     $this->usernamePrefix = "t_";
     parent::__construct();
 }
Exemplo n.º 6
0
 function __construct()
 {
     $this->name = "LinkedIn";
     $this->usernamePrefix = "li_";
     parent::__construct();
 }
Exemplo n.º 7
0
 function __construct()
 {
     $this->name = "VK";
     $this->usernamePrefix = "vk_";
     parent::__construct();
 }
Exemplo n.º 8
0
 function __construct()
 {
     $this->name = "Yahoo";
     $this->usernamePrefix = "yh_";
     parent::__construct();
 }
Exemplo n.º 9
0
 function __construct()
 {
     $this->name = "Amazon";
     $this->usernamePrefix = "am_";
     parent::__construct();
 }
Exemplo n.º 10
0
 public function onBeforeLogin()
 {
     $this->client->setExtendedAccessToken();
     $this->client->getUser();
     // Ensure the cookie is deleted from the correct path
     setcookie('fbsr_' . $this->appId, '', time() - 1, '/');
     parent::onBeforeLogin();
 }
Exemplo n.º 11
0
 function __construct()
 {
     $this->name = "Instagram";
     $this->usernamePrefix = "instagram_";
     parent::__construct();
 }