| 1 |
<div id="ff_notice_<?php echo $notice['name']; ?>" class="update-nag fluentform-admin-notice fluent_info_notice"> |
| 2 |
<?php if($show_logo): ?> |
| 3 |
<div class="ff_logo_holder"> |
| 4 |
<img alt="Fluent Forms Logo" src="<?php echo $logo_url; ?>" /> |
| 5 |
</div> |
| 6 |
<?php endif; ?> |
| 7 |
<div class="ff_notice_container"> |
| 8 |
<?php if($show_hide_nag): ?> |
| 9 |
<div class="ff_temp_hide_nag"><span data-notice_type="temp" data-notice_name="<?php echo $notice['name']; ?>" title="Hide this Notification" class="dashicons dashicons-dismiss ff_nag_cross nag_cross_btn"></span></div> |
| 10 |
<?php endif; ?> |
| 11 |
|
| 12 |
<h3><?php echo $notice['title']; ?></h3> |
| 13 |
<p><?php echo $notice['message']; ?></p> |
| 14 |
<div class="ff_notice_buttons"> |
| 15 |
<?php foreach ($notice['links'] as $link): ?> |
| 16 |
<a <?php echo $link['btn_atts']; ?> href="<?php echo $link['href']; ?>"><?php echo $link['btn_text']; ?></a> |
| 17 |
<?php endforeach; ?> |
| 18 |
</div> |
| 19 |
</div> |
| 20 |
</div> |