function chameleon_comment in Drupal 5
Same name and namespace in other branches
- 4 themes/chameleon/chameleon.theme \chameleon_comment()
- 6 themes/chameleon/chameleon.theme \chameleon_comment()
File
- themes/
chameleon/ chameleon.theme, line 168 - A slim, CSS-driven theme which does not depend on a template engine like phptemplate
Code
function chameleon_comment($comment, $links = "") {
$submitted['comment_submitted'] = array(
'title' => t('By !author at @date', array(
'!author' => theme('username', $comment),
'@date' => format_date($comment->timestamp, 'small'),
)),
'html' => TRUE,
);
$output = "<div class=\"comment" . ($comment->status == COMMENT_NOT_PUBLISHED ? ' comment-unpublished' : '') . "\">\n";
$output .= " <h3 class=\"title\">" . l($comment->subject, $_GET['q'], NULL, NULL, "comment-{$comment->cid}") . "</h3>\n";
$output .= " <div class=\"content\">" . $comment->comment . "</div>\n";
$output .= " <div class=\"links\">" . theme('links', array_merge($submitted, $links)) . "</div>\n";
$output .= "</div>\n";
return $output;
}