Browse
For agents
About
Database Reset
/
3.0.2
Database Reset
v3.0.2
Switch version
2.3.2
3.0
3.0.1
3.0.2
3.1
3.15
3.16
3.17
3.18
3.19
3.20
3.21
3.22
3.23
3.24
3.25
trunk
1.0
1.2
1.2.1
1.2.2
1.3
1.4
2.0
2.1
All 27 releases
Overview
Code
wordpress-database-reset
/
views
/
partials
/
notice.php
notice.php
in Database Reset 3.0.2, at views/partials/notice.php
10 lines
333 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
if
(
$
this
->
notice_success
)
:
?
>
2
<
div
class
=
"
updated notice is-dismissible
"
>
3
<
p
>
<
strong
>
<
?
php
echo
$
this
->
notice_success
?
>
.
<
/
strong
>
<
/
p
>
4
<
/
div
>
5
<
?
php
elseif
(
$
this
->
notice_error
)
:
?
>
6
<
div
class
=
"
error notice is-dismissible
"
>
7
<
p
>
<
strong
>
<
?
php
echo
$
this
->
notice_error
?
>
.
<
/
strong
>
<
/
p
>
8
<
/
div
>
9
<
?
php
endif
?
>
10