summaryrefslogtreecommitdiff
path: root/modules/comment/comment-wrapper.tpl.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-20 08:51:13 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-20 08:51:13 +0000
commit7d0cf742f7761b9c2a2fe2f22d40f96dd08d95fd (patch)
tree2ea1b24f773022851d99cdc032869cc6e2916ba1 /modules/comment/comment-wrapper.tpl.php
parent1cd02d7ec1c472344df811bfd0fe09bae3c194fb (diff)
downloadbrdo-7d0cf742f7761b9c2a2fe2f22d40f96dd08d95fd.tar.gz
brdo-7d0cf742f7761b9c2a2fe2f22d40f96dd08d95fd.tar.bz2
- Patch #160589 by dvessel: tpl-ify the comment module's theme functions.
Diffstat (limited to 'modules/comment/comment-wrapper.tpl.php')
-rw-r--r--modules/comment/comment-wrapper.tpl.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/comment/comment-wrapper.tpl.php b/modules/comment/comment-wrapper.tpl.php
new file mode 100644
index 000000000..dab4cebab
--- /dev/null
+++ b/modules/comment/comment-wrapper.tpl.php
@@ -0,0 +1,35 @@
+<?php
+// $Id
+/**
+ * @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>