2007-07-20 08:51:13 +00:00
|
|
|
<?php
|
2007-08-07 08:39:36 +00:00
|
|
|
// $Id$
|
|
|
|
|
2007-07-20 08:51:13 +00:00
|
|
|
/**
|
2008-05-14 13:12:41 +00:00
|
|
|
* @file
|
2007-07-20 08:51:13 +00:00
|
|
|
* Default theme implementation for folded comments.
|
|
|
|
*
|
|
|
|
* Available variables:
|
|
|
|
* - $title: Linked title to full comment.
|
|
|
|
* - $new: New comment marker.
|
|
|
|
* - $author: Comment author. Can be link or plain text.
|
|
|
|
* - $date: Date and time of posting.
|
|
|
|
* - $comment: Full comment object.
|
|
|
|
*
|
|
|
|
* @see template_preprocess_comment_folded()
|
|
|
|
* @see theme_comment_folded()
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="comment-folded">
|
2008-04-14 17:48:46 +00:00
|
|
|
<span class="subject"><?php print $title . ' ' . $new; ?></span><span class="credit"><?php print t('by') . ' ' . $author; ?></span>
|
2007-07-20 08:51:13 +00:00
|
|
|
</div>
|