Esempio n. 1
0
 /**
  * Get notices
  *
  * @return array notices
  */
 function getNotices()
 {
     $notices = array();
     $profile = $this->auth_user ? $this->auth_user->getProfile() : null;
     $stream = new PublicNoticeStream($profile);
     $notice = $stream->getNotices(($this->page - 1) * $this->count, $this->count, $this->since_id, $this->max_id);
     $notices = $notice->fetchAll();
     NoticeList::prefill($notices);
     return $notices;
 }
 /**
  * Get notices
  *
  * @return array notices
  */
 function getNotices()
 {
     $notices = array();
     $stream = new PeopletagNoticeStream($this->list);
     $notice = $stream->getNotices(($this->page - 1) * $this->count, $this->count, $this->since_id, $this->max_id);
     $notices = $notice->fetchAll();
     NoticeList::prefill($notices);
     return $notices;
 }