Browse
For agents
About
Send Users Email – Email Subscribers, Email Marketing Newsletter
/
trunk
Send Users Email – Email Subscribers, Email Marketing Newsletter
vtrunk
Switch version
2.0.3
2.0.2
2.0.1
trunk
1.0.0
1.0.1
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
1.1.0
1.1.1
1.1.2
1.2.0
1.2.1
1.3.0
1.3.1
1.3.2
1.3.3
1.3.4
1.3.5
1.3.6
1.3.7
1.3.8
All 51 releases
Overview
Code
send-users-email
/
admin
/
partials
/
wp-notice.php
wp-notice.php
in Send Users Email – Email Subscribers, Email Marketing Newsletter trunk, at admin/partials/wp-notice.php
8 lines
329 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
$
message
=
isset
(
$
message
)
?
$
message
:
'
'
;
3
$
type
=
isset
(
$
type
)
?
$
type
:
'
info
'
;
4
$
dismissible
=
isset
(
$
dismissible
)
?
$
dismissible
:
true
;
5
?
>
6
<
div
class
=
"
notice notice-<?php echo esc_attr(
$
type
); ?> <?php echo
$
dismissible
? 'is-dismissible' : ''; ?>
"
>
7
<
p
>
<
?
php
echo
esc_html
(
$
message
)
;
?
>
<
/
p
>
8
<
/
div
>