3 * Table Definition for reply
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
7 class Reply extends Memcached_DataObject
10 /* the code below is auto generated do not remove the above tag */
12 public $__table = 'reply'; // table name
13 public $notice_id; // int(4) primary_key not_null
14 public $profile_id; // int(4) primary_key not_null
15 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
16 public $replied_id; // int(4)
19 function staticGet($k,$v=null)
20 { return Memcached_DataObject::staticGet('Reply',$k,$v); }
22 /* the code above is auto generated do not remove the tag below */
26 * Wrapper for record insertion to update related caches
30 $result = parent::insert();
33 self::blow('reply:stream:%d', $this->profile_id);
39 function stream($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
41 $stream = new ReplyNoticeStream($user_id);
43 return $stream->getNotices($offset, $limit, $since_id, $max_id);