Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/fluentform/app/Views/admin/notices/info.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<div id="ff_notice_<?php echo esc_attr($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 esc_url($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 esc_attr($notice['name']); ?>" title="<?php esc_attr_e('Hide this Notification', 'fluentform') ?>" class="dashicons dashicons-dismiss ff_nag_cross nag_cross_btn"></span></div>
10
+
<?php endif; ?>
11
+
12
+
<h3><?php echo esc_html($notice['title']); ?></h3>
13
+
<p><?php echo wp_kses_post($notice['message']); ?></p>
14
+
<div class="ff_notice_buttons">
15
+
<?php foreach ($notice['links'] as $link): ?>
16
+
<a <?php echo wp_kses_post($link['btn_atts']); ?> href="<?php echo esc_url($link['href']); ?>"><?php echo esc_html($link['btn_text']); ?></a>
17
+
<?php endforeach; ?>
18
+
</div>
19
+
</div>
20
+
</div>
21
+