AlkantarClanX12

Your IP : 216.73.217.128


Current Path : /var/www/clients/client1/web1/web/sites/all/themes/hawell/tpl/
Upload File :
Current File : /var/www/clients/client1/web1/web/sites/all/themes/hawell/tpl/comment.tpl.php

<?php
  $user = user_load($comment->uid); // Make sure the user object is fully loaded
  $display_name = field_get_items('user', $user, 'field_display_name');
?>

<!-- Comment Item -->
<li class="media comment-item" id="comment-<?php print $comment->cid ?>">
  <a class="pull-left" href="#"><?php print strip_tags($picture,'<img>'); ?></a>
  <div class="media-body">    
    <div class="comment-item-title">
      <div class="comment-author">
        <?php if($display_name[0]['value'] != '') {print  $display_name[0]['value'] ;} else
        print theme('username', array('account' => $content['comment_body']['#object'], 'attributes' => array('class' => 'url'))) ?>
      </div>
      <div class="comment-date">
        <?php print format_date($node->created, 'custom', 'M d, Y, H:i'); ?><span class="slash-divider">-</span><?php print strip_tags(render($content['links']),'<a>') ?>
      </div>
    </div>
    <p class="pb-30"><?php hide($content['links']); print strip_tags(render($content)) ?></p>
  </div>
</li>