comment-wrapper.tpl.php

Bartik's theme implementation to provide an HTML container for comments.

Available variables:

  • $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']).
  • $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-wrapper: The current template type, i.e., "theming hook".
  • $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.

The following variables are provided for contextual information.

  • $node: Node entity 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()

1 theme call to comment-wrapper.tpl.php
comment_node_page_additions in drupal/core/modules/comment/comment.module
Builds the comment-related elements for node detail pages.

File

drupal/core/themes/bartik/templates/comment-wrapper.tpl.php
View source
<?php

/**
 * @file
 * Bartik's theme implementation to provide an HTML container for comments.
 *
 * Available variables:
 * - $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']).
 * - $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-wrapper: The current template type, i.e., "theming hook".
 * - $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.
 *
 * The following variables are provided for contextual information.
 * - $node: Node entity 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
 *   - COMMENT_MODE_THREADED
 *
 * @see template_preprocess_comment_wrapper()
 *
 * @ingroup themeable
 */
?>
<div id="comments" <?php

print $attributes;
?>>
  <?php

if ($content['comments'] && $node->type != 'forum') {
  ?>
    <?php

  print render($title_prefix);
  ?>
    <h2 class="title"><?php

  print t('Comments');
  ?></h2>
    <?php

  print render($title_suffix);
  ?>
  <?php

}
?>

  <?php

print render($content['comments']);
?>

  <?php

if ($content['comment_form']) {
  ?>
    <h2 class="title comment-form"><?php

  print t('Add new comment');
  ?></h2>
    <?php

  print render($content['comment_form']);
  ?>
  <?php

}
?>
</div>

Related topics