1
|
<?php
|
2
|
|
3
|
|
4
|
drupal_add_css(drupal_get_path('module', 'privatemsg') . '/styles/privatemsg-view.base.css');
|
5
|
drupal_add_css(drupal_get_path('module', 'privatemsg') . '/styles/privatemsg-view.theme.css');
|
6
|
?>
|
7
|
<?php
|
8
|
print $anchors; ?>
|
9
|
<div <?php if ( !empty($message_classes)) { ?>class="<?php echo implode(' ', $message_classes); ?>" <?php } ?> id="privatemsg-mid-<?php print $mid; ?>">
|
10
|
<div class="privatemsg-author-avatar">
|
11
|
<?php print $author_picture; ?>
|
12
|
</div>
|
13
|
<div class="privatemsg-message-column">
|
14
|
<?php if (isset($new)): ?>
|
15
|
<span class="new privatemsg-message-new"><?php print $new ?></span>
|
16
|
<?php endif ?>
|
17
|
<div class="privatemsg-message-information">
|
18
|
<span class="privatemsg-author-name"><?php print $author_name_link; ?></span> <span class="privatemsg-message-date"><?php print $message_timestamp; ?></span>
|
19
|
<?php if (isset($message_actions)): ?>
|
20
|
<?php print $message_actions ?>
|
21
|
<?php endif ?>
|
22
|
</div>
|
23
|
<div class="privatemsg-message-body">
|
24
|
<?php print $message_body; ?>
|
25
|
</div>
|
26
|
</div>
|
27
|
<div class="clearfix"></div>
|
28
|
</div>
|