piler/webui/view/theme/mobile/templates/message/view.tpl

69 lines
4.1 KiB
Smarty
Raw Normal View History

2013-11-15 22:02:44 +01:00
<div id="restorebox" class="alert alert-general">
2013-04-05 10:16:33 +02:00
<?php if(Registry::get('auditor_user') == 1 && count($rcpt) > 0) { ?>
<?php foreach($rcpt as $r) { ?>
<input type="checkbox" class="restorebox" id="rcpt_<?php print $r; ?>" name="rcpt_<?php print $r; ?>" value="1" /> <?php print $r; ?><br />
<?php } ?>
<br />
2013-11-15 22:02:44 +01:00
<input type="button" id="restore_button" name="restore_button" value="<?php print $text_restore; ?>" class="btn btn-primary" onclick="Piler.restore_message_for_recipients(<?php print $id; ?>, '<?php print $text_restored; ?>', '<?php print $text_select_recipients; ?>');" />
<input type="button" value="<?php print $text_cancel; ?>" class="btn btn-inverse" onclick="$('#restorebox').hide();" />
2013-04-05 10:16:33 +02:00
<?php } ?>
</div>
2013-11-15 22:02:44 +01:00
<div class="messageheader">
<p>
2013-11-15 22:47:11 +01:00
<a class="messagelink" href="index.php?route=message/download&amp;id=<?php print $id; ?>"><i class="icon-download"></i>&nbsp;<?php print $text_download_message; ?></a> |
2013-11-15 22:02:44 +01:00
<?php if(SMARTHOST || ENABLE_IMAP_AUTH == 1) { if(Registry::get('auditor_user') == 1) { ?>
2013-11-15 22:47:11 +01:00
<a class="messagelink" href="#" onclick="$('#restorebox').show();"><i class="icon-gift"></i>&nbsp;<?php print $text_restore_to_mailbox; ?></a> |
2013-11-15 22:02:44 +01:00
<?php } else { ?>
2013-11-15 22:47:11 +01:00
<a class="messagelink" href="#" onclick="Piler.restore_message(<?php print $id; ?>);"><i class="icon-gift"></i>&nbsp;<?php print $text_restore_to_mailbox; ?></a> |
2013-11-15 22:02:44 +01:00
<?php } } ?>
2013-11-15 22:47:11 +01:00
<a class="messagelink" href="#" onclick="Piler.view_headers(<?php print $id; ?>);"><i class="icon-envelope"></i>&nbsp;<?php print $text_view_headers; ?></a>
2013-11-15 22:02:44 +01:00
<?php if($message['has_journal'] == 1 && Registry::get('auditor_user') == 1 && SHOW_ENVELOPE_JOURNAL == 1) { ?>
2013-11-15 22:47:11 +01:00
| <a class="messagelink" href="#" onclick="Piler.view_journal(<?php print $id; ?>);"><i class="icon-envelope"></i>&nbsp;<?php print $text_view_journal_envelope; ?></a>
2013-11-15 22:02:44 +01:00
<?php } ?>
2014-01-16 12:57:29 +01:00
<?php if($spam == 1) { ?>
| <a class="messagelink" href="#" onclick="Piler.not_spam(<?php print $id; ?>);"><i class="icon-exclamation-sign"></i>&nbsp;<?php print $text_not_spam; ?></a>
<?php } ?>
2013-11-17 22:57:54 +01:00
| <a class="messagelink" href="#" onclick="Piler.print_div('messageblock');"><i class="icon-print"></i>&nbsp;<?php print $text_print_message; ?></a>
2013-11-15 22:02:44 +01:00
<?php if(ENABLE_ON_THE_FLY_VERIFICATION == 0) {
if ($message['verification'] == 1) { ?><?php print $text_verified_flag; ?> <i class="verified icon-ok-sign icon-large" title="<?php print $text_verified_flag; ?>"></i><?php } else { ?><?php print $text_unverified_flag; ?> <i class="unverified icon-remove-sign icon-large" title="<?php print $text_unverified_flag; ?>"></i><?php }
2013-10-30 23:40:34 +01:00
} ?>
2013-07-27 13:10:48 +02:00
2013-11-15 22:02:44 +01:00
</p>
</div>
2013-04-05 10:16:33 +02:00
2013-11-15 22:02:44 +01:00
<div id="notesbox" class="input-prepend input-append">
<span class="add-on"><i class="icon-file-alt icon-large"></i>&nbsp;<?php print $text_notes; ?>:</span>
<input type="text" size="60" id="note" name="note" class="mynote" value="<?php print preg_replace("/\"/", "&quot;", $message['note']); ?>" />
<input type="button" class="btn btn-inverse" value="<?php print $text_save; ?>" class="message_button" onclick="Piler.add_note_to_message(<?php print $id; ?>, '<?php print $text_saved; ?>'); " />
</div>
2013-04-05 10:16:33 +02:00
2013-11-15 22:02:44 +01:00
<div id="messageblock">
2013-04-05 10:16:33 +02:00
2013-11-15 22:02:44 +01:00
<div class="messageheader">
<strong><?php if($message['subject'] == "" || $message['subject'] == "Subject:") { print "&lt;" . $text_no_subject . "&gt;"; } else { print $message['subject']; } ?></strong><br />
<strong><?php print $message['from']; ?></strong><br />
<strong><?php print $message['to']; ?></strong><br />
<strong><?php print $message['date']; ?></strong><br />
<?php foreach($attachments as $a) { ?>
2013-11-15 22:47:11 +01:00
<span><img src="<?php print ICON_ATTACHMENT; ?>" /><a href="index.php?route=message/attachment&id=<?php print $a['id']; ?>"><?php print $a['name']; ?></a></span>
2014-01-08 15:22:58 +01:00
<?php } ?><?php if(count($attachments) > 1) { ?>| <a href="index.php?route=message/attachments&id=<?php print $id; ?>"><i class="icon-briefcase"></i></a><?php } ?><br/>
2013-11-15 22:02:44 +01:00
</div>
2013-11-15 22:47:11 +01:00
2013-11-15 22:02:44 +01:00
<div class="messagecontents">
<?php print $message['message']; ?>
</div>
2013-04-05 10:16:33 +02:00
2013-11-16 15:34:30 +01:00
<?php foreach($images as $img) { ?>
<p><img src="<?php print SITE_URL; ?>/tmp/<?php print $img['name']; ?>" alt="" /></p>
<?php } ?>
2013-11-15 22:02:44 +01:00
</div>
2013-04-05 10:16:33 +02:00