X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fnoticelistitem.php;h=d7cc57188d936586917ef5b06e3b35b7d2a5d302;hb=306df3dc3b7780645bd65d5d9a5bbddc7185ae26;hp=7701cd8a6c05769c7513aeacee61595645a46eb1;hpb=96e0867d4c52647af4455117f27e20a23aac3ec9;p=quix0rs-gnu-social.git diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 7701cd8a6c..d7cc57188d 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -64,6 +64,7 @@ class NoticeListItem extends Widget protected $options = true; protected $maxchars = 0; // if <= 0 it means use full posts protected $item_tag = 'li'; + protected $pa = null; /** * constructor @@ -150,7 +151,13 @@ class NoticeListItem extends Widget $this->elementStart('section', array('class'=>'notice-headers')); $this->showNoticeTitle(); $this->showAuthor(); - if ($this->addressees) { $this->showAddressees(); } + + if (!empty($this->notice->reply_to) || count($this->getProfileAddressees()) > 0) { + $this->elementStart('div', array('class' => 'parents')); + if (!empty($this->notice->reply_to)) { $this->showParent(); } + if ($this->addressees) { $this->showAddressees(); } + $this->elementEnd('div'); + } $this->elementEnd('section'); } @@ -166,7 +173,7 @@ class NoticeListItem extends Widget function showNoticeTitle() { if (Event::handle('StartShowNoticeTitle', array($this))) { - $this->element('a', array('href' => $this->notice->getUrl(), + $this->element('a', array('href' => $this->notice->getUrl(true), 'class' => 'notice-title'), $this->notice->getTitle()); Event::handle('EndShowNoticeTitle', array($this)); @@ -248,6 +255,19 @@ class NoticeListItem extends Widget } } + function showParent() + { + $this->out->element( + 'a', + array( + 'href' => $this->notice->getParent()->getUrl(), + 'class' => 'u-in-reply-to', + 'rel' => 'in-reply-to' + ), + 'in reply to' + ); + } + function showAddressees() { $pa = $this->getProfileAddressees(); @@ -268,19 +288,20 @@ class NoticeListItem extends Widget function getProfileAddressees() { - $pa = array(); + if($this->pa) { return $this->pa; } + $this->pa = array(); $attentions = $this->getReplyProfiles(); foreach ($attentions as $attn) { $class = $attn->isGroup() ? 'group' : 'account'; - $pa[] = array('href' => $attn->profileurl, - 'title' => $attn->getNickname(), - 'class' => "addressee {$class}", - 'text' => $attn->getStreamName()); + $this->pa[] = array('href' => $attn->profileurl, + 'title' => $attn->getNickname(), + 'class' => "addressee {$class}", + 'text' => $attn->getStreamName()); } - return $pa; + return $this->pa; } function getReplyProfiles() @@ -352,7 +373,6 @@ class NoticeListItem extends Widget 'href' => Conversation::getUrlFromNotice($this->notice))); $this->out->element('time', array('class' => 'dt-published', 'datetime' => common_date_iso8601($this->notice->created), - // TRANS: Timestamp title (tooltip text) for NoticeListItem 'title' => common_exact_date($this->notice->created)), common_date_string($this->notice->created)); $this->out->elementEnd('a'); @@ -517,9 +537,22 @@ class NoticeListItem extends Widget if (!$this->notice->isLocal()) { $class .= ' external'; } + + try { + if($this->repeat) { + $this->out->element('a', + array('href' => $this->repeat->getUrl(), + 'class' => 'u-url'), + ''); + $class = str_replace('u-url', 'u-repost-of', $class); + } + } catch (InvalidUrlException $e) { + // no permalink available + } + try { $this->out->element('a', - array('href' => $this->notice->getUrl(), + array('href' => $this->notice->getUrl(true), 'class' => $class), // TRANS: Addition in notice list item for single-notice view. _('permalink'));