Mercurial > defr > drupal > core
diff modules/comment/comment.tpl.php @ 1:c1f4ac30525a 6.0
Drupal 6.0
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Dec 2008 14:28:28 +0100 |
parents | |
children | 2427550111ae |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/comment/comment.tpl.php Tue Dec 23 14:28:28 2008 +0100 @@ -0,0 +1,52 @@ +<?php +// $Id: comment.tpl.php,v 1.4 2008/01/04 19:24:23 goba Exp $ + +/** + * @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-review. + * - $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 endif; ?> + + <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 endif; ?> + </div> + + <?php print $links ?> +</div>