source: extensions/oAuth/include/test/hybridauth/Hybrid/User_Contact.php @ 20293

Last change on this file since 20293 was 20293, checked in by mistic100, 11 years ago

first commit of oAuth plugin, still in developpement

File size: 1.0 KB
Line 
1<?php
2/*!
3* HybridAuth
4* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
5* (c) 2009-2012, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
6*/
7
8/**
9 * Hybrid_User_Contact
10 *
11 * used to provider the connected user contacts list on a standardized structure across supported social apis.
12 *
13 * http://hybridauth.sourceforge.net/userguide/Profile_Data_User_Contacts.html
14 */
15class Hybrid_User_Contact
16{
17        /* The Unique contact user ID */
18        public $identifier = NULL;
19
20        /* User website, blog, web page */ 
21        public $webSiteURL = NULL;
22
23        /* URL link to profile page on the IDp web site */
24        public $profileURL = NULL;
25
26        /* URL link to user photo or avatar */
27        public $photoURL = NULL;
28
29        /* User dispalyName provided by the IDp or a concatenation of first and last name */
30        public $displayName = NULL;
31
32        /* A short about_me */
33        public $description = NULL;
34
35        /* User email. Not all of IDp garant access to the user email */
36        public $email = NULL;
37}
Note: See TracBrowser for help on using the repository browser.