summaryrefslogtreecommitdiff
path: root/modules/comment/views/admin_block_recent_comments.html.php
blob: dc3975e0981acde5ec8d194ebdbb11ef26cdc949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
  <? foreach ($comments as $i => $comment): ?>
  <li class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>">
    <img src="<?= $comment->author()->avatar_url(32, $theme->url("images/avatar.jpg", true)) ?>"
         class="gAvatar"
         alt="<?= html::clean($comment->author_name()) ?>"
         width="32"
         height="32" />
    <?= gallery::date_time($comment->created) ?>
    <?= t('<a href="#">%author_name</a> said <em>%comment_text</em>',
          array("author_name" => html::clean($comment->author_name()),
                "comment_text" => text::limit_words(nl2br(html::purify($comment->text)), 50))); ?>
  </li>
  <? endforeach ?>
</ul>