comment.tpl.php in Drupal 6
Same filename in this branch
Same filename and directory in other branches
comment.tpl.php Default theme implementation for comments.
Available variables:
- $author: Comment author. Can be link or plain text.
- $content: Body of the post.
- $date: Date and time of posting.
- $links: Various operational links.
- $new: New comment marker.
- $picture: Authors picture.
- $signature: Authors signature.
- $status: Comment status. Possible values are: comment-unpublished, comment-published or comment-preview.
- $submitted: By line with date and time.
- $title: Linked title.
These two variables are provided for context.
- $comment: Full comment object.
- $node: Node object the comments are attached to.
1 theme call to comment.tpl.php
- theme_comment_view in modules/
comment/ comment.module - Themes a single comment and related items.
File
modules/comment/comment.tpl.phpView source
<?php
/**
* @file comment.tpl.php
* Default theme implementation for comments.
*
* Available variables:
* - $author: Comment author. Can be link or plain text.
* - $content: Body of the post.
* - $date: Date and time of posting.
* - $links: Various operational links.
* - $new: New comment marker.
* - $picture: Authors picture.
* - $signature: Authors signature.
* - $status: Comment status. Possible values are:
* comment-unpublished, comment-published or comment-preview.
* - $submitted: By line with date and time.
* - $title: Linked title.
*
* These two variables are provided for context.
* - $comment: Full comment object.
* - $node: Node object the comments are attached to.
*
* @see template_preprocess_comment()
* @see theme_comment()
*/
?>
<div class="comment<?php
print $comment->new ? ' comment-new' : '';
print ' ' . $status;
?> clear-block">
<?php
print $picture;
?>
<?php
if ($comment->new) {
?>
<span class="new"><?php
print $new;
?></span>
<?php
}
?>
<h3><?php
print $title;
?></h3>
<div class="submitted">
<?php
print $submitted;
?>
</div>
<div class="content">
<?php
print $content;
?>
<?php
if ($signature) {
?>
<div class="user-signature clear-block">
<?php
print $signature;
?>
</div>
<?php
}
?>
</div>
<?php
print $links;
?>
</div>