Files
gallery3/modules/comment/views/admin_block_recent_comments.html.php

12 lines
420 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<? foreach ($comments as $comment): ?>
<li>
<?= date("Y-M-d H:i:s", $comment->created) ?>
<?= t("{{author_name}} said {{comment_text}}",
array("author_name" => "<a href=\"#\">$comment->author</a>",
"comment_text" => "<i>\"" . text::limit_words($comment->text, 50) . "\"</i>")); ?>
</li>
<? endforeach ?>
</ul>