3 * Table Definition for foreign_link
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
7 class Foreign_link extends Memcached_DataObject
10 /* the code below is auto generated do not remove the above tag */
12 public $__table = 'foreign_link'; // table name
13 public $user_id; // int(4) primary_key not_null
14 public $foreign_id; // int(4) primary_key not_null
15 public $service; // int(4) primary_key not_null
16 public $credentials; // varchar(255)
17 public $noticesync; // tinyint(1) not_null default_1
18 public $friendsync; // tinyint(1) not_null default_2
19 public $profilesync; // tinyint(1) not_null default_1
20 public $last_noticesync; // datetime()
21 public $last_friendsync; // datetime()
22 public $created; // datetime() not_null
23 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
26 function staticGet($k,$v=null)
27 { return Memcached_DataObject::staticGet('Foreign_link',$k,$v); }
29 /* the code above is auto generated do not remove the tag below */
32 // XXX: This only returns a 1->1 single obj mapping. Change? Or make
33 // a getForeignUsers() that returns more than one? --Zach
34 static function getByUserID($user_id, $service)
36 $flink = new Foreign_link();
37 $flink->service = $service;
38 $flink->user_id = $user_id;
41 if ($flink->find(true)) {
48 static function getByForeignID($foreign_id, $service)
50 $flink = new Foreign_link();
51 $flink->service = $service;
52 $flink->foreign_id = $foreign_id;
55 if ($flink->find(true)) {
62 function set_flags($noticesend, $noticerecv, $replysync, $friendsync)
65 $this->noticesync |= FOREIGN_NOTICE_SEND;
67 $this->noticesync &= ~FOREIGN_NOTICE_SEND;
71 $this->noticesync |= FOREIGN_NOTICE_RECV;
73 $this->noticesync &= ~FOREIGN_NOTICE_RECV;
77 $this->noticesync |= FOREIGN_NOTICE_SEND_REPLY;
79 $this->noticesync &= ~FOREIGN_NOTICE_SEND_REPLY;
83 $this->friendsync |= FOREIGN_FRIEND_RECV;
85 $this->friendsync &= ~FOREIGN_FRIEND_RECV;
88 $this->profilesync = 0;
92 function getForeignUser()
94 $fuser = new Foreign_user();
95 $fuser->service = $this->service;
96 $fuser->id = $this->foreign_id;
100 if ($fuser->find(true)) {
109 return User::staticGet($this->user_id);