get('user'); $userLink = $user ? $this->qualifiedUrl('user', array('user' => $user)) : null; $targetLink = $activity->getUrl($this->plugin('qualifiedUrl')); ?>
escapeHtml($user) ?> te($activity->get('action')) ?> escapeHtml($activity->get('target'))?>

getParam('comment'); $context = $comment ? $comment->getFileContext() : array('content' => null, 'line' => null); if (is_array($context['content']) && $context['line']) { $line = $context['line'] - count($context['content']) + 1; echo '
'; foreach ((array) $context['content'] as $i => $content) { echo '
' . str_pad($line + $i, strlen($context['line']), "0", STR_PAD_LEFT) . '. ' . $this->preformat($content)->setLinkify(false)->setEmojify(false)->setWordWrap(900) . "
\n"; } echo '

'; } ?>
preformat($activity->get('description')) ->setBaseUrl($this->qualifiedUrl()) ->setEmojify(false) ->setWordWrap(900) ?>
getParam('attachments'); if ($attachments && count($attachments) > 0) { echo '
' . '
'.$this->te('ATTACHMENTS').'
' . '
'; foreach ($attachments as $attachment) { if ($attachment->isWebSafeImage()) { echo '
'; } echo '' . $this->escapeHtml($attachment->get('name')) . ' (' . $this->fileSize($attachment->get('size')) . ')
'; } echo '
'; } ?>