-
Notifications
You must be signed in to change notification settings - Fork 1
/
sitepress.php
executable file
·404 lines (329 loc) · 15.1 KB
/
sitepress.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<?php
/**
* Plugin Name: WPML Multilingual CMS
* Plugin URI: https://wpml.org/
* Description: WPML Multilingual CMS | <a href="https://wpml.org">Documentation</a> | <a href="https://wpml.org/version/wpml-4-3-6/">WPML 4.3.6 release notes</a>
* Author: OnTheGoSystems
* Author URI: http://www.onthegosystems.com/
* Version: 4.3.6
* Plugin Slug: sitepress-multilingual-cms
*
* @package WPML\Core
*/
use WPML\Container\Config;
if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
die( 'You are not allowed to call this page directly.' );
}
$is_not_network_admin = ! function_exists( 'is_multisite' ) || ! is_multisite() || ! is_network_admin();
if ( defined( 'ICL_SITEPRESS_VERSION' ) || ( (bool) get_option( '_wpml_inactive' ) && $is_not_network_admin ) ) {
return;
}
require_once 'classes/requirements/WordPress.php';
if ( ! \WPML\Requirements\WordPress::checkMinimumRequiredVersion() ) {
return;
}
define( 'ICL_SITEPRESS_VERSION', '4.3.6' );
// Do not uncomment the following line!
// If you need to use this constant, use it in the wp-config.php file
//define('ICL_SITEPRESS_DEV_VERSION', '3.4-dev');
define( 'WPML_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
define( 'WPML_PLUGIN_FOLDER', dirname( WPML_PLUGIN_BASENAME ) );
define( 'WPML_PLUGIN_PATH', WP_PLUGIN_DIR . '/' . WPML_PLUGIN_FOLDER );
define( 'WPML_PLUGIN_FILE', basename( WPML_PLUGIN_BASENAME ) );
/** @deprecated since 3.7.0 and will be removed in 3.8.0, use `WPML_PLUGIN_BASENAME` instead */
define( 'ICL_PLUGIN_FULL_PATH', WPML_PLUGIN_BASENAME );
/** @deprecated since 3.7.0 and will be removed in 3.8.0, use `WPML_PLUGIN_FOLDER` instead */
define( 'ICL_PLUGIN_FOLDER', WPML_PLUGIN_FOLDER );
/** @deprecated since 3.7.0 and will be removed in 3.8.0, use `WPML_PLUGIN_PATH` instead */
define( 'ICL_PLUGIN_PATH', WPML_PLUGIN_PATH );
/** @deprecated since 3.7.0 and will be removed in 3.8.0, use `WPML_PLUGIN_FILE` instead */
define( 'ICL_PLUGIN_FILE', WPML_PLUGIN_FILE );
//PHP 5.2 backward compatibility
if ( ! defined( 'FILTER_SANITIZE_FULL_SPECIAL_CHARS' ) ) {
define( 'FILTER_SANITIZE_FULL_SPECIAL_CHARS', FILTER_SANITIZE_STRING );
}
require_once WPML_PLUGIN_PATH . '/inc/functions-helpers.php';
$autoloader_dir = WPML_PLUGIN_PATH . '/vendor';
if ( version_compare( PHP_VERSION, '5.3.0' ) >= 0 ) {
$autoloader = $autoloader_dir . '/autoload.php';
} else {
$autoloader = $autoloader_dir . '/autoload_52.php';
}
require_once $autoloader;
add_action( 'plugins_loaded', 'wpml_disable_outdated_plugins', -PHP_INT_MAX );
function wpml_disable_outdated_plugins() {
WPML_Plugins_Check::disable_outdated(
file_get_contents( dirname( __FILE__ ) . '/wpml-dependencies.json' ),
defined( 'WPML_TM_VERSION' ) ? WPML_TM_VERSION : '1.0',
defined( 'WPML_ST_VERSION' ) ? WPML_ST_VERSION : '1.0',
defined( 'WCML_VERSION' ) ? WCML_VERSION : '1.0'
);
}
$WPML_Dependencies = WPML_Dependencies::get_instance();
require_once WPML_PLUGIN_PATH . '/inc/wpml-private-actions.php';
require_once WPML_PLUGIN_PATH . '/inc/functions.php';
require_once WPML_PLUGIN_PATH . '/inc/functions-sanitation.php';
require_once WPML_PLUGIN_PATH . '/inc/functions-security.php';
require_once WPML_PLUGIN_PATH . '/inc/wpml-post-comments.class.php';
require_once WPML_PLUGIN_PATH . '/inc/icl-admin-notifier.php';
require_once WPML_PLUGIN_PATH . '/classes/container/functions.php';
if ( ! function_exists( 'filter_input' ) ) {
wpml_set_plugin_as_inactive();
add_action( 'admin_notices', 'wpml_missing_filter_input_notice' );
return;
}
$icl_plugin_url = untrailingslashit( plugin_dir_url( __FILE__ ) );
if ( (bool) wpml_get_setting_filter( array(), 'language_domains' ) === true && isset( $_SERVER['HTTP_HOST'] ) ) {
global $wpdb, $wpml_include_url_filter;
$wpml_include_url_filter = new WPML_Include_Url( $wpdb, $_SERVER['HTTP_HOST'] );
$icl_plugin_url = $wpml_include_url_filter->filter_include_url( $icl_plugin_url );
}
define( 'ICL_PLUGIN_URL', $icl_plugin_url );
require_once WPML_PLUGIN_PATH . '/inc/template-functions.php';
require_once WPML_PLUGIN_PATH . '/inc/js-scripts.php';
require_once WPML_PLUGIN_PATH . '/inc/lang-data.php';
require_once WPML_PLUGIN_PATH . '/inc/setup/sitepress-setup.class.php';
require_once WPML_PLUGIN_PATH . '/inc/not-compatible-plugins.php';
if ( ! empty( $icl_ncp_plugins ) ) {
return;
}
require_once WPML_PLUGIN_PATH . '/inc/setup/sitepress-schema.php';
require_once WPML_PLUGIN_PATH . '/inc/functions-load.php';
require_once WPML_PLUGIN_PATH . '/inc/constants.php';
/**
* Initialize otgs/ui as soon as `WPML_PLUGIN_PATH` becomes available
*/
require_once $autoloader_dir . '/otgs/ui/loader.php';
otgs_ui_initialize( WPML_PLUGIN_PATH . '/vendor/otgs/ui', ICL_PLUGIN_URL . '/vendor/otgs/ui' );
require_once WPML_PLUGIN_PATH . '/inc/taxonomy-term-translation/wpml-term-translations.class.php';
require_once WPML_PLUGIN_PATH . '/inc/functions-troubleshooting.php';
require_once WPML_PLUGIN_PATH . '/menu/term-taxonomy-menus/taxonomy-translation-display.class.php';
require_once WPML_PLUGIN_PATH . '/inc/taxonomy-term-translation/wpml-term-translation.class.php';
require_once WPML_PLUGIN_PATH . '/inc/post-translation/wpml-post-translation.class.php';
require_once WPML_PLUGIN_PATH . '/inc/post-translation/wpml-admin-post-actions.class.php';
require_once WPML_PLUGIN_PATH . '/inc/post-translation/wpml-frontend-post-actions.class.php';
require_once WPML_PLUGIN_PATH . '/inc/utilities/wpml-languages.class.php';
require_once WPML_PLUGIN_PATH . '/menu/post-menus/post-edit-screen/wpml-meta-boxes-post-edit-html.class.php';
load_essential_globals();
require_once WPML_PLUGIN_PATH . '/sitepress.class.php';
require_once WPML_PLUGIN_PATH . '/inc/hacks.php';
require_once WPML_PLUGIN_PATH . '/inc/upgrade.php';
require_once WPML_PLUGIN_PATH . '/inc/language-switcher.php';
require_once WPML_PLUGIN_PATH . '/inc/import-xml.php';
require_once WPML_PLUGIN_PATH . '/inc/utilities/xml2array.php';
// using a plugin version that the db can't be upgraded to.
if ( defined( 'WPML_UPGRADE_NOT_POSSIBLE' ) && WPML_UPGRADE_NOT_POSSIBLE ) {
return;
}
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
$wpmu_sitewide_plugins = (array) maybe_unserialize( get_site_option( 'active_sitewide_plugins' ) );
if ( false === get_option( 'icl_sitepress_version', false ) && isset( $wpmu_sitewide_plugins[ WPML_PLUGIN_BASENAME ] ) ) {
icl_sitepress_activate();
}
include_once WPML_PLUGIN_PATH . '/inc/functions-network.php';
if ( get_option( '_wpml_inactive', false ) && isset( $wpmu_sitewide_plugins[ WPML_PLUGIN_BASENAME ] ) && $is_not_network_admin ) {
wpml_set_plugin_as_inactive();
return;
}
}
if ( ! wp_next_scheduled( 'update_wpml_config_index' ) ) {
//Set cron job to update WPML config index file from CDN.
wp_schedule_event( time(), 'daily', 'update_wpml_config_index' );
}
/** @var WPML_Post_Translation $wpml_post_translations */
/** @var WPML_Language_Resolution $wpml_language_resolution */
global $sitepress, $wpdb, $wpml_url_filters, $wpml_post_translations, $wpml_term_translations, $wpml_url_converter, $wpml_language_resolution, $wpml_slug_filter, $wpml_cache_factory;
$wpml_cache_factory = new WPML_Cache_Factory();
WPML\Container\share( Config::getSharedInstances() );
WPML\Container\share( Config::getSharedClasses() );
WPML\Container\alias( Config::getAliases() );
WPML\Container\delegate( Config::getDelegated() );
$sitepress = WPML\Container\make( '\SitePress' );
$action_filter_loader = new WPML_Action_Filter_Loader();
if ( $sitepress->is_setup_complete() ) {
$actions = [
'WPML_Copy_Once_Custom_Field_Factory',
'WPML_Adjacent_Links_Hooks_Factory',
'WPML_Widgets_Support_Factory',
'WPML_End_User_Loader_Factory',
'WPML_End_User_Confirmation_Factory',
'WPML_Admin_Resources_Hooks_Factory',
'WPML_Themes_Plugin_Localization_UI_Hooks_Factory',
'WPML_Theme_Plugin_Localization_Options_Ajax_Factory',
'WPML_Archives_Query_Factory',
'WPML_Fix_Links_In_Display_As_Translated_Content_Factory',
'WPML_Display_As_Translated_Tax_Query_Factory',
'WPML_Tax_Permalink_Filters_Factory',
'WPML_Display_As_Translated_Snippet_Filters_Factory',
'WPML_Upgrade_Loader_Factory',
'WPML_Post_Edit_Terms_Hooks_Factory',
'WPML_Attachments_Urls_With_Identical_Slugs_Factory',
'WPML_API_Hooks_Factory',
'WPML_Cache_Terms_Per_Lang_Factory',
'WPML_Display_As_Translated_Message_For_New_Post_Factory',
'WPML_Custom_Fields_Post_Meta_Info_Factory',
'WPML_Display_As_Translated_Default_Lang_Messages_Factory',
'WPML_Absolute_Url_Persisted_Filters_Factory',
'WPML_Meta_Boxes_Post_Edit_Ajax_Factory',
'WPML_Wizard_Fetch_Content_Factory',
'WPML_Privacy_Content_Factory',
'WPML_Custom_Columns_Factory',
'WPML_Config_Shortcode_List',
'WPML_Config_Built_With_Page_Builders',
'WPML_Endpoints_Support_Factory',
'WPML_Installer_Domain_URL_Factory',
'WPML_REST_Extend_Args_Factory',
'WPML_WP_Options_General_Hooks_Factory',
'WPML_WP_In_Subdir_URL_Filters_Factory',
'WPML_Table_Collate_Fix',
'\WPML\WP\OptionManager',
'\WPML\Notices\DismissNotices',
'\WPML\Ajax\Locale',
];
$action_filter_loader->load( $actions );
if ( $sitepress->is_translated_post_type( 'attachment' ) ) {
$media_actions = [
'WPML_Attachment_Action_Factory',
'WPML_Media_Attachments_Duplication_Factory',
'WPML_Deactivate_Old_Media_Factory',
'WPML_Set_Attachments_Language_Factory',
'WPML_Display_As_Translated_Attachments_Query_Factory',
'WPML_Media_Settings_Factory',
];
$action_filter_loader->load( $media_actions );
}
$rest_factories = [
'WPML_REST_Posts_Hooks_Factory',
'WPML\Core\REST\RewriteRules',
];
$action_filter_loader->load( $rest_factories );
}
$sitepress->load_core_tm();
$wpml_wp_comments = new WPML_WP_Comments( $sitepress );
$wpml_wp_comments->add_hooks();
new WPML_Global_AJAX( $sitepress );
/** @var \WPML_WP_API $wpml_wp_api */
$wpml_wp_api = $sitepress->get_wp_api();
if ( $wpml_wp_api->is_support_page() ) {
new WPML_Support_Page( $wpml_wp_api );
}
wpml_load_query_filter( $sitepress->get_setting( 'setup_complete' ) );
$wpml_canonicals = new WPML_Canonicals( $sitepress, new WPML_Translation_Element_Factory( $sitepress ) );
$wpml_canonicals_hooks = new WPML_Canonicals_Hooks( $sitepress, $wpml_url_converter, array(
'WPML_Root_Page',
'is_current_request_root',
) );
$wpml_canonicals_hooks->add_hooks();
$wpml_url_filters = new WPML_URL_Filters( $wpml_post_translations, $wpml_url_converter, $wpml_canonicals, $sitepress, new WPML_Debug_BackTrace( $wpml_wp_api->phpversion() ) );
wpml_load_request_handler( is_admin(), $wpml_language_resolution->get_active_language_codes(), $sitepress->get_default_language() );
$tf_settings_read = new WPML_TF_Settings_Read();
/** @var WPML_TF_Settings $tf_settings */
$tf_settings = $tf_settings_read->get( 'WPML_TF_Settings' );
$translation_feedback_module = new WPML_TF_Module( $action_filter_loader, $tf_settings );
$translation_feedback_module->run();
require_once WPML_PLUGIN_PATH . '/inc/url-handling/wpml-slug-filter.class.php';
$wpml_slug_filter = new WPML_Slug_Filter( $wpdb, $sitepress, $wpml_post_translations );
/** @var array $sitepress_settings */
$sitepress_settings = $sitepress->get_settings();
wpml_load_term_filters();
wpml_maybe_setup_post_edit();
require_once WPML_PLUGIN_PATH . '/modules/cache-plugins-integration/cache-plugins-integration.php';
require_once WPML_PLUGIN_PATH . '/inc/plugins-integration.php';
activate_installer( $sitepress );
if ( ( defined( 'DOING_CRON' ) && DOING_CRON ) || is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) {
if ( $sitepress->get_setting( 'setup_complete' ) ) {
setup_admin_menus();
}
}
if ( ! empty( $sitepress_settings['automatic_redirect'] ) ) {
$wpml_browser_redirect = new WPML_Browser_Redirect( $sitepress );
$wpml_browser_redirect->init_hooks();
}
if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
/** @var wp_xmlrpc_server $wp_xmlrpc_server */
global $sitepress;
$wpml_xmlrpc = new WPML_XMLRPC( $sitepress );
$wpml_xmlrpc->init_hooks();
}
if ( $sitepress->get_wp_api()->is_admin() ) {
wpml_get_admin_notices();
}
// activation hook
register_deactivation_hook( WPML_PLUGIN_PATH . '/' . WPML_PLUGIN_FILE, 'icl_sitepress_deactivate' );
add_filter( 'plugin_action_links', 'icl_plugin_action_links', 10, 2 );
$WPML_Users_Languages_Dependencies = new WPML_Users_Languages_Dependencies( $sitepress );
function wpml_init_language_switcher() {
global $wpml_language_switcher, $sitepress;
$wpml_language_switcher = new WPML_Language_Switcher( $sitepress );
$wpml_language_switcher->init_hooks();
}
function wpml_mlo_init() {
global $sitepress, $wpdb;
$array_helper = new WPML_Multilingual_Options_Array_Helper();
$utils = new WPML_Multilingual_Options_Utils( $wpdb );
$wpml_ml_options = new WPML_Multilingual_Options( $sitepress, $array_helper, $utils );
$wpml_ml_options->init_hooks();
}
/**
* @param SitePress $sitepress
*/
function wpml_loaded( $sitepress ) {
wpml_init_language_switcher();
wpml_mlo_init();
$wpml_wp_api = $sitepress->get_wp_api();
/**
* Also allow `troubleshooting.php` and `theme-localization.php` because we have direct AJAX calls
*
* @see https://onthegosystems.myjetbrains.com/youtrack/issue/wpmlcore-5167
*/
if (
$wpml_wp_api->is_back_end()
|| $wpml_wp_api->is_core_page( 'troubleshooting.php' )
|| $wpml_wp_api->is_core_page( 'theme-localization.php' )
) {
$main_menu = new WPML_Main_Admin_Menu( $sitepress );
$main_menu->configure();
}
}
add_action( 'wpml_loaded', 'wpml_loaded' );
if ( $sitepress ) {
add_action( 'init', 'wpml_integrations_requirements' );
if ( ! $wpml_wp_api->is_front_end() ) {
$languages_ajax = new WPML_Languages_AJAX( $sitepress );
$languages_ajax->ajax_hooks();
}
}
function wpml_integrations_requirements() {
global $sitepress;
$pbr = new WPML_Integrations_Requirements( $sitepress );
$pbr->init_hooks();
}
function wpml_troubleshoot_action_load() {
global $sitepress;
$wpml_troubleshoot_action = new WPML_Troubleshoot_Action();
if ( $wpml_troubleshoot_action->is_valid_request() ) {
$wpml_troubleshoot_sync_posts_taxonomies = new WPML_Troubleshoot_Sync_Posts_Taxonomies( $sitepress, new WPML_Term_Translation_Utils( $sitepress ) );
$wpml_troubleshoot_sync_posts_taxonomies->run();
}
}
add_action( 'admin_init', 'wpml_troubleshoot_action_load' );
function wpml_init_language_cookie_settings() {
global $sitepress;
$wpml_cookie_setting = new WPML_Cookie_Setting( $sitepress );
if ( $sitepress->get_setting( 'setup_complete' ) && $sitepress->get_wp_api()->is_core_page( 'languages.php' ) ) {
$wpml_cookie_admin_scripts = new WPML_Cookie_Admin_Scripts();
$wpml_cookie_admin_scripts->enqueue();
$template_paths = array( ICL_PLUGIN_PATH . '/templates/cookie-setting' );
$twig_template = new WPML_Twig_Template_Loader( $template_paths );
$wpml_coolie_admin_ui = new WPML_Cookie_Admin_UI( $twig_template->get_template(), $wpml_cookie_setting );
$wpml_coolie_admin_ui->add_hooks();
}
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
$wpml_cookie_setting_ajax = new WPML_Cookie_Setting_Ajax( $wpml_cookie_setting );
$wpml_cookie_setting_ajax->add_hooks();
}
}
add_action( 'admin_init', 'wpml_init_language_cookie_settings' );
$wpml_whip_requirements = new WPML_Whip_Requirements();
$wpml_whip_requirements->add_hooks();
add_action( 'activated_plugin', [ 'WPML\Plugins', 'loadCoreFirst' ] );