diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-06 19:16:38 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-06 19:16:38 -0800 |
commit | 4ccd9ae6da2f4fbed45af80a11b53c8b4efd9ceb (patch) | |
tree | aec9c03787e0117554f71b4fe86ab26dda71f026 /Zotlabs/Identity | |
parent | 3f920da4137ecb91b3aeb2683f2e2b59b4d088cc (diff) | |
download | volse-hubzilla-4ccd9ae6da2f4fbed45af80a11b53c8b4efd9ceb.tar.gz volse-hubzilla-4ccd9ae6da2f4fbed45af80a11b53c8b4efd9ceb.tar.bz2 volse-hubzilla-4ccd9ae6da2f4fbed45af80a11b53c8b4efd9ceb.zip |
start of v4
Diffstat (limited to 'Zotlabs/Identity')
-rw-r--r-- | Zotlabs/Identity/BasicId.php | 18 | ||||
-rw-r--r-- | Zotlabs/Identity/ProfilePhoto.php | 16 |
2 files changed, 34 insertions, 0 deletions
diff --git a/Zotlabs/Identity/BasicId.php b/Zotlabs/Identity/BasicId.php new file mode 100644 index 000000000..3c149808f --- /dev/null +++ b/Zotlabs/Identity/BasicId.php @@ -0,0 +1,18 @@ +<?php + +namespace Zotlabs\Identity\BasicId; + +class BasicId { + + private $name; + private $profile_photo; + private $profile_url; + private $address; + private $protocol; + + + + + +} + diff --git a/Zotlabs/Identity/ProfilePhoto.php b/Zotlabs/Identity/ProfilePhoto.php new file mode 100644 index 000000000..2891136c7 --- /dev/null +++ b/Zotlabs/Identity/ProfilePhoto.php @@ -0,0 +1,16 @@ +<?php +namespace Zotlabs\Identity\ProfilePhoto; + +class ProfilePhoto { + + private $photo_large_url; + private $photo_medium_url; + private $photo_small_url; + private $photo_mimetype; + private $photo_updated; + + + + +} + |