| 1 |
<?php |
| 2 |
// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- View file, its variables are local to the include scope, not true globals. |
| 3 |
defined('ABSPATH') || die('Restricted Access'); |
| 4 |
?> |
| 5 |
<div id="archive_view"> |
| 6 |
<?php |
| 7 |
if (empty($data['receiver']->id)) { |
| 8 |
echo '<p class="acym_front_message_warning">'.esc_html(acym_translation('ACYM_FRONT_ARCHIVE_NOT_CONNECTED')).'</p>'; |
| 9 |
} |
| 10 |
?> |
| 11 |
<h1 class="contentheading"><?php echo esc_html($data['mail']->subject); ?></h1> |
| 12 |
|
| 13 |
<input type="hidden" id="archive_view__content" value="<?php echo esc_attr($data['mail']->body); ?>" /> |
| 14 |
<div style="min-width:80%" id="archive_view__preview"><?php echo $data['mail']->body; ?></div> |
| 15 |
|
| 16 |
<?php |
| 17 |
$attachments = json_decode(!empty($data['mail']->attachments) ? $data['mail']->attachments : '[]', true); |
| 18 |
|
| 19 |
if (!empty($attachments)) { |
| 20 |
?> |
| 21 |
<fieldset class="newsletter_attachments"> |
| 22 |
<legend><?php echo esc_html(acym_translation('ACYM_ATTACHMENTS')); ?></legend> |
| 23 |
<table> |
| 24 |
<?php |
| 25 |
foreach ($attachments as $attachment) { |
| 26 |
$onlyFilename = explode('/', $attachment['filename']); |
| 27 |
$onlyFilename = end($onlyFilename); |
| 28 |
|
| 29 |
echo '<tr><td><a href="'.esc_url(acym_rootURI().$attachment['filename']).'" target="_blank">'.esc_html($onlyFilename).'</a></td></tr>'; |
| 30 |
} |
| 31 |
?> |
| 32 |
</table> |
| 33 |
</fieldset> |
| 34 |
<?php } ?> |
| 35 |
</div> |
| 36 |
|