Browse
For agents
About
Subscriptions for WooCommerce with Stripe Recurring Payments
/
1.3.1
Subscriptions for WooCommerce with Stripe Recurring Payments
v1.3.1
Switch version
2.0.0
1.11.2
1.11.1
1.11.0
1.10.9
1.10.8
1.10.7
1.10.6
1.10.5
1.10.4
1.10.3
1.10.2
1.10.1
1.10.0
1.9.6
1.9.5
trunk
1.3.0
1.3.1
1.3.2
1.4.0
1.4.1
1.4.2
1.5.0
1.5.1
All 61 releases
Overview
Code
subscription
/
includes
/
Admin
/
views
/
subscription-info.php
subscription-info.php
in Subscriptions for WooCommerce with Stripe Recurring Payments 1.3.1, at includes/Admin/views/subscription-info.php
13 lines
279 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
table
class
=
"
form-table
"
>
2
<
tbody
>
3
<
?
php
foreach
(
$
rows
as
$
key
=>
$
value
)
:
?
>
4
<
tr
>
5
<
th
scope
=
"
row
"
>
<
?
php
echo
esc_html
(
$
value
[
'
label
'
]
)
;
?
>
:
<
/
th
>
6
<
td
>
7
<
?
php
echo
wp_kses_post
(
$
value
[
'
value
'
]
)
;
?
>
8
<
/
td
>
9
<
/
tr
>
10
<
?
php
endforeach
;
?
>
11
<
/
tbody
>
12
<
/
table
>
13