public function getConversationUrl($anchor = true) { return Conversation::getUrlFromNotice($this, $anchor); }
/** * show the link to the main page for the notice * * Displays a local link to the rendered notice, with "relative" time. * * @return void */ function showNoticeLink() { $this->out->elementStart('a', array('rel' => 'bookmark', 'class' => 'timestamp', 'href' => Conversation::getUrlFromNotice($this->notice))); $this->out->element('time', array('class' => 'dt-published', 'datetime' => common_date_iso8601($this->notice->created), 'title' => common_exact_date($this->notice->created)), common_date_string($this->notice->created)); $this->out->elementEnd('a'); }