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 to wrap comments.
|
|
|
|
*
|
|
|
|
* Available variables:
|
2009-07-28 10:09:25 +00:00
|
|
|
* - $content: The array of content-related elements for the node. Use
|
|
|
|
* render($content) to print them all, or
|
|
|
|
* print a subset such as render($content['comment_form']).
|
2009-05-28 16:44:07 +00:00
|
|
|
* - $classes: String of classes that can be used to style contextually through
|
|
|
|
* CSS. It can be manipulated through the variable $classes_array from
|
|
|
|
* preprocess functions. The default value has the following:
|
|
|
|
* - comment-wrapper: The current template type, i.e., "theming hook".
|
2007-07-20 08:51:13 +00:00
|
|
|
*
|
|
|
|
* The following variables are provided for contextual information.
|
|
|
|
* - $node: Node object the comments are attached to.
|
|
|
|
* The constants below the variables show the possible values and should be
|
|
|
|
* used for comparison.
|
|
|
|
* - $display_mode
|
2009-07-15 21:30:14 +00:00
|
|
|
* - COMMENT_MODE_FLAT
|
|
|
|
* - COMMENT_MODE_THREADED
|
2009-05-28 16:44:07 +00:00
|
|
|
*
|
|
|
|
* Other variables:
|
|
|
|
* - $classes_array: Array of html class attribute values. It is flattened
|
|
|
|
* into a string within the variable $classes.
|
2007-07-20 08:51:13 +00:00
|
|
|
*
|
|
|
|
* @see template_preprocess_comment_wrapper()
|
|
|
|
* @see theme_comment_wrapper()
|
|
|
|
*/
|
|
|
|
?>
|
2009-09-11 06:48:03 +00:00
|
|
|
<div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
|
2010-02-23 09:51:21 +00:00
|
|
|
<?php if ($content['comments'] && $node->type != 'forum'): ?>
|
|
|
|
<h2 class="title"><?php print t('Comments'); ?></h2>
|
2009-07-28 10:09:25 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php print render($content['comments']); ?>
|
|
|
|
|
|
|
|
<?php if ($content['comment_form']): ?>
|
2010-02-23 09:51:21 +00:00
|
|
|
<h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
|
|
|
|
<?php print render($content['comment_form']); ?>
|
2009-07-28 10:09:25 +00:00
|
|
|
<?php endif; ?>
|
2007-07-20 08:51:13 +00:00
|
|
|
</div>
|