web/drupal/modules/comment/comment-folded.tpl.php
branchdrupal
changeset 74 0ff3ba646492
equal deleted inserted replaced
73:fcf75e232c5b 74:0ff3ba646492
       
     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>