32 lines
815 B
PHP
32 lines
815 B
PHP
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* @file
|
|
* Default theme implementation to wrap comments.
|
|
*
|
|
* Available variables:
|
|
* - $content: All comments for a given page. Also contains comment form
|
|
* if enabled.
|
|
*
|
|
* 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
|
|
* - COMMENT_MODE_FLAT_COLLAPSED
|
|
* - COMMENT_MODE_FLAT_EXPANDED
|
|
* - COMMENT_MODE_THREADED_COLLAPSED
|
|
* - COMMENT_MODE_THREADED_EXPANDED
|
|
* - $display_order
|
|
* - COMMENT_ORDER_NEWEST_FIRST
|
|
* - COMMENT_ORDER_OLDEST_FIRST
|
|
*
|
|
* @see template_preprocess_comment_wrapper()
|
|
* @see theme_comment_wrapper()
|
|
*/
|
|
?>
|
|
<div id="comments">
|
|
<?php print $content; ?>
|
|
</div>
|