Mercurial > defr > drupal > core
comparison modules/comment/comment-folded.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 |
comparison
equal
deleted
inserted
replaced
0:5a113a1c4740 | 1:c1f4ac30525a |
---|---|
1 <?php | |
2 // $Id: comment-folded.tpl.php,v 1.2 2007/08/07 08:39:35 goba Exp $ | |
3 | |
4 /** | |
5 * @file comment-folded.tpl.php | |
6 * Default theme implementation for folded comments. | |
7 * | |
8 * Available variables: | |
9 * - $title: Linked title to full comment. | |
10 * - $new: New comment marker. | |
11 * - $author: Comment author. Can be link or plain text. | |
12 * - $date: Date and time of posting. | |
13 * - $comment: Full comment object. | |
14 * | |
15 * @see template_preprocess_comment_folded() | |
16 * @see theme_comment_folded() | |
17 */ | |
18 ?> | |
19 <div class="comment-folded"> | |
20 <span class="subject"><?php print $title .' '. $new; ?></span><span class="credit"><?php print t('by') .' '. $author; ?></span> | |
21 </div> |