PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
hoauth
/
hybridauth
/
Hybrid
<?php /*! * HybridAuth * http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth * (c) 2009-2012, 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 */ public $id = NULL; /* activity date of creation */ public $date = NULL; /* activity content as a string */ public $text = NULL; /* user who created the activity */ public $user = NULL; 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; } }
[+]
..
[-] Provider_Adapter.php
[edit]
[-] User_Activity.php
[edit]
[-] Provider_Model_OpenID.php
[edit]
[+]
Providers
[-] Logger.php
[edit]
[-] Error.php
[edit]
[-] Provider_Model_OAuth2.php
[edit]
[-] Provider_Model_OAuth1.php
[edit]
[-] Endpoint.php
[edit]
[-] Storage.php
[edit]
[-] User_Profile.php
[edit]
[-] Auth.php
[edit]
[-] Provider_Model.php
[edit]
[-] index.html
[edit]
[-] User_Contact.php
[edit]
[+]
resources
[+]
thirdparty
[-] User.php
[edit]