admin-notifications.php
1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
// Prevent public access to this script
use Wpo\Core\WordPress_Helpers;
defined('ABSPATH') or die();
?>
<div class="notice notice-<?php echo esc_html($notice_type) ?>" style="margin-left: 2px;">
<table style="border: 0; border-collapse: collapse; width: 100%; max-width: 1024px;">
<tbody>
<tr>
<td colspan="2">
<h3 style="margin: 15px 0px"><?php echo wp_kses($title, WordPress_Helpers::get_allowed_html()) ?></h3>
</td>
</tr>
<tr>
<td>
<p>
<?php echo wp_kses($message, WordPress_Helpers::get_allowed_html()) ?>
</p>
</td>
<td>
<div style="padding: 0px 15px; display: <?php echo (empty($hide_image) ? 'initial' : 'none') ?>">
<a href="https://www.wpo365.com/" target="_blank">
<img style="width: 100%; height: auto; max-width: 80px; min-width: 48px; border: 0px;" src="https://www.wpo365.com/wp-content/uploads/2021/07/icon-128x128-1-128x128.png?notification">
</a>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<p style="margin-bottom: 15px;">
<?php echo wp_kses($footer, WordPress_Helpers::get_allowed_html()) ?>
</p>
</td>
</tr>
</tbody>
</table>
</div>