wpml.php
8 KB
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
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! class_exists( 'ACF_WPML_Compatibility' ) ) :
class ACF_WPML_Compatibility {
/**
* __construct
*
* Sets up the class functionality.
*
* @date 23/06/12
* @since 3.1.8
*
* @param void
* @return void
*/
function __construct() {
// global
global $sitepress;
// update settings
acf_update_setting( 'default_language', $sitepress->get_default_language() );
acf_update_setting( 'current_language', $sitepress->get_current_language() );
// localize data
acf_localize_data(
array(
'language' => $sitepress->get_current_language(),
)
);
// switch lang during AJAX action
add_action( 'acf/verify_ajax', array( $this, 'verify_ajax' ) );
// prevent 'acf-field' from being translated
add_filter( 'get_translatable_documents', array( $this, 'get_translatable_documents' ) );
// check if 'acf-field-group' is translatable
if ( $this->is_translatable() ) {
// actions
add_action( 'acf/upgrade_500_field_group', array( $this, 'upgrade_500_field_group' ), 10, 2 );
add_action( 'icl_make_duplicate', array( $this, 'icl_make_duplicate' ), 10, 4 );
// filters
add_filter( 'acf/settings/save_json', array( $this, 'settings_save_json' ) );
add_filter( 'acf/settings/load_json', array( $this, 'settings_load_json' ) );
}
}
/**
* is_translatable
*
* Returns true if the acf-field-group post type is translatable.
* Also adds compatibility with ACF4 settings
*
* @date 10/04/2015
* @since 5.2.3
*
* @param void
* @return boolean
*/
function is_translatable() {
// global
global $sitepress;
// vars
$post_types = $sitepress->get_setting( 'custom_posts_sync_option' );
// return false if no post types
if ( ! acf_is_array( $post_types ) ) {
return false;
}
// prevent 'acf-field' from being translated
if ( ! empty( $post_types['acf-field'] ) ) {
$post_types['acf-field'] = 0;
$sitepress->set_setting( 'custom_posts_sync_option', $post_types );
}
// when upgrading to version 5, review 'acf' setting
// update 'acf-field-group' if 'acf' is translatable, and 'acf-field-group' does not yet exist
if ( ! empty( $post_types['acf'] ) && ! isset( $post_types['acf-field-group'] ) ) {
$post_types['acf-field-group'] = 1;
$sitepress->set_setting( 'custom_posts_sync_option', $post_types );
}
// return true if acf-field-group is translatable
if ( ! empty( $post_types['acf-field-group'] ) ) {
return true;
}
// return
return false;
}
/**
* upgrade_500_field_group
*
* Update the icl_translations table data when creating the field groups.
*
* @date 10/04/2015
* @since 5.2.3
*
* @param array $field_group The new field group array.
* @param object $ofg The old field group WP_Post object.
* @return void
*/
function upgrade_500_field_group( $field_group, $ofg ) {
// global
global $wpdb;
// get translation rows (old acf4 and new acf5)
$old_row = $wpdb->get_row(
$wpdb->prepare(
"SELECT * FROM {$wpdb->prefix}icl_translations WHERE element_type=%s AND element_id=%d",
'post_acf',
$ofg->ID
),
ARRAY_A
);
$new_row = $wpdb->get_row(
$wpdb->prepare(
"SELECT * FROM {$wpdb->prefix}icl_translations WHERE element_type=%s AND element_id=%d",
'post_acf-field-group',
$field_group['ID']
),
ARRAY_A
);
// bail early if no rows
if ( ! $old_row || ! $new_row ) {
return;
}
// create reference of old trid to new trid
// trid is a simple int used to find associated objects
if ( empty( $this->trid_ref ) ) {
$this->trid_ref = array();
}
// update trid
if ( isset( $this->trid_ref[ $old_row['trid'] ] ) ) {
// this field group is a translation of another, update it's trid to match the previously inserted group
$new_row['trid'] = $this->trid_ref[ $old_row['trid'] ];
} else {
// this field group is the first of it's translations, update the reference for future groups
$this->trid_ref[ $old_row['trid'] ] = $new_row['trid'];
}
// update icl_translations
// Row is created by WPML, and much easier to tweak it here due to the very complicated and nonsensical WPML logic
$table = "{$wpdb->prefix}icl_translations";
$data = array(
'trid' => $new_row['trid'],
'language_code' => $old_row['language_code'],
);
$where = array( 'translation_id' => $new_row['translation_id'] );
$data_format = array( '%d', '%s' );
$where_format = array( '%d' );
// allow source_language_code to equal NULL
if ( $old_row['source_language_code'] ) {
$data['source_language_code'] = $old_row['source_language_code'];
$data_format[] = '%s';
}
// update wpdb
$result = $wpdb->update( $table, $data, $where, $data_format, $where_format );
}
/**
* settings_save_json
*
* Modifies the json path.
*
* @date 19/05/2014
* @since 5.0.0
*
* @param string $path The json save path.
* @return string
*/
function settings_save_json( $path ) {
// bail early if dir does not exist
if ( ! wp_is_writable( $path ) ) {
return $path;
}
// ammend
$path = untrailingslashit( $path ) . '/' . acf_get_setting( 'current_language' );
// make dir if does not exist
if ( ! file_exists( $path ) ) {
mkdir( $path, 0777, true ); //phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_mkdir -- Allow legacy mkdir call as this may fire outside admin.
}
// return
return $path;
}
/**
* settings_load_json
*
* Modifies the json path.
*
* @date 19/05/2014
* @since 5.0.0
*
* @param string $path The json save path.
* @return string
*/
function settings_load_json( $paths ) {
// loop
if ( $paths ) {
foreach ( $paths as $i => $path ) {
$paths[ $i ] = untrailingslashit( $path ) . '/' . acf_get_setting( 'current_language' );
}
}
// return
return $paths;
}
/**
* icl_make_duplicate
*
* description
*
* @date 26/02/2014
* @since 5.0.0
*
* @param void
* @return void
*/
function icl_make_duplicate( $master_post_id, $lang, $postarr, $id ) {
// bail early if not acf-field-group
if ( $postarr['post_type'] != 'acf-field-group' ) {
return;
}
// update the lang
acf_update_setting( 'current_language', $lang );
// duplicate field group specifying the $post_id
acf_duplicate_field_group( $master_post_id, $id );
// always translate independately to avoid many many bugs!
// - translation post gets a new key (post_name) when origional post is saved
// - local json creates new files due to changed key
global $iclTranslationManagement;
$iclTranslationManagement->reset_duplicate_flag( $id );
}
/**
* verify_ajax
*
* Sets the correct language during AJAX requests.
*
* @type function
* @date 7/08/2015
* @since 5.2.3
*
* @param void
* @return void
*/
function verify_ajax() {
// phpcs:disable WordPress.Security.NonceVerification.Recommended -- Verified elsewhere.
// set the language for this AJAX request
// this will allow get_posts to work as expected (load posts from the correct language)
if ( isset( $_REQUEST['lang'] ) ) {
global $sitepress;
$sitepress->switch_lang( sanitize_text_field( $_REQUEST['lang'] ) );
}
// phpcs:enable WordPress.Security.NonceVerification.Recommended
}
/**
* get_translatable_documents
*
* Removes 'acf-field' from the available post types for translation.
*
* @type function
* @date 17/8/17
* @since 5.6.0
*
* @param array $icl_post_types The array of post types.
* @return array
*/
function get_translatable_documents( $icl_post_types ) {
// unset
unset( $icl_post_types['acf-field'] );
// return
return $icl_post_types;
}
}
acf_new_instance( 'ACF_WPML_Compatibility' );
endif; // class_exists check