88 lines
3.4 KiB
PHP
88 lines
3.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Default theme implementation for comments.
|
|
*
|
|
* Available variables:
|
|
* - $author: Comment author. Can be link or plain text.
|
|
* - $content: An array of comment items. Use render($content) to print them
|
|
* all, or print a subset such as render($content['field_example']). Use
|
|
* hide($content['field_example']) to temporarily suppress the printing of a
|
|
* given element.
|
|
* - $created: Formatted date and time for when the comment was created.
|
|
* Preprocess functions can reformat it by calling format_date() with the
|
|
* desired parameters on the $comment->created variable.
|
|
* - $changed: Formatted date and time for when the comment was last changed.
|
|
* Preprocess functions can reformat it by calling format_date() with the
|
|
* desired parameters on the $comment->changed variable.
|
|
* - $new: New comment marker.
|
|
* - $permalink: Comment permalink.
|
|
* - $submitted: Submission information created from $author and $created during
|
|
* template_preprocess_comment().
|
|
* - $user_picture: The comment author's picture from user-picture.tpl.php.
|
|
* - $signature: Authors signature.
|
|
* - $status: Comment status. Possible values are:
|
|
* unpublished, published, or preview.
|
|
* - $title: Linked title.
|
|
* - $attributes: An instance of Attributes class that can be manipulated as an
|
|
* array and printed as a string.
|
|
* It includes the 'class' information, which includes:
|
|
* - comment: The current template type; e.g., 'theming hook'.
|
|
* - by-anonymous: Comment by an unregistered user.
|
|
* - by-node-author: Comment by the author of the parent node.
|
|
* - preview: When previewing a new or edited comment.
|
|
* The following applies only to viewers who are registered users:
|
|
* - unpublished: An unpublished comment visible only to administrators.
|
|
* - by-viewer: Comment by the user currently viewing the page.
|
|
* - new: New comment since the last visit.
|
|
* - $title_prefix (array): An array containing additional output populated by
|
|
* modules, intended to be displayed in front of the main title tag that
|
|
* appears in the template.
|
|
* - $title_suffix (array): An array containing additional output populated by
|
|
* modules, intended to be displayed after the main title tag that appears in
|
|
* the template.
|
|
*
|
|
* These two variables are provided for context:
|
|
* - $comment: Full comment object.
|
|
* - $node: Node entity the comments are attached to.
|
|
*
|
|
* @see template_preprocess()
|
|
* @see template_preprocess_comment()
|
|
* @see template_process()
|
|
* @see theme_comment()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
?>
|
|
<article class="<?php print $attributes['class']; ?> clearfix"<?php print $attributes; ?>>
|
|
|
|
<?php print render($title_prefix); ?>
|
|
<?php if ($new): ?>
|
|
<mark class="new"><?php print $new; ?></mark>
|
|
<?php endif; ?>
|
|
<h3<?php print $title_attributes; ?>><?php print $title; ?></h3>
|
|
<?php print render($title_suffix); ?>
|
|
|
|
<footer>
|
|
<?php print $user_picture; ?>
|
|
<p class="submitted"><?php print $submitted; ?></p>
|
|
<?php print $permalink; ?>
|
|
</footer>
|
|
|
|
<div class="content"<?php print $content_attributes; ?>>
|
|
<?php
|
|
// We hide the links now so that we can render them later.
|
|
hide($content['links']);
|
|
print render($content);
|
|
?>
|
|
<?php if ($signature): ?>
|
|
<div class="user-signature">
|
|
<?php print $signature; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php print render($content['links']) ?>
|
|
</article>
|