wikipoints/ground/views/comments/comment.php

16 lines
775 B
PHP

<div class="singleComment">
<a name="comment<?= $comment->id ?>"></a>
<img src="/img/avatars/<?= $comment->refUser->id ?>.jpg" class="avatar"/>
<div class="info">
<a href="/user/<?= $comment->refUser->id ?>"><b><?= $comment->refUser->nick ?></b></a>&nbsp;
<?= date('H:i d-m-Y',$comment->addDate) ?>
<a href="#comment<?= $comment->id ?>" name="#comment<?= $comment->id ?>" class="anchor">#</a>
<?php if (App::$user && $comment->userId == App::$user->id): ?>
<a href="/comments/del/id/<?= $comment->id ?>" title="Удалить комментарий" class="anchor"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span></a>
<?php endif; ?>
</div>
<br/>
<?= Helper::replaceLinks($comment->html, 'html') ?><br/>
<br style="clear: both;">
</div>