home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / modules / comment / comment-folded.tpl.php next >
Encoding:
PHP Script  |  2007-08-07  |  648 b   |  22 lines

  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>
  22.