]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ExtendedProfile/Profile_detail.php
work in progress: prepping for storage of extended profile details
[quix0rs-gnu-social.git] / plugins / ExtendedProfile / Profile_detail.php
1 <?php
2 /* 
3  * To change this template, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 class Profile_detail extends Memcached_DataObject
7 {
8     public $id;
9     public $profile_id;
10     public $field;
11     public $index; // relative ordering of multiple values in the same field
12     public $value; // primary text value
13     public $rel; // detail for some field types; eg "home", "mobile", "work" for phones or "aim", "irc", "xmpp" for IM
14     public $ref_profile; // for people types, allows pointing to a known profile in the system
15
16 }