function showNoticeAttachments()
 {
     if (common_config('attachments', 'show_thumbs')) {
         $al = new InlineAttachmentList($this->notice, $this->out);
         $al->show();
     }
 }
 /**
  * Output the HTML for a bookmark in a list
  *
  * @param NoticeListItem $nli The list item being shown.
  *
  * @return boolean hook value
  */
 function onStartShowNoticeItem($nli)
 {
     $nb = Bookmark::getByNotice($nli->notice);
     if (!empty($nb)) {
         $out = $nli->out;
         $notice = $nli->notice;
         $profile = $nli->profile;
         $atts = $notice->attachments();
         if (count($atts) < 1) {
             // Something wrong; let default code deal with it.
             return true;
         }
         $att = $atts[0];
         // XXX: only show the bookmark URL for non-single-page stuff
         if ($out instanceof ShowbookmarkAction) {
         } else {
             $out->elementStart('h3');
             $out->element('a', array('href' => $att->url, 'class' => 'bookmark-title entry-title'), $nb->title);
             $out->elementEnd('h3');
             $countUrl = common_local_url('noticebyurl', array('id' => $att->id));
             $out->element('a', array('class' => 'bookmark-notice-count', 'href' => $countUrl), $att->noticeCount());
         }
         // Replies look like "for:" tags
         $replies = $nli->notice->getReplies();
         $tags = $nli->notice->getTags();
         if (!empty($replies) || !empty($tags)) {
             $out->elementStart('ul', array('class' => 'bookmark-tags'));
             foreach ($replies as $reply) {
                 $other = Profile::staticGet('id', $reply);
                 $out->elementStart('li');
                 $out->element('a', array('rel' => 'tag', 'href' => $other->profileurl, 'title' => $other->getBestName()), sprintf('for:%s', $other->nickname));
                 $out->elementEnd('li');
                 $out->text(' ');
             }
             foreach ($tags as $tag) {
                 $out->elementStart('li');
                 $out->element('a', array('rel' => 'tag', 'href' => Notice_tag::url($tag)), $tag);
                 $out->elementEnd('li');
                 $out->text(' ');
             }
             $out->elementEnd('ul');
         }
         if (!empty($nb->description)) {
             $out->element('p', array('class' => 'bookmark-description'), $nb->description);
         }
         if (common_config('attachments', 'show_thumbs')) {
             $haveThumbs = false;
             foreach ($atts as $check) {
                 $thumbnail = File_thumbnail::staticGet('file_id', $check->id);
                 if (!empty($thumbnail)) {
                     $haveThumbs = true;
                     break;
                 }
             }
             if ($haveThumbs) {
                 $al = new InlineAttachmentList($notice, $out);
                 $al->show();
             }
         }
         $out->elementStart('div', array('class' => 'bookmark-info entry-content'));
         $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
         $out->element('img', array('src' => $avatar ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_MINI_SIZE), 'class' => 'avatar photo bookmark-avatar', 'width' => AVATAR_MINI_SIZE, 'height' => AVATAR_MINI_SIZE, 'alt' => $profile->getBestName()));
         $out->raw('&nbsp;');
         $out->element('a', array('href' => $profile->profileurl, 'title' => $profile->getBestName()), $profile->nickname);
         $nli->showNoticeLink();
         $nli->showNoticeSource();
         $nli->showNoticeLocation();
         $nli->showContext();
         $nli->showRepeat();
         $out->elementEnd('div');
         $nli->showNoticeOptions();
         return false;
     }
     return true;
 }