You are here

privatemsg-view.tpl.php in Drupal Commons 7.3

File

themes/commons/commons_origins/templates/privatemsg/privatemsg-view.tpl.php
View source
<?php

print $anchors;
?>
<div class="<?php

print $classes;
?>"<?php

print $attributes;
?>>
  <div class="privatemsg-message-information author-datetime">
    <span class="privatemsg-author-name"><?php

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

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

print $author_picture;
?>
    <?php

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

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

}
?>
  </div>
  <div <?php

print $content_attributes;
?>>
    <div class="privatemsg-message-body">
      <?php

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

print render($message_links);
?>
  <?php

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

  print $message_actions;
  ?>
  <?php

}
?>
</div>