X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fnoticelist.php;h=df6e8d98c205522b731c00c7d0677cbcc59b1bfa;hb=33e2f5b449d477e55bda7029f9e826d889e41eb5;hp=a4781d9daa7a077cb33917eaad1c931501e94149;hpb=58d798b6079d1c61cee4a4013d234ef224687052;p=quix0rs-gnu-social.git diff --git a/lib/noticelist.php b/lib/noticelist.php index a4781d9daa..df6e8d98c2 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -124,21 +124,32 @@ class NoticeList extends Widget static function prefill(&$notices, $avatarSize=AVATAR_STREAM_SIZE) { - // Prefill the profiles - $profiles = Notice::fillProfiles($notices); - // Prefill the avatars - Profile::fillAvatars($profiles, $avatarSize); + if (Event::handle('StartNoticeListPrefill', array(&$notices, $avatarSize))) { + + // Prefill attachments + Notice::fillAttachments($notices); + // Prefill attachments + Notice::fillFaves($notices); + // Prefill repeat data + Notice::fillRepeats($notices); + // Prefill the profiles + $profiles = Notice::fillProfiles($notices); - $p = Profile::current(); + $p = Profile::current(); - $ids = array(); + if (!empty($p)) { + + $ids = array(); - foreach ($notices as $notice) { - $ids[] = $notice->id; - } + foreach ($notices as $notice) { + $ids[] = $notice->id; + } - if (!empty($p)) { - Memcached_DataObject::pivotGet('Fave', 'notice_id', $ids, array('user_id' => $p->id)); - } + Fave::pivotGet('notice_id', $ids, array('user_id' => $p->id)); + Notice::pivotGet('repeat_of', $ids, array('profile_id' => $p->id)); + } + + Event::handle('EndNoticeListPrefill', array(&$notices, &$profiles, $avatarSize)); + } } }