PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wordpress-social-login
/
hybridauth
/
Hybrid
<?php /** * HybridAuth * http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth * (c) 2009-2014, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html */ /** * Hybrid_User_Activity * * used to provider the connected user activity stream on a standardized structure across supported social apis. * * http://hybridauth.sourceforge.net/userguide/Profile_Data_User_Activity.html */ class Hybrid_User_Activity { /** * activity id on the provider side, usually given as integer * @var Numeric/String */ public $id = NULL; /** * activity date of creation * @var timestamp */ public $date = NULL; /** * activity content as a string * @var String */ public $text = NULL; /** * user who created the activity * @var object */ public $user = NULL; /** * Constructor */ public function __construct() { $this->user = new stdClass(); // typically, we should have a few information about the user who created the event from social apis $this->user->identifier = NULL; $this->user->displayName = NULL; $this->user->profileURL = NULL; $this->user->photoURL = NULL; } }
[+]
..
[+]
resources
[-] User_Activity.php
[edit]
[+]
thirdparty
[-] Storage.php
[edit]
[-] Endpoint.php
[edit]
[-] index.html
[edit]
[-] Provider_Model_OAuth1.php
[edit]
[-] Provider_Model_OAuth2.php
[edit]
[-] User.php
[edit]
[-] Error.php
[edit]
[-] User_Contact.php
[edit]
[-] User_Profile.php
[edit]
[-] Auth.php
[edit]
[+]
Providers
[-] Exception.php
[edit]
[-] Provider_Model_OpenID.php
[edit]
[-] Provider_Model.php
[edit]
[-] Provider_Adapter.php
[edit]