comment.tpl.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. /**
  3. * @file
  4. * Bartik's theme implementation for comments.
  5. *
  6. * Available variables:
  7. * - $author: Comment author. Can be link or plain text.
  8. * - $content: An array of comment items. Use render($content) to print them all, or
  9. * print a subset such as render($content['field_example']). Use
  10. * hide($content['field_example']) to temporarily suppress the printing of a
  11. * given element.
  12. * - $created: Formatted date and time for when the comment was created.
  13. * Preprocess functions can reformat it by calling format_date() with the
  14. * desired parameters on the $comment->created variable.
  15. * - $changed: Formatted date and time for when the comment was last changed.
  16. * Preprocess functions can reformat it by calling format_date() with the
  17. * desired parameters on the $comment->changed variable.
  18. * - $new: New comment marker.
  19. * - $permalink: Comment permalink.
  20. * - $submitted: Submission information created from $author and $created during
  21. * template_preprocess_comment().
  22. * - $picture: Authors picture.
  23. * - $signature: Authors signature.
  24. * - $status: Comment status. Possible values are:
  25. * comment-unpublished, comment-published or comment-preview.
  26. * - $title: Linked title.
  27. * - $classes: String of classes that can be used to style contextually through
  28. * CSS. It can be manipulated through the variable $classes_array from
  29. * preprocess functions. The default values can be one or more of the following:
  30. * - comment: The current template type, i.e., "theming hook".
  31. * - comment-by-anonymous: Comment by an unregistered user.
  32. * - comment-by-node-author: Comment by the author of the parent node.
  33. * - comment-preview: When previewing a new or edited comment.
  34. * The following applies only to viewers who are registered users:
  35. * - comment-unpublished: An unpublished comment visible only to administrators.
  36. * - comment-by-viewer: Comment by the user currently viewing the page.
  37. * - comment-new: New comment since last the visit.
  38. * - $title_prefix (array): An array containing additional output populated by
  39. * modules, intended to be displayed in front of the main title tag that
  40. * appears in the template.
  41. * - $title_suffix (array): An array containing additional output populated by
  42. * modules, intended to be displayed after the main title tag that appears in
  43. * the template.
  44. *
  45. * These two variables are provided for context:
  46. * - $comment: Full comment object.
  47. * - $node: Node object the comments are attached to.
  48. *
  49. * Other variables:
  50. * - $classes_array: Array of html class attribute values. It is flattened
  51. * into a string within the variable $classes.
  52. *
  53. * @see template_preprocess()
  54. * @see template_preprocess_comment()
  55. * @see template_process()
  56. * @see theme_comment()
  57. */
  58. ?>
  59. <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
  60. <div class="attribution">
  61. <?php print $picture; ?>
  62. <div class="submitted">
  63. <p class="commenter-name">
  64. <?php print $author; ?>
  65. </p>
  66. <p class="comment-time">
  67. <?php print $created; ?>
  68. </p>
  69. <p class="comment-permalink">
  70. <?php print $permalink; ?>
  71. </p>
  72. </div>
  73. </div>
  74. <div class="comment-text">
  75. <div class="comment-arrow"></div>
  76. <?php if ($new): ?>
  77. <span class="new"><?php print $new; ?></span>
  78. <?php endif; ?>
  79. <?php print render($title_prefix); ?>
  80. <h3<?php print $title_attributes; ?>><?php print $title; ?></h3>
  81. <?php print render($title_suffix); ?>
  82. <div class="content"<?php print $content_attributes; ?>>
  83. <?php
  84. // We hide the comments and links now so that we can render them later.
  85. hide($content['links']);
  86. print render($content);
  87. ?>
  88. <?php if ($signature): ?>
  89. <div class="user-signature clearfix">
  90. <?php print $signature; ?>
  91. </div>
  92. <?php endif; ?>
  93. </div> <!-- /.content -->
  94. <?php print render($content['links']); ?>
  95. </div> <!-- /.comment-text -->
  96. </div>