| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> |
| 2 |
<?php use FluentCart\App\Helpers\Helper; |
| 3 |
$showNotice = $show_notice ?? true; |
| 4 |
|
| 5 |
|
| 6 |
if (isset($heading)): ?> |
| 7 |
<p style="font-size:16px;font-weight:600;color:rgb(44,62,80);margin: 16px 0 0 0;line-height:24px;"> |
| 8 |
<?php echo esc_html($heading); ?> |
| 9 |
</p> |
| 10 |
<?php endif; ?> |
| 11 |
|
| 12 |
<table role="presentation" style="width: 100%;overflow:hidden;margin-bottom: 0;border-spacing: 0;border:none;padding: 0 0 0 10px;"> |
| 13 |
<tbody> |
| 14 |
<tr> |
| 15 |
<td style="border:none;padding: 0;"> |
| 16 |
<table role="presentation" style="width: 100%;vertical-align: bottom;border-spacing: 0;padding: 0;margin-bottom: 10px;border:none;"> |
| 17 |
<tbody style="width:100%;vertical-align: bottom;"> |
| 18 |
|
| 19 |
<?php foreach ($licenses as $license): ?> |
| 20 |
<tr style="width:100%;vertical-align: bottom;"> |
| 21 |
<td style="width:75%;border:none;padding: 0;"> |
| 22 |
<span style="font-size: 15px; color: #2F3448; font-weight: 500; overflow: hidden; line-height: 18px; margin-top: 0; margin-bottom: 5px;"> |
| 23 |
<?php echo esc_html($license->productVariant->variation_title); ?>: |
| 24 |
<?php echo esc_attr($license->license_key); ?> |
| 25 |
</span> |
| 26 |
|
| 27 |
</td> |
| 28 |
|
| 29 |
|
| 30 |
</tr> |
| 31 |
<?php endforeach; ?> |
| 32 |
</tbody> |
| 33 |
</table> |
| 34 |
</td> |
| 35 |
</tr> |
| 36 |
</tbody> |
| 37 |
</table> |
| 38 |
|
| 39 |
<?php if($showNotice): ?> |
| 40 |
<table role="presentation" |
| 41 |
style="background-color:rgb(239,246,255);padding:12px;border-radius:6px;margin-bottom:20px;border-width:1px;border-color:rgb(191,219,254)"> |
| 42 |
<tbody> |
| 43 |
<tr> |
| 44 |
<td> |
| 45 |
<p style="font-size:14px;font-weight:600;color:rgb(30,58,138);line-height:24px;margin: 0 0 6px 0;"> |
| 46 |
<?php echo esc_html__('Important', 'fluent-cart');?> |
| 47 |
</p> |
| 48 |
<p style="font-size:13px;color:rgb(30,64,175);margin-bottom:0;line-height:1.2;margin-top:0"> |
| 49 |
<?php echo esc_html__('This download link is valid for 7 days. After that, you can download the files again from your account |
| 50 |
on our website.', 'fluent-cart');?> |
| 51 |
</p> |
| 52 |
</td> |
| 53 |
</tr> |
| 54 |
</tbody> |
| 55 |
</table> |
| 56 |
<?php endif; ?> |
| 57 |
|