Community Documentation

comment-wrapper.tpl.php

  1. drupal
    1. 6 comment-wrapper.tpl.php
    2. 7 comment-wrapper.tpl.php
    3. 7 comment-wrapper.tpl.php
    4. 8 comment-wrapper.tpl.php
    5. 8 comment-wrapper.tpl.php

comment-wrapper.tpl.php Default theme implementation to wrap comments.

Available variables:

  • $content: All comments for a given page. Also contains sorting controls and comment forms if the site is configured for it.

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.

See also

template_preprocess_comment_wrapper()

theme_comment_wrapper()

View source
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

/**
 * @file comment-wrapper.tpl.php
 * Default theme implementation to wrap comments.
 *
 * Available variables:
 * - $content: All comments for a given page. Also contains sorting controls
 *   and comment forms if the site is configured for it.
 *
 * 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
 * - $comment_controls_state
 *   - COMMENT_CONTROLS_ABOVE
 *   - COMMENT_CONTROLS_BELOW
 *   - COMMENT_CONTROLS_ABOVE_BELOW
 *   - COMMENT_CONTROLS_HIDDEN
 *
 * @see template_preprocess_comment_wrapper()
 * @see theme_comment_wrapper()
 */
?>
<div id="comments">
  <?php print $content; ?>
</div>
Login or register to post comments