You are here

privatemsg-view.tpl.php in Privatemsg 7

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.base.css');
drupal_add_css(drupal_get_path('module', 'privatemsg') . '/styles/privatemsg-view.theme.css');
print $anchors;
?>
<div <?php

if (!empty($message_classes)) {
  ?>class="<?php

  echo implode(' ', $message_classes);
  ?>" <?php

}
?> id="privatemsg-mid-<?php

print $mid;
?>">
  <div class="privatemsg-author-avatar">
    <?php

print $author_picture;
?>
  </div>
  <div class="privatemsg-message-column">
    <?php

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

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

}
?>
      <div class="privatemsg-message-information">
        <span class="privatemsg-author-name"><?php

print $author_name_link;
?></span> <span class="privatemsg-message-date"><?php

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

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

  print $message_actions;
  ?>
        <?php

}
?>
      </div>
    <div class="privatemsg-message-body">
      <?php

print $message_body;
?>
    </div>
  </div>
  <div class="clearfix"></div>
</div>