You are here

privatemsg-view.tpl.php in Privatemsg 6

File

privatemsg-view.tpl.php
View source
<?php

// Each file loads it's own styles because we cant predict which file will be
// loaded.
drupal_add_css(drupal_get_path('module', 'privatemsg') . '/styles/privatemsg-view.css');
print $anchors;
?>
<div class="privatemsg-box-fb <?php

print $zebra;
?>" id="privatemsg-mid-<?php

print $mid;
?>">
  <div class="left-column">
    <div class="avatar-fb">
      <?php

print $author_picture;
?>
    </div>
  </div>
  <div class="middle-column">
    <div class="name">
      <?php

print $author_name_link;
?>
    </div>
    <div class="date">
      <?php

print $message_timestamp;
?>
    </div>
  </div>
  <div class="right-column">
    <div class="message-body">
      <?php

if (isset($new)) {
  ?>
        <span class="new"><?php

  print $new;
  ?></span>
      <?php

}
?>
      <?php

print $message_body;
?>
    </div>
    <?php

if (isset($message_actions)) {
  ?>
       <?php

  print $message_actions;
  ?>
    <?php

}
?>
  </div>
  <div class="clear-both bottom-border"></div>
</div>