예제 #1
0
 function getReplies($offset = 0, $limit = NOTICES_PER_PAGE, $since_id = 0, $before_id = 0)
 {
     $ids = Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
     return Notice::getStreamByIds($ids);
 }
예제 #2
0
파일: User.php 프로젝트: Grasia/bolotweet
 function getReplies($offset = 0, $limit = NOTICES_PER_PAGE, $since_id = 0, $before_id = 0)
 {
     return Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
 }