comment-wrapper.tpl.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to provide an HTML container for comments.
  5. *
  6. * Available variables:
  7. * - $content: The array of content-related elements for the node. Use
  8. * render($content) to print them all, or
  9. * print a subset such as render($content['comment_form']).
  10. * - $classes: String of classes that can be used to style contextually through
  11. * CSS. It can be manipulated through the variable $classes_array from
  12. * preprocess functions. The default value has the following:
  13. * - comment-wrapper: The current template type, i.e., "theming hook".
  14. * - $title_prefix (array): An array containing additional output populated by
  15. * modules, intended to be displayed in front of the main title tag that
  16. * appears in the template.
  17. * - $title_suffix (array): An array containing additional output populated by
  18. * modules, intended to be displayed after the main title tag that appears in
  19. * the template.
  20. *
  21. * The following variables are provided for contextual information.
  22. * - $node: Node object the comments are attached to.
  23. * The constants below the variables show the possible values and should be
  24. * used for comparison.
  25. * - $display_mode
  26. * - COMMENT_MODE_FLAT
  27. * - COMMENT_MODE_THREADED
  28. *
  29. * Other variables:
  30. * - $classes_array: Array of html class attribute values. It is flattened
  31. * into a string within the variable $classes.
  32. *
  33. * @see template_preprocess_comment_wrapper()
  34. *
  35. * @ingroup themeable
  36. */
  37. ?>
  38. <div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
  39. <?php if ($content['comments'] && $node->type != 'forum'): ?>
  40. <?php print render($title_prefix); ?>
  41. <h2 class="title"><?php print t('Comments'); ?></h2>
  42. <?php print render($title_suffix); ?>
  43. <?php endif; ?>
  44. <?php print render($content['comments']); ?>
  45. <?php if ($content['comment_form']): ?>
  46. <h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
  47. <?php print render($content['comment_form']); ?>
  48. <?php endif; ?>
  49. </div>