functions.php
34 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
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
<?php
/**
* String translation common functions.
*
* @package WPML\ST
* @todo : Move the functions code to classes and keep the functions as wrappers only
*/
use WPML\ST\Gettext\Hooks;
use WPML\ST\Gettext\HooksFactory;
use function WPML\Container\make;
use WPML\Element\API\Languages;
add_action( 'plugins_loaded', 'icl_st_init' );
function icl_st_init() {
global $sitepress_settings, $sitepress, $wpdb, $icl_st_err_str, $pagenow, $authordata;
if ( empty( $sitepress_settings['setup_complete'] ) || ( $pagenow === 'site-new.php' && isset( $_REQUEST['action'] ) && 'add-site' === $_REQUEST['action'] ) ) {
return;
}
add_action( 'icl_update_active_languages', 'icl_update_string_status_all' );
add_action( 'update_option_blogname', 'icl_st_update_blogname_actions', 5, 2 );
add_action( 'update_option_blogdescription', 'icl_st_update_blogdescription_actions', 5, 2 );
if ( ! isset( $sitepress_settings['existing_content_language_verified'] ) || ! $sitepress_settings['existing_content_language_verified'] ) {
return;
}
if ( ! isset( $sitepress_settings['st']['strings_per_page'] ) ) {
$sitepress_settings['st']['strings_per_page'] = WPML_ST_DEFAULT_STRINGS_PER_PAGE;
$sitepress->save_settings( $sitepress_settings );
} elseif ( isset( $_GET['strings_per_page'] ) && $_GET['strings_per_page'] > 0 ) {
$sitepress_settings['st']['strings_per_page'] = $_GET['strings_per_page'];
$sitepress->save_settings( $sitepress_settings );
}
if ( ! isset( $sitepress_settings['st']['icl_st_auto_reg'] ) ) {
$sitepress_settings['st']['icl_st_auto_reg'] = 'disable';
$sitepress->save_settings( $sitepress_settings );
do_action( 'wpml_st_auto_register_default' );
}
if ( empty( $sitepress_settings['st']['strings_language'] ) ) {
$iclsettings['st']['strings_language'] = $sitepress_settings['st']['strings_language'] = 'en';
$sitepress->save_settings( $iclsettings );
}
if ( ! isset( $sitepress_settings['st']['translated-users'] ) ) {
$sitepress_settings['st']['translated-users'] = array();
}
// handle po file upload
new WPML_PO_Import_Strings_Scripts();
$po_import_strings = new WPML_PO_Import_Strings();
$po_import_strings->maybe_import_po_add_strings();
$icl_st_err_str = $po_import_strings->get_errors();
// handle po export
if ( isset( $_POST['icl_st_pie_e'] ) && wp_verify_nonce( $_POST['_wpnonce'], 'icl_po_export' ) ) {
// force some filters
if ( isset( $_GET['status'] ) ) {
unset( $_GET['status'] );
}
$_GET['show_results'] = 'all';
if ( $_POST['icl_st_e_context'] ) {
$_GET['context'] = filter_var( $_POST['icl_st_e_context'], FILTER_SANITIZE_STRING );
}
$_GET['translation_language'] = filter_var( $_POST['icl_st_e_language'], FILTER_SANITIZE_STRING );
$strings = icl_get_string_translations();
if ( ! empty( $strings ) ) {
$po = icl_st_generate_po_file( $strings );
} else {
$po = '';
}
if ( ! isset( $_POST['icl_st_pe_translations'] ) ) {
$popot = 'pot';
$poname = $_POST['icl_st_e_context'] ? filter_var( urlencode( $_POST['icl_st_e_context'] ), FILTER_SANITIZE_STRING ) : 'all_context';
} else {
$popot = 'po';
$poname = filter_var( $_GET['context'], FILTER_SANITIZE_STRING ) . '-' . filter_var( $_GET['translation_language'], FILTER_SANITIZE_STRING );
}
header( 'Content-Type: application/force-download' );
header( 'Content-Type: application/octet-stream' );
header( 'Content-Type: application/download' );
header( 'Content-Disposition: attachment; filename=' . $poname . '.' . $popot . ';' );
header( 'Content-Length: ' . strlen( $po ) );
echo $po;
exit( 0 );
}
/**
* @todo: Move this class to the standard hooks loader
* @var WPML_ST_Blog_Name_And_Description_Hooks $blog_name_and_desc_hooks
*/
$blog_name_and_desc_hooks = make( WPML_ST_Blog_Name_And_Description_Hooks::class );
$blog_name_and_desc_hooks->add_hooks();
add_filter( 'widget_title', 'icl_sw_filters_widget_title', 0 ); // highest priority
add_filter( 'widget_text', 'icl_sw_filters_widget_text', 0 ); // highest priority
$widget_groups = $wpdb->get_results( "SELECT option_name, option_value FROM {$wpdb->options} WHERE option_name LIKE 'widget\\_%'" );
foreach ( $widget_groups as $w ) {
add_action( 'update_option_' . $w->option_name, 'icl_st_update_widget_title_actions', 5, 2 );
}
add_action( 'update_option_widget_text', 'icl_st_update_text_widgets_actions', 5, 2 );
add_action( 'update_option_sidebars_widgets', 'wpml_st_init_register_widget_titles' );
if ( $icl_st_err_str ) {
add_action( 'admin_notices', 'icl_st_admin_notices' );
}
if ( isset( $_REQUEST['string-translated'] ) && $_REQUEST['string-translated'] == true ) {
add_action( 'admin_notices', 'icl_st_admin_notices_string_updated' );
}
$user_fields = new WPML_ST_User_Fields( $sitepress, $authordata );
$user_fields->init_hooks();
}
function wpml_st_init_register_widget_titles() {
// create a list of active widgets
$active_widgets = array();
$widgets = (array) get_option( 'sidebars_widgets' );
foreach ( $widgets as $k => $w ) {
if ( 'wp_inactive_widgets' != $k && $k != 'array_version' ) {
if ( is_array( $widgets[ $k ] ) ) {
foreach ( $widgets[ $k ] as $v ) {
$active_widgets[] = $v;
}
}
}
}
foreach ( $active_widgets as $aw ) {
$int = preg_match( '#-([0-9]+)$#i', $aw, $matches );
if ( $int ) {
$suffix = $matches[1];
} else {
$suffix = 1;
}
$name = preg_replace( '#-[0-9]+#', '', $aw );
$value = get_option( 'widget_' . $name );
if ( isset( $value[ $suffix ]['title'] ) && $value[ $suffix ]['title'] ) {
$w_title = $value[ $suffix ]['title'];
} else {
$w_title = wpml_get_default_widget_title( $aw );
$value[ $suffix ]['title'] = $w_title;
update_option( 'widget_' . $name, $value );
}
if ( $w_title ) {
icl_register_string( WPML_ST_WIDGET_STRING_DOMAIN, 'widget title - ' . md5( $w_title ), $w_title );
}
}
}
function wpml_get_default_widget_title( $id ) {
if ( preg_match( '#archives(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Archives';
} elseif ( preg_match( '#categories(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Categories';
} elseif ( preg_match( '#calendar(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Calendar';
} elseif ( preg_match( '#links(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Links';
} elseif ( preg_match( '#meta(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Meta';
} elseif ( preg_match( '#pages(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Pages';
} elseif ( preg_match( '#recent-posts(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Recent Posts';
} elseif ( preg_match( '#recent-comments(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Recent Comments';
} elseif ( preg_match( '#rss-links(-[0-9]+)?$#i', $id ) ) {
$w_title = 'RSS';
} elseif ( preg_match( '#search(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Search';
} elseif ( preg_match( '#tag-cloud(-[0-9]+)?$#i', $id ) ) {
$w_title = 'Tag Cloud';
} else {
$w_title = false;
}
return $w_title;
}
/**
* Registers a string for translation
*
* @param string|array $context The context for the string
* @param string $name A name to help the translator understand what’s being translated
* @param string|array $value The string or array value
* @param bool $allow_empty_value This param is not being used
* @param string $source_lang The language of the registered string. Defaults to 'en'
*
* @return int|false|null string_id of the just registered string or the id found in the database corresponding to the
* input parameters
* @throws \WPML\Auryn\InjectionException
*/
function icl_register_string( $context, $name, $value, $allow_empty_value = false, $source_lang = '' ) {
global $WPML_String_Translation;
if ( ! $name ) {
$name = md5( is_array( $value ) ? (string) json_encode( $value ) : $value );
}
$strings_language = $WPML_String_Translation->get_current_string_language( $name );
$admin_string_filter = $WPML_String_Translation->get_admin_string_filter( $strings_language );
if ( $admin_string_filter ) {
$string_id = $admin_string_filter->register_string( $context, $name, $value, $allow_empty_value, $source_lang );
} else {
$string_id = null;
}
/**
* Action runs after string is registered
*/
do_action( 'wpml_st_string_registered' );
return $string_id;
}
/**
* @since unknown
* @deprecated 3.2 use 'wpml_register_string_for_translation' action instead.
*/
add_filter( 'register_string_for_translation', 'icl_register_string', 10, 4 );
/**
* Registers a string for translation
*
* @api
*
* @param string $context The context for the string
* @param string $name A name to help the translator understand what’s being translated
* @param string $value The string value
* @param bool $allow_empty_value This param is not being used
* @param string $source_lang_code
*/
function wpml_register_single_string_action( $context, $name, $value, $allow_empty_value = false, $source_lang_code = '' ) {
icl_register_string( $context, $name, $value, $allow_empty_value, $source_lang_code );
}
/**
* @since 3.2
* @api
*/
add_action( 'wpml_register_single_string', 'wpml_register_single_string_action', 10, 5 );
/**
* @param string|array $context
* @param string $name
* @param bool|string $value
* @param bool $allow_empty_value
* @param null|bool $has_translation
* @param null|string $target_lang
*
* @return bool|string
*/
function icl_translate( $context, $name, $value = false, $allow_empty_value = false, &$has_translation = null, $target_lang = null ) {
static $translate_wpml_string;
if ( ! $translate_wpml_string ) {
/** @var \WPML\ST\TranslateWpmlString $translate_wpml_string */
$translate_wpml_string = \WPML\Container\make( \WPML\ST\TranslateWpmlString::class );
$translate_wpml_string->init();
}
return $translate_wpml_string->translate( $context, $name, $value, $allow_empty_value, $has_translation, $target_lang );
}
/**
* @return bool
*/
function wpml_st_is_requested_blog() {
return ! ( is_multisite() && ms_is_switched() )
|| (int) $GLOBALS['blog_id'] === (int) end( $GLOBALS['_wp_switched_stack'] );
}
/**
* @param string $value
* @param mixed $context
* @param string $name
*
* @return string
*/
function wpml_get_string_current_translation( $value, $context, $name ) {
$string_id = icl_get_string_id( $value, $context, $name );
/** @var WPML_String_Translation $WPML_String_Translation */
global $WPML_String_Translation;
$current_lang = $WPML_String_Translation->get_current_string_language( $name );
$translation = icl_get_string_by_id( $string_id, $current_lang );
$value = $translation ? $translation : $value;
return $value;
}
function icl_st_is_registered_string( $context, $name ) {
global $wpdb;
static $cache = array();
if ( isset( $cache[ $context ][ $name ] ) ) {
$string_id = $cache[ $context ][ $name ];
} else {
$string_id = $wpdb->get_var(
$wpdb->prepare(
"
SELECT id
FROM {$wpdb->prefix}icl_strings
WHERE context = %s
AND name = %s
LIMIT 1",
$context,
$name
)
);
$cache[ $context ][ $name ] = $string_id;
}
return $string_id;
}
function icl_st_string_has_translations( $context, $name ) {
global $wpdb;
$sql = $wpdb->prepare(
"
SELECT COUNT(st.id)
FROM {$wpdb->prefix}icl_string_translations st
JOIN {$wpdb->prefix}icl_strings s ON s.id=st.string_id
WHERE s.context = %s AND s.name = %s",
$context,
$name
);
return $wpdb->get_var( $sql );
}
function icl_update_string_status( $string_id ) {
global $wpdb;
$string = new WPML_ST_String( $string_id, $wpdb );
return $string->update_status();
}
function icl_update_string_status_all() {
global $wpdb, $sitepress;
$updater = new WPML_ST_Bulk_Update_Strings_Status( $wpdb, array_keys( $sitepress->get_active_languages() ) );
$updater->run();
}
/**
* @param string $context
* @param string $name
*/
function icl_unregister_string( $context, $name ) {
global $wpdb;
$string_id = $wpdb->get_var(
$wpdb->prepare(
"
SELECT id FROM {$wpdb->prefix}icl_strings
WHERE context=%s AND name=%s
",
$context,
$name
)
);
if ( $string_id ) {
/**
* This action is is fired before several strings are deleted at once.
*
* @param array $string_ids Here containing only the single string that is deleted.
*
* @since 3.0.0
*/
do_action( 'wpml_st_before_remove_strings', [ $string_id ] );
$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}icl_strings WHERE id=%d", $string_id ) );
$wpdb->query(
$wpdb->prepare(
"DELETE FROM {$wpdb->prefix}icl_string_translations WHERE string_id=%d",
$string_id
)
);
$wpdb->query(
$wpdb->prepare(
"DELETE FROM {$wpdb->prefix}icl_string_positions WHERE string_id=%d",
$string_id
)
);
}
/**
* Action that fires after string is unregistered
*/
do_action( 'wpml_st_string_unregistered' );
/**
* This action is is fired when a string is deleted.
*
* @param array $string_id
*/
do_action( 'icl_st_unregister_string', $string_id );
}
/**
* @param array $string_ids
*/
function wpml_unregister_string_multi( array $string_ids ) {
global $wpdb;
/**
* This action is is fired before several strings are deleted at once.
*
* @param array $string_ids
*
* @since 3.0.0
*/
do_action( 'wpml_st_before_remove_strings', $string_ids );
$str = wpml_prepare_in( $string_ids, '%d' );
$wpdb->query(
"
DELETE s.*, t.* FROM {$wpdb->prefix}icl_strings s
LEFT JOIN {$wpdb->prefix}icl_string_translations t ON s.id = t.string_id
WHERE s.id IN ({$str})
"
);
$wpdb->query( "DELETE FROM {$wpdb->prefix}icl_string_positions WHERE string_id IN ({$str})" );
/**
* This action is fired when several strings are deleted at once.
*
* @param array $string_ids
*/
do_action( 'icl_st_unregister_string_multi', $string_ids );
/**
* Action that fires after strings are unregistered
*/
do_action( 'wpml_st_string_unregistered' );
}
/**
* @since unknown
* @deprecated 3.2 use 'wpml_translate_string' filter instead.
*/
function translate_string_filter( $original_value, $context, $name, $has_translation = null, $disable_auto_register = false, $language_code = null ) {
return icl_t( $context, $name, $original_value, $has_translation, $disable_auto_register, $language_code );
}
/**
* @since unknown
* @deprecated 3.2 use 'wpml_translate_single_string' filter instead.
*/
add_filter( 'translate_string', 'translate_string_filter', 10, 5 );
/**
* Retrieve a string translation
* Looks for a string with matching $context and $name.
* If it finds it, it looks for translation in the current language or the language specified
* If a translation exists, it will return it. Otherwise, it will return the original string.
*
* @api
*
* @param string|bool $original_value The string's original value
* @param string $context The string's registered context
* @param string $name The string's registered name
* @param null|string $language_code Return the translation in this language
* Default is NULL which returns the current language
* @param bool|null $has_translation Currently unused. Defaults to NULL
*
* @return string
*/
function wpml_translate_single_string_filter( $original_value, $context, $name, $language_code = null, $has_translation = null ) {
$result = $original_value;
if ( is_string( $name ) ) {
$result = icl_translate( $context, $name, $original_value, false, $has_translation, $language_code );
}
return $result;
}
/**
* @api
* @since 3.2
*/
add_filter( 'wpml_translate_single_string', 'wpml_translate_single_string_filter', 10, 5 );
/**
* Retrieve a string translation
* Looks for a string with matching $context and $name.
* If it finds it, it looks for translation in the current language or the language specified
* If a translation exists, it will return it. Otherwise, it will return the original string.
*
* @param string|bool $original_value The string's original value
* @param string $context The string's registered context
* @param string $name The string's registered name
* @param bool|null $has_translation Currently unused. Defaults to NULL
* @param bool $disable_auto_register Currently unused. Set to false in calling icl_translate
* @param null|string $language_code Return the translation in this language
* Default is NULL which returns the current language
*
* @return string
*/
function icl_t( $context, $name, $original_value = false, &$has_translation = null, $disable_auto_register = false, $language_code = null ) {
return icl_translate( $context, $name, $original_value, false, $has_translation, $language_code );
}
/**
* @deprecated since WPML ST 3.0.0
*
* @param string $name
*
* @return bool
*/
function is_translated_admin_string( $name ) {
return WPML_ST_Blog_Name_And_Description_Hooks::is_string( $name );
}
/**
* Helper function for icl_t()
*
* @param array $result
* @param string $original_value
* @return boolean
*/
function _icl_is_string_change( $result, $original_value ) {
if ( $result == false ) {
return false;
}
if ( ! isset( $result['value'] ) ) {
return false;
}
return (
$result['translated'] && $result['original'] != $original_value ||
! $result['translated'] && $result['value'] != $original_value
);
}
function icl_add_string_translation( $string_id, $language, $value = null, $status = false, $translator_id = null, $translation_service = null, $batch_id = null ) {
global $wpdb;
$string = new WPML_ST_String( $string_id, $wpdb );
$translated_string_id = $string->set_translation( $language, $value, $status, $translator_id, $translation_service, $batch_id );
return $translated_string_id;
}
/**
* Updates the string translation for an admin option
*
* @global SitePress $sitepress
* @global WPML_String_Translation $WPML_String_Translation
*
* @param string $option_name
* @param string $language
* @param string $new_value
* @param int|bool $status
* @param int $translator_id
*
* @return boolean|mixed
*/
function icl_update_string_translation(
$option_name,
$language,
$new_value = null,
$status = false,
$translator_id = null
) {
/** @var WPML_String_Translation $WPML_String_Translation */
global $WPML_String_Translation;
return $WPML_String_Translation->get_admin_option( $option_name, $language )
->update_option(
'',
$new_value,
$status,
$translator_id,
0
);
}
/**
* @param string $string
* @param string $context
* @param string|false $name
*
* @return int
* @throws \WPML\Auryn\InjectionException
*/
function icl_get_string_id( $string, $context, $name = false ) {
return WPML\Container\make( 'WPML_ST_String_Factory' )->get_string_id( $string, $context, $name );
}
function icl_get_string_translations() {
global $sitepress, $wpdb, $wp_query;
$WPML_ST_Strings = new WPML_ST_Strings( $sitepress, $wpdb, $wp_query );
return $WPML_ST_Strings->get_string_translations();
}
/** *
*
* @param int $string_id ID of string in icl_strings DB table
* @param string|false $language_code false, or language code
*
* @return string|false
*/
function icl_get_string_by_id( $string_id, $language_code = false ) {
global $wpdb, $sitepress_settings;
$result = $wpdb->get_row(
$wpdb->prepare(
"SELECT value, language FROM {$wpdb->prefix}icl_strings WHERE id=%d",
$string_id
)
);
if ( $result && ( ! $language_code || $language_code === $result->language ) ) {
return $result->value;
}
if ( ! $language_code ) {
if ( isset( $sitepress_settings['st']['strings_language'] ) ) {
$language_code = $sitepress_settings['st']['strings_language'];
} else {
return false;
}
}
$translations = icl_get_string_translations_by_id( $string_id );
if ( isset( $translations[ $language_code ] ) ) {
return $translations[ $language_code ]['value'];
}
return false;
}
function icl_get_string_translations_by_id( $string_id ) {
global $wpdb;
$found = false;
$translations = WPML_Non_Persistent_Cache::get( $string_id, 'icl_get_string_translations_by_id', $found );
if ( ! $found ) {
$translations = array();
if ( $string_id ) {
$results = $wpdb->get_results( $wpdb->prepare( "SELECT language, value, status FROM {$wpdb->prefix}icl_string_translations WHERE string_id=%d", $string_id ) );
foreach ( $results as $row ) {
$translations[ $row->language ] = array(
'value' => $row->value,
'status' => $row->status,
);
}
}
WPML_Non_Persistent_Cache::set( $string_id, $translations, 'icl_get_string_translations_by_id' );
}
return $translations;
}
/**
* @param array<string,mixed> $string_translations
*
* @return string[]
*/
function icl_get_strings_tracked_in_pages( $string_translations ) {
global $wpdb;
// get string position in page - if found
$found_strings = $strings_in_page = array();
foreach ( array_keys( (array) $string_translations ) as $string_id ) {
$found_strings[] = $string_id;
}
if ( $found_strings ) {
$res = $wpdb->get_results(
"
SELECT kind, string_id FROM {$wpdb->prefix}icl_string_positions
WHERE string_id IN (" . wpml_prepare_in( $found_strings, '%d' ) . ')'
);
foreach ( $res as $row ) {
$strings_in_page[ $row->kind ][ $row->string_id ] = true;
}
}
return $strings_in_page;
}
function icl_sw_filters_widget_title( $val ) {
$val = icl_translate( WPML_ST_WIDGET_STRING_DOMAIN, 'widget title - ' . md5( $val ), $val );
return $val;
}
function icl_sw_filters_widget_text( $val ) {
$val = icl_translate( WPML_ST_WIDGET_STRING_DOMAIN, 'widget body - ' . md5( $val ), $val );
return $val;
}
/**
* @param string $translation String This parameter is not important to the filter since we filter before other filters.
* @param string $text
* @param string|array $domain
* @param bool|string $name
*
* @return string
* @throws \WPML\Auryn\InjectionException
* @deprecated since WPML ST 3.0.0
*
*/
function icl_sw_filters_gettext( $translation, $text, $domain, $name = false ) {
static $gettext_hooks;
if ( null === $gettext_hooks ) {
$factory = WPML\Container\make( HooksFactory::class );
$gettext_hooks = $factory->create();
$gettext_hooks = $gettext_hooks ?: false;
}
return $gettext_hooks ? $gettext_hooks->gettext_filter( $translation, $text, $domain, $name ) : $translation;
}
/**
* @return bool
* @throws \WPML\Auryn\InjectionException
* @deprecated since WPML ST 3.0.0
*
*/
function icl_sw_must_track_strings() {
/** @var \WPML\ST\Gettext\Hooks $gettext_hooks */
$gettext_hooks = WPML\Container\make( Hooks::class );
if ( method_exists( $gettext_hooks, 'must_track_strings' ) ) {
return $gettext_hooks->must_track_strings();
}
return false;
}
function icl_st_track_string( $text, $domain, $kind = ICL_STRING_TRANSLATION_STRING_TRACKING_TYPE_PAGE ) {
if ( is_multisite() && ms_is_switched() ) {
return;
}
require_once dirname( __FILE__ ) . '/gettext/wpml-string-scanner.class.php';
static $string_scanner = null;
if ( ! $string_scanner ) {
try {
$wp_filesystem = wpml_get_filesystem_direct();
$string_scanner = new WPML_String_Scanner( $wp_filesystem, new WPML_ST_File_Hashing() );
} catch ( Exception $e ) {
trigger_error( $e->getMessage(), E_USER_WARNING );
}
}
if ( $string_scanner ) {
$string_scanner->track_string( $text, $domain, $kind );
}
}
/**
* @param string $translation
* @param string $text
* @param string $_gettext_context
* @param string $domain
*
* @return string
* @throws \WPML\Auryn\InjectionException
* @deprecated since WPML ST 3.0.0
*
*/
function icl_sw_filters_gettext_with_context( $translation, $text, $_gettext_context, $domain ) {
if ( $_gettext_context ) {
return icl_sw_filters_gettext(
$translation,
$text,
array(
'domain' => $domain,
'context' => $_gettext_context,
)
);
} else {
return icl_sw_filters_gettext( $translation, $text, $domain );
}
}
/**
* @param string $translation
* @param string $single
* @param string $plural
* @param string|int $number
* @param string $domain
* @param string $_gettext_context
*
* @return string
* @throws \WPML\Auryn\InjectionException
* @deprecated since WPML ST 3.0.0
*
*/
function icl_sw_filters_ngettext( $translation, $single, $plural, $number, $domain, $_gettext_context ) {
if ( $number == 1 ) {
return icl_sw_filters_gettext_with_context( $translation, $single, $_gettext_context, $domain );
} else {
return icl_sw_filters_gettext_with_context( $translation, $plural, $_gettext_context, $domain );
}
}
/**
* @param string $translation
* @param string $single
* @param string $plural
* @param string $number
* @param string $_gettext_context
* @param string $domain
*
* @return string
* @throws \WPML\Auryn\InjectionException
* @deprecated since WPML ST 3.0.0
*
*/
function icl_sw_filters_nxgettext( $translation, $single, $plural, $number, $_gettext_context, $domain ) {
return icl_sw_filters_ngettext( $translation, $single, $plural, $number, $domain, $_gettext_context );
}
/**
* @return array Translated User IDs
*/
function icl_st_register_user_strings_all() {
global $sitepress, $authordata;
$wpml_translated_users = new WPML_ST_User_Fields( $sitepress, $authordata );
$processedIds = $wpml_translated_users->init_register_strings();
/**
* Actions runs after user strings are registered
*/
do_action( 'wpml_st_string_registered' );
return $processedIds;
}
function icl_st_update_string_actions( $context, $name, $old_value, $new_value, $force_complete = false ) {
if ( class_exists( 'WPML_WPDB_User' ) ) {
global $wpdb;
require_once dirname( __FILE__ ) . '/wpml-st-string-update.class.php';
$string_update = new WPML_ST_String_Update( $wpdb );
$string_update->update_string( $context, $name, $old_value, $new_value, $force_complete );
/**
* Action that runs after registered strings are updated
*/
do_action( 'wpml_st_string_updated' );
}
}
/**
* @param array<string,mixed> $old_options
* @param array<string,mixed> $new_options
*
* @throws \WPML\Auryn\InjectionException
*/
function icl_st_update_widget_title_actions( $old_options, $new_options ) {
if ( isset( $new_options['title'] ) ) { // case of 1 instance only widgets
$buf = $new_options;
unset( $new_options );
$new_options[0] = $buf;
unset( $buf );
$buf = $old_options;
unset( $old_options );
$old_options[0] = $buf;
unset( $buf );
}
$defaultLang = Languages::getDefaultCode();
foreach ( $new_options as $k => $o ) {
if ( isset( $o['title'] ) ) {
if ( isset( $old_options[ $k ]['title'] ) && $old_options[ $k ]['title'] ) {
icl_st_update_string_actions( WPML_ST_WIDGET_STRING_DOMAIN, 'widget title - ' . md5( $old_options[ $k ]['title'] ), $old_options[ $k ]['title'], $o['title'] );
} else {
if ( $new_options[ $k ]['title'] ) {
icl_register_string( WPML_ST_WIDGET_STRING_DOMAIN, 'widget title - ' . md5( $new_options[ $k ]['title'] ), $new_options[ $k ]['title'], false, $defaultLang );
}
}
}
}
}
/**
* @param array<string,mixed> $old_options
* @param array<string,mixed> $new_options
*
* @throws \WPML\Auryn\InjectionException
*/
function icl_st_update_text_widgets_actions( $old_options, $new_options ) {
global $wpdb;
// remove filter for showing permalinks instead of sticky links while saving
$GLOBALS['__disable_absolute_links_permalink_filter'] = 1;
$widget_text = get_option( 'widget_text' );
if ( is_array( $widget_text ) ) {
$defaultLang = Languages::getDefaultCode();
foreach ( $widget_text as $k => $w ) {
if ( isset( $old_options[ $k ]['text'] ) && trim( $old_options[ $k ]['text'] ) && $old_options[ $k ]['text'] != $w['text'] ) {
$old_md5 = md5( $old_options[ $k ]['text'] );
$string = $wpdb->get_row( $wpdb->prepare( "SELECT id, value, status FROM {$wpdb->prefix}icl_strings WHERE context=%s AND name=%s", WPML_ST_WIDGET_STRING_DOMAIN, 'widget body - ' . $old_md5 ) );
if ( $string ) {
icl_st_update_string_actions( WPML_ST_WIDGET_STRING_DOMAIN, 'widget body - ' . $old_md5, $old_options[ $k ]['text'], $w['text'] );
} else {
icl_register_string( WPML_ST_WIDGET_STRING_DOMAIN, 'widget body - ' . md5( $w['text'] ), $w['text'], false, $defaultLang );
}
} elseif ( isset( $new_options[ $k ]['text'] ) && ( ! isset( $old_options[ $k ]['text'] ) || $old_options[ $k ]['text'] != $new_options[ $k ]['text'] ) ) {
icl_register_string( WPML_ST_WIDGET_STRING_DOMAIN, 'widget body - ' . md5( $new_options[ $k ]['text'] ), $new_options[ $k ]['text'], false, $defaultLang );
}
}
}
// add back the filter for showing permalinks instead of sticky links after saving
unset( $GLOBALS['__disable_absolute_links_permalink_filter'] );
}
function icl_st_get_contexts( $status ) {
global $sitepress, $wpdb, $wp_query;
$wpml_strings = new WPML_ST_Strings( $sitepress, $wpdb, $wp_query );
return $wpml_strings->get_per_domain_counts( $status );
}
function icl_st_admin_notices() {
global $icl_st_err_str;
if ( $icl_st_err_str ) {
echo '<div class="error"><p>' . $icl_st_err_str . '</p></div>';
}
}
function icl_st_generate_po_file( $strings ) {
require_once WPML_ST_PATH . '/inc/gettext/wpml-po-parser.class.php';
$po = WPML_PO_Parser::create_po( $strings );
return $po;
}
function _icl_st_get_options_writes( $path ) {
static $found_writes = array();
if ( is_dir( $path ) ) {
$dh = opendir( $path );
if ( ! $dh ) {
return $found_writes;
}
while ( $file = readdir( $dh ) ) {
if ( $file == '.' || $file == '..' ) {
continue;
}
if ( is_dir( $path . '/' . $file ) ) {
_icl_st_get_options_writes( $path . '/' . $file );
} elseif ( preg_match( '#(\.php|\.inc)$#i', $file ) ) {
$content = (string) file_get_contents( $path . '/' . $file );
$int = preg_match_all( '#(add|update)_option\(([^,]+),([^)]+)\)#im', $content, $matches );
if ( $int ) {
foreach ( $matches[2] as $m ) {
$option_name = trim( $m );
if ( 0 === strpos( $option_name, '"' ) || 0 === strpos( $option_name, "'" ) ) {
$option_name = trim( $option_name, "\"'" );
} elseif ( false === strpos( $option_name, '$' ) ) {
if ( false !== strpos( $option_name, '::' ) ) {
$cexp = explode( '::', $option_name );
if ( class_exists( $cexp[0] ) ) {
if ( defined( $cexp[0] . '::' . $cexp[1] ) ) {
$option_name = constant( $cexp[0] . '::' . $cexp[1] );
}
}
} else {
if ( defined( $option_name ) ) {
$option_name = constant( $option_name );
}
}
} else {
$option_name = false;
}
if ( $option_name ) {
$found_writes[] = $option_name;
}
}
}
}
}
}
return $found_writes;
}
if ( ! function_exists( 'array_unique_recursive' ) ) {
function array_unique_recursive( $array ) {
$scalars = array();
foreach ( $array as $key => $value ) {
if ( is_scalar( $value ) ) {
if ( isset( $scalars[ $value ] ) ) {
unset( $array[ $key ] );
} else {
$scalars[ $value ] = true;
}
} elseif ( is_array( $value ) ) {
$array[ $key ] = array_unique_recursive( $value );
}
}
return $array;
}
}
function _icl_st_filter_empty_options_out( $array ) {
$empty_found = false;
foreach ( $array as $k => $v ) {
if ( is_array( $v ) && ! empty( $v ) ) {
list($array[ $k ], $empty_found) = _icl_st_filter_empty_options_out( $v );
} else {
if ( empty( $v ) ) {
unset( $array[ $k ] );
$empty_found = true;
}
}
}
return array( $array, $empty_found );
}
function wpml_register_admin_strings( $serialized_array ) {
try {
wpml_st_load_admin_texts()->icl_register_admin_options( unserialize( $serialized_array ) );
} catch ( Exception $e ) {
trigger_error( $e->getMessage(), E_USER_WARNING );
}
}
function icl_is_string_translation( $translation ) {
// determine if the $translation data is for string translation.
foreach ( $translation as $key => $value ) {
if ( $key == 'body' or $key == 'title' ) {
return false;
}
if ( preg_match( '/string-(.*)/', $key ) ) {
return true;
}
}
// if we get here assume it's not a string.
return false;
}
function icl_translation_add_string_translation( $rid, $translation, $lang_code ) {
global $wpdb;
foreach ( $translation as $key => $value ) {
if ( preg_match( '/string-(.*)/', $key, $match ) ) {
$string_id = $match[1];
$string_translation_id = $wpdb->get_var(
$wpdb->prepare(
"SELECT id
FROM {$wpdb->prefix}icl_string_translations
WHERE string_id=%d AND language=%s",
$string_id,
$lang_code
)
);
$md5_when_sent = $wpdb->get_var(
$wpdb->prepare(
" SELECT md5
FROM {$wpdb->prefix}icl_string_status
WHERE rid=%d AND string_translation_id=%d",
$rid,
$string_translation_id
)
);
$current_string_value = $wpdb->get_var(
$wpdb->prepare(
" SELECT value
FROM {$wpdb->prefix}icl_strings
WHERE id=%d",
$string_id
)
);
if ( $md5_when_sent == md5( $current_string_value ) ) {
$status = ICL_TM_COMPLETE;
} else {
$status = ICL_TM_NEEDS_UPDATE;
}
$value = str_replace( '�A;', "\n", $value );
icl_add_string_translation( $string_id, $lang_code, html_entity_decode( $value ), $status );
}
}
return true;
}
function icl_st_admin_notices_string_updated() {
?>
<div class="updated">
<p><?php _e( 'Strings translations updated', 'wpml-string-translation' ); ?></p>
</div>
<?php
}
/**
* @param string $path
*
* @return bool
*/
function wpml_st_file_path_is_valid( $path ) {
return (bool) ( validate_file( $path ) === 0 || validate_file( $path ) === 2 );
}
/**
* @param string|array $context
*
* @return array
*/
function wpml_st_extract_context_parameters( $context ) {
if ( is_array( $context ) ) {
$domain = isset( $context['domain'] ) ? $context['domain'] : '';
$gettext_context = isset( $context['context'] ) ? $context['context'] : '';
} else {
$domain = $context;
$gettext_context = '';
}
return array( $domain, $gettext_context );
}