comment.tpl.php

  1. drupal
    1. 4.7 themes/bluemarine/comment.tpl.php
    2. 4.7 themes/pushbutton/comment.tpl.php
    3. 4.7 themes/engines/phptemplate/comment.tpl.php
    4. 5 themes/engines/phptemplate/comment.tpl.php
    5. 5 themes/bluemarine/comment.tpl.php
    6. 5 themes/garland/comment.tpl.php
    7. 5 themes/pushbutton/comment.tpl.php
    8. 6 themes/bluemarine/comment.tpl.php
    9. 6 modules/comment/comment.tpl.php
    10. 6 themes/pushbutton/comment.tpl.php
    11. 6 themes/garland/comment.tpl.php
    12. 7 themes/bartik/templates/comment.tpl.php
    13. 7 modules/comment/comment.tpl.php
    14. 7 themes/garland/comment.tpl.php
    15. 8 core/modules/comment/comment.tpl.php
    16. 8 core/themes/bartik/templates/comment.tpl.php

1 theme call to comment.tpl.php

File

themes/engines/phptemplate/comment.tpl.php
View source
  1. <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; ?>">
  2. <?php if ($comment->new) : ?>
  3. <a id="new"></a>
  4. <span class="new"><?php print $new ?></span>
  5. <?php endif; ?>
  6. <div class="title"><?php print $title ?></div>
  7. <?php print $picture ?>
  8. <div class="author"><?php print $submitted ?></div>
  9. <div class="content"><?php print $content ?></div>
  10. <?php if ($picture) : ?>
  11. <br class="clear" />
  12. <?php endif; ?>
  13. <div class="links"><?php print $links ?></div>
  14. </div>
Login or register to post comments