Browse
For agents
About
MONEI Payments for WooCommerce
/
trunk
MONEI Payments for WooCommerce
vtrunk
Switch version
7.3.3
7.3.2
7.3.1
7.3.0
7.2.4
7.2.3
7.2.2
7.2.0
7.2.1
7.1.3
2.1.0
3.0.0
3.1.0
3.1.1
4.0.0
4.1.0
4.1.1
4.2.0
4.2.1
5.0
5.1.0
5.1.1
5.1.2
5.2.2
5.2.3
All 87 releases
Overview
Code
monei
/
src
/
Templates
/
NoticeAdminDependency.php
NoticeAdminDependency.php
in MONEI Payments for WooCommerce trunk, at src/Templates/NoticeAdminDependency.php
18 lines
351 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
3
namespace
Monei
\
Templates
;
4
5
class
NoticeAdminDependency
implements
TemplateInterface
{
6
7
8
public
function
render
(
$
data
)
:
void
{
9
?
>
10
11
<
div
class
=
"
notice notice-error
"
>
12
<
p
>
13
<
strong
>
<
?
php
echo
esc_html_e
(
'
MONEI Gateway is inactive because WooCommerce is not installed and active.
'
,
'
monei
'
)
;
?
>
<
/
strong
>
14
<
/
p
>
15
<
/
div
>
16
<
?
php
17
}
18
}