SitewideAdminDismissibleNotice.php
2.02 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
namespace Wpae\WordPress;
class SitewideAdminDismissibleNotice extends AdminNotice
{
private $noticeId;
public function __construct($message, $noticeId)
{
parent::__construct($message);
$this->noticeId = $noticeId;
}
public function showNotice()
{
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.wpae-general-notice-dismiss').on('click', function(){
var $parent = jQuery(this).parent();
var noticeId = jQuery(this).attr('data-noticeId');
var request = {
action: 'dismiss_warnings',
data: {
notice_id: noticeId
},
security: wp_all_export_security
};
$parent.slideUp();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: request,
success: function(response) {},
dataType: "json"
});
});
});
</script>
<div class="<?php echo esc_attr($this->getType());?>" style="position: relative;"><p>
<?php
echo wp_kses_post($this->message);
?>
</p>
<button class="notice-dismiss wpae-general-notice-dismiss" type="button" data-noticeId="<?php echo esc_attr($this->noticeId); ?>"><span class="screen-reader-text">Dismiss this notice.</span></button>
</div>
<?php
}
public function render()
{
add_action('admin_notices', array($this, 'showNotice'));
}
public function getType()
{
return 'error';
}
public function isDismissed()
{
$optionName = 'wpae_dismiss_warnings_'.$this->noticeId;
$optionValue = get_option($optionName, false);
return $optionValue;
}
}