AdminDismissibleNotice.php
1.07 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
<?php
namespace Wpae\WordPress;
class AdminDismissibleNotice extends AdminNotice
{
private $noticeId;
public function __construct($message, $noticeId)
{
parent::__construct($message);
$this->noticeId = $noticeId;
}
public function showNotice()
{
?>
<div class="<?php echo $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;
}
}