Browse
For agents
About
MC4WP: WPML Integration
/
trunk
MC4WP: WPML Integration
vtrunk
Switch version
trunk
1.0
1.0.1
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
Overview
Code
mc4wp-wpml
/
includes
/
admin-functions.php
admin-functions.php
in MC4WP: WPML Integration trunk, at includes/admin-functions.php
13 lines
301 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
function
mc4wp_wpml_settings_page
(
)
4
{
5
global
$
sitepress
;
6
$
opts
=
mc4wp_wpml_get_options
(
)
;
7
$
languages
=
$
sitepress
->
get_active_languages
(
)
;
8
$
mailchimp
=
new
MC4WP_MailChimp
(
)
;
9
$
mailchimp_lists
=
$
mailchimp
->
get_lists
(
)
;
10
11
require
__DIR__
.
'
/views/settings-page.php
'
;
12
}
13