Skip to content
comment-wrapper.tpl.php 1.42 KiB
Newer Older
Phuong Nguyen's avatar
Phuong Nguyen committed
// $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" class="clearfix">
Phuong Nguyen's avatar
Phuong Nguyen committed
  <div id="comment-head"></div>
    <?php if ($node->type != 'forum'): ?>
      <div class="comment-count">
Phuong Nguyen's avatar
Phuong Nguyen committed
				<a href="#comments">
          <?php 
              print $node->comment_count; 
              if ($node->comment_count > 1) {
              print ' ' .t('Comments'); }
              else { print ' ' .t('Comment'); } ?>
				</a>
Phuong Nguyen's avatar
Phuong Nguyen committed
      </div>
    <?php endif; ?>
Phuong Nguyen's avatar
Phuong Nguyen committed
      <?php print $content; ?>
Phuong Nguyen's avatar
Phuong Nguyen committed
</div><!-- /#comments -->