forked from Pluxopolis/plxMyMultiLingue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plxMyMultiLingue.php
executable file
·1251 lines (1152 loc) · 48.5 KB
/
plxMyMultiLingue.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
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
<?php if (!defined('PLX_ROOT')) exit;
/**
* Plugin plxMyMultiLingue 0.9.0
* @author Stephane F, Thomas Ingles
**/
class plxMyMultiLingue extends plxPlugin {
# tableau contenant la liste des langues gérées
public $aLangs = array();
# langue courante pour savoir dans quel dossier aller chercher les données dans le dossier data
public $lang = '';
/**
* Constructeur de la classe
* @param default_lang langue par défaut
* @return stdio
* @author Stephane F, Thomas Ingles
**/
public function __construct($default_lang) {
$this->lang = $default_lang;
# recherche de la langue par défaut de PluXml
if(!isset($_SESSION['default_lang'])) {
$file = file_get_contents(path('XMLFILE_PARAMETERS'));
preg_match('~name="default_lang"><!\[CDATA\[([^\]]+)~',$file,$lang);
if(empty($lang))#Fix next gen
preg_match('~name="default_lang">([^<]+)~',$file,$lang);#fix config base of pluxml : on save param default lang change to present lang
$_SESSION['default_lang'] = empty($lang[1]) ? $default_lang : $lang[1];
$_SESSION['data_lang'] = $_SESSION['default_lang'];
//~ var_dump('Location: ' . $_SERVER['REQUEST_URI']);#Fix? Next gen Logon : langues des plugins = default_lang
//~ exit;
}
#===============================
# traitement coté administration
#===============================
if(defined('PLX_ADMIN')) {
if(isset($_GET['lang']) AND !empty($_GET['lang'])) {# Changer de langue
# Fix next gen, if have unloaded params a this time '' === $this->getParam('user_lang')???
if(empty($this->plug)) {
$this->plug = array(
'dir' => PLX_PLUGINS,
'name' => __CLASS__,
'filename' => PLX_PLUGINS.__CLASS__.'/'.__CLASS__.'.php',
'parameters.xml'=> PLX_ROOT.PLX_CONFIG_PATH.'plugins/'.__CLASS__.'.xml',
'infos.xml' => PLX_PLUGINS.__CLASS__.'/infos.xml'
);
$this->loadParams();
}
$this->lang = $_GET['lang'];
$_SESSION['data_lang'] = $this->lang;
if(!$this->getParam('user_lang')) {#fix change realy (plugin & more)
$_SESSION['admin_lang'] = $this->lang;
}
# Remove lang=fr[&] before redirect
$redirect = preg_replace('~lang='.$this->lang.'&?~', '', $_SERVER['REQUEST_URI']);
# Réinitialisation des dossiers pour le gestionnaire de médias
unset($_SESSION['medias']);
unset($_SESSION['folder']);
unset($_SESSION['currentfolder']);
header('Location: '.rtrim($redirect, '?'));#Fix Remove "?" at end if alone
exit;
}
elseif(isset($_SESSION['data_lang']))
$this->lang = $_SESSION['data_lang'];
else
$this->lang = $_SESSION['default_lang'];
}
#=========================
# traitement coté visiteur
#=========================
else {
# sitemap
if(strpos($_SERVER['REQUEST_URI'], 'sitemap.php') !== false)
$get = basename($_SERVER['REQUEST_URI']);#sitemap.php ou (ln)?
else# index & feed
$get = plxUtils::getGets();
if(strlen($get) == 2 and !is_numeric($get))#2 letter
$this->lang = strtolower($get);
elseif(isset($get[2]) and $get[2] ==='/' and !is_numeric($get[0].$get[1]))
$this->lang = strtolower($get[0].$get[1]);
else
$this->lang = $_SESSION['default_lang'];
}
# appel du constructeur de la classe plxPlugin (obligatoire)
//~ parent::__construct($this->lang);
parent::__construct($default_lang);
# validation de la langue courante
$this->validateLang();
# droits pour accéder à la page config.php du plugin
$this->setConfigProfil(PROFIL_ADMIN);
# PLX_MYMULTILINGUE contient la liste des langues et la langue courante - pour être utilisé par d'autres plugins
if(!defined('PLX_MYMULTILINGUE'))
define('PLX_MYMULTILINGUE', serialize(array('langs' => $this->getParam('flags'), 'lang' => $this->lang)));
if(!defined('PLX_ADMIN'))# AND !$this->getParam('user_lang')
$_SESSION['lang'] = $this->lang;
#====================================================
# déclaration des hooks communs frontend et backend
#====================================================
# core/lib/class.plx.motor.php
$this->addHook('plxMotorConstructLoadPlugins', 'ConstructLoadPlugins');
$this->addHook('plxMotorPreChauffageBegin', 'PreChauffageBegin');
$this->addHook('plxMotorDemarrageEnd', 'plxMotorDemarrageEnd');
$this->addHook('plxMotorDemarrageNewCommentaire', 'plxMotorDemarrageNewCommentaire');
$this->addHook('plxMotorGetStatiques', 'plxMotorGetStatiques');
$this->addHook('plxMotorParseArticle', 'plxMotorParseArticle');
$this->addHook('plxMotorRedir301', 'plxMotorRedir301');
#=====================================================
# Déclaration des hooks pour la zone d'administration
#=====================================================
if(defined('PLX_ADMIN')) {
# core/lib/class.plx.admin.php
$this->addHook('plxAdminEditConfiguration', 'plxAdminEditConfiguration');
$this->addHook('plxAdminEditStatiquesUpdate', 'plxAdminEditStatiquesUpdate');
$this->addHook('plxAdminEditStatiquesXml', 'plxAdminEditStatiquesXml');
$this->addHook('plxAdminEditArticleXml', 'plxAdminEditArticleXml');
$this->addHook('plxAdminEditStatique', 'plxAdminEditStatique');
# core/admin/top.php
$this->addHook('AdminTopEndHead', 'AdminTopEndHead');
$this->addHook('AdminTopBottom', 'AdminTopBottom');
# core/admin/foot.php
$this->addHook('AdminFootEndBody', 'AdminFootEndBody');
# core/admin/prepend.php
$this->addHook('AdminPrepend', 'AdminPrepend');
# core/admin/article.php
$this->addHook('AdminArticlePostData', 'AdminArticlePostData');
$this->addHook('AdminArticlePreview', 'AdminArticlePreview');
$this->addHook('AdminArticleParseData', 'AdminArticleParseData');
$this->addHook('AdminArticleInitData', 'AdminArticleInitData');
$this->addHook('AdminArticleContent', 'AdminArticleContent');
if(version_compare(PLX_VERSION, '5.9.0', '<')) {# Since 0.9.0
# core/admin/statiques.php
$this->addHook('AdminStaticsPrepend', 'AdminStaticsPrepend');# Next gen ready (maybe)
}
# core/admin/statique.php
$this->addHook('AdminStatic', 'AdminStatic');
# core/admin/parametres_avances.php
$this->addHook('AdminSettingsAdvancedTop', 'AdminSettingsAdvancedTop');
# core/admin/parametres_base.php
$this->addHook('AdminSettingsBaseTop', 'AdminSettingsBaseTop');
}
#======================================================
# Déclaration des hooks pour la partie visiteur
#======================================================
else {
# core/lib/class.plx.show.php
$this->addHook('plxShowConstruct', 'plxShowConstruct');
$this->addHook('plxShowStaticListEnd', 'plxShowStaticListEnd');
# core/lib/class.plx.feed.php
$this->addHook('plxFeedConstructLoadPlugins', 'ConstructLoadPlugins');
$this->addHook('plxFeedPreChauffageBegin', 'PreChauffageBegin');
# index.php
$this->addHook('ThemeEndHead', 'ThemeEndHead');
$this->addHook('IndexEnd', 'IndexEnd');
# feed.php
$this->addHook('FeedEnd', 'FeedEnd');
# sitemap.php
$this->addHook('SitemapBegin', 'SitemapBegin');
$this->addHook('SitemapEnd', 'SitemapEnd');
# hook utilisateur à mettre dans le thème
$this->addHook('MyMultiLingue', 'MyMultiLingue');
}
}
# Donne de la langue en cours
public static function _Lang() {
$def = unserialize(PLX_MYMULTILINGUE);
if(isset($def['lang'])) {
return $def['lang'];
}
}
# Donnes les langues actives. Un explode(',', $langs) est une idée ;)
public static function _Langs() {
$def = unserialize(PLX_MYMULTILINGUE);
if(isset($def['langs'])) {
return $def['langs'];
}
}
/**********************************/
/* gestion active/deactive/update */
/**********************************/
/**
* Méthode exécutée à l'activation du plugin
* @author Stephane F
**/
public function onActivate() {
if(file_exists(PLX_PLUGINS.__CLASS__.'/update')) @chmod(PLX_PLUGINS.__CLASS__.'/update',0644); # en attendant la modif en natif dans class.plx.plugins.php
# Mise en cache du css partie administration
$src_cssfile = PLX_PLUGINS.__CLASS__.'/css/admin.css';
$dst_cssfile = PLX_ROOT.PLX_CONFIG_PATH.'plugins/'.__CLASS__.'.admin.css';
plxUtils::write(file_get_contents($src_cssfile), $dst_cssfile);
# Mise en cache du ccs partie visiteurs
$src_cssfile = PLX_PLUGINS.__CLASS__.'/css/site.css';
$dst_cssfile = PLX_ROOT.PLX_CONFIG_PATH.'plugins/'.__CLASS__.'.site.css';
plxUtils::write(file_get_contents($src_cssfile), $dst_cssfile);
# Régénération des caches css
$plxAdmin = plxAdmin::getInstance();
$plxAdmin->plxPlugins->cssCache('admin');
$plxAdmin->plxPlugins->cssCache('site');
}
/**
* Méthode exécutée à la désactivation du plugin
* @author Stephane F
**/
public function onDeactivate() {
unset($_SESSION['lang']);
unset($_SESSION['admin_lang']);
unset($_SESSION['default_lang']);
unset($_SESSION['data_lang']);
unset($_SESSION['medias']);
unset($_SESSION['folder']);
unset($_SESSION['currentfolder']);
}
/**
* Méthode appelée par la classe plxPlugins et executée si un fichier "upadate" est présent dans le dossier du plugin
* On demande une mise à jour du cache css
* Nouvelles règles css pour le plugin avec PluXml 5.6 et PluCSS 1.2 pour afficher les drapeaux dans l'action bar
* @author Stephane F
**/
public function onUpdate() {
# demande de mise à jour du cache css
return array('cssCache' => true);
}
/**
* Méthode qui créer les répertoires des langues (écran de config du plugin)
* @author Stephane F
**/
public function mkDirs() {
$plxAdmin = plxAdmin::getInstance();
# on nettoie les chemins
$racine_articles = str_replace('/'.$this->lang.'/', '/', $plxAdmin->aConf['racine_articles']);
$racine_statiques = str_replace('/'.$this->lang.'/', '/', $plxAdmin->aConf['racine_statiques']);
$racine_commentaires = str_replace('/'.$this->lang.'/', '/', $plxAdmin->aConf['racine_commentaires']);
$racine_medias = str_replace('/'.$this->lang.'/', '/', $plxAdmin->aConf['medias']);
if(isset($_POST['flags'])) {
foreach($_POST['flags'] as $lang) {
if(!is_dir(PLX_ROOT.$racine_articles.$lang))
mkdir(PLX_ROOT.$racine_articles.$lang, 0755, true);
if(!is_dir(PLX_ROOT.$racine_statiques.$lang))
mkdir(PLX_ROOT.$racine_statiques.$lang, 0755, true);
if(!is_dir(PLX_ROOT.$racine_commentaires.$lang))
mkdir(PLX_ROOT.$racine_commentaires.$lang, 0755, true);
if(!is_dir(PLX_ROOT.$racine_medias.$lang))
mkdir(PLX_ROOT.$racine_medias.$lang, 0755, true);
if(!is_dir(PLX_ROOT.PLX_CONFIG_PATH.$lang))
mkdir(PLX_ROOT.PLX_CONFIG_PATH.$lang, 0755, true);
plxUtils::write('',PLX_ROOT.PLX_CONFIG_PATH.$lang.'/index.html');
plxUtils::write("<Files *>\n\tOrder allow,deny\n\tDeny from all\n</Files>",PLX_ROOT.PLX_CONFIG_PATH.$lang.'/.htaccess');
}
}
}
/**
* Pour garder la compatibilité ascendante et montante (Origin PluXml 5.7)
* Méthode qui retourne une chaine de caractères nettoyée des cdata
* Méthode qui controle une chaine de caractères pour un fichier .xml
* Si la chaine est vide ou numérique : la chaine est retournée sans modification
* Autrement, la chaine est encadrée automatiquement par "<![CDATA[ ... ]]>" si besoin.
* Si "<![CDATA[" et "]]>" sont présents à l'intérieur de la chaine, alors conversion
* en entités HTML.
*
* @param str chaine de caractères à nettoyer
* @return string chaine de caractères nettoyée
* @author Stephane F,
**/
public static function cdataCheck($str) {
$str = str_ireplace('!CDATA', '!CDATA', $str);
return str_replace(']]>', ']]>', $str);
}
/**
* Méthode qui vérifie que la langue courante du site est valide
* @author Stephane F
**/
public function validateLang() {
# récupération des langues enregistrées dans le fichier de configuration du plugin
if($this->getParam('flags')!='')
$this->aLangs = explode(',', $this->getParam('flags'));
# validation de la langue coutante du site
$this->lang = in_array($this->lang, $this->aLangs) ? $this->lang : $_SESSION['default_lang'];
}
/********************************/
/* core/lib/class.plx.motor.php */
/* core/lib/class.plx.feed.php */
/********************************/
/**
* Méthode qui modifie les chemins de PluXml en tenant compte de la langue
* @author Stephane F, Thomas Ingles
**/
public function ConstructLoadPlugins() {
echo '<?php ';?>
# initialisation n° page statique comme page d accueil (recupérée dans plxMotorGetStatiques)
$this->aConf['homestatic'] = '';
?><?php
# modification des chemins d'accès
echo '<?php $this_lang = "'.$this->lang.'";'; ?>
$this->aConf['default_lang'] = $this_lang;
$this->aConf['racine_articles'] = $this->aConf['racine_articles'].$this_lang.'/';
$this->aConf['racine_statiques'] = $this->aConf['racine_statiques'].$this_lang.'/';
$this->aConf['racine_commentaires'] = $this->aConf['racine_commentaires'].$this_lang.'/';
path('XMLFILE_CATEGORIES', PLX_ROOT.PLX_CONFIG_PATH.$this_lang.'/categories.xml');
path('XMLFILE_STATICS', PLX_ROOT.PLX_CONFIG_PATH.$this_lang.'/statiques.xml');
path('XMLFILE_TAGS', PLX_ROOT.PLX_CONFIG_PATH.$this_lang.'/tags.xml');
?><?php
# modification des infos du site en fonction de la langue
if(file_exists(PLX_ROOT.PLX_CONFIG_PATH.'plugins/'.__CLASS__.'.xml')) {# Config exist
echo '<?php '; ?>
$this->aConf['title'] = '<?= $this->getParam('title_'.$this->lang) ?>';
$this->aConf['description'] = '<?= $this->getParam('description_'.$this->lang) ?>';
$this->aConf['meta_description'] = '<?= $this->getParam('meta_description_'.$this->lang) ?>';
$this->aConf['meta_keywords'] = '<?= $this->getParam('meta_keywords_'.$this->lang) ?>';
?><?php
if($this->getParam('lang_style')) {
echo '<?php '; ?>
$theme = '<?= $this->getParam('style_'.$this->lang) ?>';
if($theme!='' AND is_dir(PLX_ROOT.$this->aConf['racine_themes'].$theme)) {
$this->aConf['style'] = $theme;
$this->style = $theme;
}
?><?php
}
}#FI Config exist
# s'il faut un dossier medias différent pour chaque langue
if($this->getParam('lang_medias_folder')) {
echo '<?php '; ?>
$this->aConf['medias'] = $this->aConf['medias'].$this_lang.'/';
?><?php
}
}
/**
* Méthode qui vérifie que la langue est bien présente dans l'url
* @author Stephane F, Thomas I.
**/
public function PreChauffageBegin() {
# utilisation de preg_replace pour être sur que la chaine commence bien par une langue
if($this->lang != $_SESSION['default_lang']){# No default lang
echo '<?php ';?>$this->get = preg_replace('~^(<?=$this->lang?>)/?(.*)~', "$2", $this->get);?><?php
}else{# No duplicate content 4 default lang : remove it if find & redirect
echo '<?php ';?>
$countr = 0;
$this->get = preg_replace('~^(<?=$this->lang?>/?)~', '', $this->get, 1, $countr);
if($countr){
header('Location: ' . $this->racine . $this->get);
exit;
}
?><?php
}
}
/**
* Méthode qui récupère les dépendances sur les articles et les pages statiques
* @author Stephane F, Thomas Ingles
**/
public function plxMotorDemarrageEnd() {
echo '<?php $this_lang = "'.$this->lang.'"; $this_class = "' . __CLASS__ .'";'; ?>
$this->infos_arts = null;
$this->infos_statics = null;
if($this->mode=='article') {
if(isset($this->plxRecord_arts)) {
if($deplng = $this->plxRecord_arts->f('deplng')) {
foreach($deplng as $mml_lang => $ident) {
# récupération du titre de l article correspondant à la langue
$root = PLX_ROOT.$this->aConf['racine_articles'];
$root = str_replace('/'.$this_lang.'/', '/'.$mml_lang.'/', $root);
$folder = opendir($root);
while($file = readdir($folder)) {
if(preg_match('/^'.$ident.'(.*).xml$/', $file)) {
$uniqart = $this->parseArticle($root.$file);
if($uniqart['date'] <= date('YmdHi')) {
$url = '/article'.intval($ident).'/'.$uniqart['url'];
#if($mml_lang!=$_SESSION['default_lang']) $url = $mml_lang.$url;#BUG with 1st default lang
$url = $mml_lang.$url;#Fix hook4art
$this->infos_arts[$mml_lang]['img'] = '<img class="lang" src="'.$this->urlRewrite(PLX_PLUGINS.$this_class.'/img/'.$mml_lang.'.png').'" alt="'.$mml_lang.'" />';
$this->infos_arts[$mml_lang]['link'] = '<a href="'.$url.'">'.plxUtils::strCheck($uniqart['title']).'</a>';
$this->infos_arts[$mml_lang]['url'] = $url;
}
break;
}
}
closedir($folder);
}
}
}
}
elseif($this->mode=='static') {
$deplng = null;
if(isset($this->aStats[$this->cible]['deplng']) AND strpos($this->aStats[$this->cible]['deplng'],',') !== FALSE) {
$values = explode('|', $this->aStats[$this->cible]['deplng']);
foreach($values as $k => $v) {
$tmp = explode(',', $v);
$deplng[$tmp[0]] = $tmp[1];
}
}
if($deplng) {
foreach($deplng as $mml_lang => $id) {
# récupération du titre de la page statique correspondant à la langue
$root = PLX_ROOT.PLX_CONFIG_PATH;
$root = str_replace('/'.$this_lang.'/', $mml_lang, $root);
$filename=$root.$mml_lang.'/statiques.xml';
if(is_file($filename)) {
# Mise en place du parseur XML
$data = implode('',file($filename));
$parser = xml_parser_create(PLX_CHARSET);
xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,0);
xml_parse_into_struct($parser,$data,$values,$iTags);
xml_parser_free($parser);
if(isset($iTags['statique']) AND isset($iTags['name'])) {
$nb = sizeof($iTags['name']);
$size=ceil(sizeof($iTags['statique'])/$nb);
for($i=0;$i<$nb;$i++) {
$attributes = $values[$iTags['statique'][$i*$size]]['attributes'];
$number = $attributes['number'];
if($number==$id) {
$active = intval($attributes['active']);
if($active) {
$homestatic = plxUtils::getValue($values[$iTags['homeStatic'][$i]]['value']);
if($homestatic)
$url = $this->racine.$mml_lang.'/';
else {
$url = $mml_lang.'/static'.intval($id).'/'.$attributes['url'];
//if($mml_lang!=$_SESSION['default_lang']) $url = $mml_lang.$url;
}
$title = plxUtils::getValue($values[$iTags['name'][$i]]['value']);
$this->infos_statics[$mml_lang]['img'] = '<img class="lang" src="'.$this->urlRewrite(PLX_PLUGINS.$this_class.'/img/'.$mml_lang.'.png').'" alt="'.$mml_lang.'" />';
$this->infos_statics[$mml_lang]['link'] = '<a href="'.$url.'">'.plxUtils::strCheck($title).'</a>';
$this->infos_statics[$mml_lang]['url'] = $url;
$this->infos_statics[$mml_lang]['homestatic'] = $homestatic;
}
break;
}
}
}
}
}
}
}
?><?php
}
/**
* Méthode qui rédirige vers la bonne url après soumission d'un commentaire
* @author Stephane F, Thomas Ingles
**/
public function plxMotorDemarrageNewCommentaire() {
if($_SESSION['default_lang']!==$this->lang) {
echo '<?php '; ?>
$url = $this->urlRewrite('?<?= $this->lang?>/article'.intval($this->plxRecord_arts->f('numero')).'/'.$this->plxRecord_arts->f('url'));
?><?php
}
}
/**
* Méthode qui récupère les dépendances des pages statiques et la page statique comme page d'accueil
* @author Stephane F, Thomas Ingles
**/
public function plxMotorGetStatiques() {
echo '<?php '; ?>
# Recuperation du numéro la page statique d\'accueil
if(isset($iTags['homeStatic'])) {
$homeStatic = plxUtils::getValue($iTags['homeStatic'][$i]);
$this->aStats[$number]['homeStatic'] = plxUtils::getValue($values[$homeStatic]['value']);
if($this->aStats[$number]['homeStatic']) {
# n° de la page statique comme page d accueil
$this->aConf['homestatic'] = $number;
}
} else {
$this->aStats[$number]['homeStatic'] = 0;
}
# Recuperation des dépendances des pages statiques
if(isset($iTags['deplng'])) {
$deplng = plxUtils::getValue($iTags['deplng'][$i]);
$this->aStats[$number]['deplng'] = plxUtils::getValue($values[$deplng]['value']);
} else {
$this->aStats[$number]['deplng'] = array();
}
?><?php
}
/**
* Méthode qui récupère les dépendances entre articles dans le fichier .xml
* @author Stephane F, Thomas Ingles
**/
public function plxMotorParseArticle() {
echo '<?php '; ?>
if(isset($iTags['deplng'])) {
foreach($iTags['deplng'] as $k => $v) {
$key = $values[$v]['value'];
$val = explode(',', $key);
$art['deplng'][$val[0]] = $val[1];
}
} else {
$art["deplng"] = null;
}
?><?php
}
/**
* Méthode qui s'assure que la langue est présente dans les liens de redirection de type 301
* @author Stephane F, Thomas Ingles
**/
public function plxMotorRedir301() {
if($this->lang!=$_SESSION['default_lang']) {
echo '<?php $this_lang = "'.$this->lang.'";'; ?>
if(!preg_match('#'.$this->racine.$this_lang.'/#', $url)) {
$url = str_replace($this->racine, $this->racine.$this_lang.'/', $url);
}
?><?php
}
}
/********************************/
/* core/lib/class.plx.admin.php */
/********************************/
/**
* Méthode qui modifie les chemins de PluXml en supprimant la langue
* @author Stephane F, Thomas Ingles
**/
public function plxAdminEditConfiguration() {
# sauvegarde des paramètres pris en compte en fonction de la langue
echo '<?php '; ?>
$_lang = $this->aConf['default_lang'];
if(preg_match('/parametres_base/',basename($_SERVER['SCRIPT_NAME']))) {
$plugin = $this->plxPlugins->aPlugins['<?= __CLASS__ ?>'];
$plugin->setParam('title_'.$_lang, $_POST['title'], 'cdata');
$plugin->setParam('description_'.$_lang, $_POST['description'], 'cdata');
$plugin->setParam('meta_description_'.$_lang, $_POST['meta_description'], 'cdata');
$plugin->setParam('meta_keywords_'.$_lang, $_POST['meta_keywords'], 'cdata');
$plugin->saveParams();
# pour etre réactualiser au chargement du plugin si on a change la langue par defaut du site
unset($_SESSION['default_lang']);
}
?><?php
# theme différent pour chaque langue
if($this->getParam('lang_style')) {
echo '<?php '; ?>
if(preg_match('/parametres_themes/',basename($_SERVER['SCRIPT_NAME']))) {
$plugin = $this->plxPlugins->aPlugins['<?= __CLASS__ ?>'];
$plugin->setParam('style_'.$_lang, $_POST['style'], 'cdata');
$plugin->saveParams();
# pour ne pas écraser le style de l installation
$_POST['style'] = $this->aConf['style'];
}
?><?php
}
# pour ne pas écraser la langue par défaut, les chemins racine_articles, racine_statiques et racine_commentaires
# Fix add /fr/fr/en/de/ when save statics on 5.8.3 pluxml release (maybe before) : $global is for <= 5.7 AND $content is for >= 5.8
echo '<?php $this_lang = "'.$this->lang.'";'; ?>
if(!isset($content['racine_articles'])){
#$content['default_lang'] = $global['default_lang'] = isset($_SESSION['default_lang'])? $_SESSION['default_lang']:$this->aConf['default_lang'];#;
$content['racine_articles'] = $global['racine_articles'] = str_replace('/'.$this_lang.'/', '/', $this->aConf['racine_articles']);
$content['racine_statiques'] = $global['racine_statiques'] = str_replace('/'.$this_lang.'/', '/', $this->aConf['racine_statiques']);
$content['racine_commentaires'] = $global['racine_commentaires'] = str_replace('/'.$this_lang.'/', '/', $this->aConf['racine_commentaires']);
}
?><?php
# pour ne pas écraser le chemin du dossier des medias
if($this->getParam('lang_medias_folder')) {
echo '<?php '?>
$content['medias'] = $global['medias'] = str_replace('/'.$this_lang.'/', '/', $this->aConf['medias']);
?><?php
}
}
/**
* Méthode qui ajoute une nouvelle clé dans le fichier xml des pages statiques pour savoir
* si une page statique est configurée comme page d'accueil (valeur boolean 0/1)
* @author Stephane F, Thomas I.
**/
public function plxAdminEditStatiquesUpdate() {
echo '<?php '; ?>
if(!isset($content['homeStatic']))
$this->aStats[$static_id]['homeStatic'] = 0;
else
$this->aStats[$static_id]['homeStatic'] = $content['homeStatic'][0]==$static_id;
?><?php
}
/**
* Méthode qui enregistre une nouvelle clé dans le fichier xml des pages statiques pour stocker
* le n° de la page statique d'accueil et les id des pages pour les langues liées
* @author Stephane F, Thomas I.
**/
public function plxAdminEditStatiquesXml() {
echo '<?php '; ?>
if(!isset($static['homeStatic'])) $static['homeStatic'] = 0;
# $xml .= '<homeStatic><![CDATA['.plxUtils::cdataCheck($static['homeStatic']).']]></homeStatic>';#5.7
$xml .= '<homeStatic><![CDATA['.<?=__CLASS__?>::cdataCheck($static['homeStatic']).']]></homeStatic>';#ALLBySelf
# dépendances des pages statiques
if(!isset($static['deplng'])) $static['deplng']='';
# $xml .= '<deplng><![CDATA['.plxUtils::cdataCheck($static['deplng']).']]></deplng>';#5.7
$xml .= '<deplng><![CDATA['.<?=__CLASS__?>::cdataCheck($static['deplng']).']]></deplng>';#ALLBySelf
?><?php
}
/**
* Méthode qui enregistre dans les articles les dépendances (identifiants par langue)
* @author Stephane F, Thomas I.
**/
public function plxAdminEditArticleXml() {
if(isset($_POST['deplng'])) {
foreach($_POST['deplng'] as $lang => $ident) {
$id = intval($ident);
if($id>0) {
echo '<?php ';?>
$xml .= ' <deplng><![CDATA[<?=self::cdataCheck($lang.','.str_pad($id,4,'0',STR_PAD_LEFT))?>]]></deplng>' . PHP_EOL;
?><?php
}
}
}
}
/**
* Méthode qui enregistre les dépendances dans le fichier statiques.xml de la langue courante
* @author Stephane F, Thomas I.
**/
public function plxAdminEditStatique() {
echo '<?php '; ?>
if(isset($content['deplng'])) {
$values = array();
foreach($content['deplng'] as $mml_lang => $ident) {
$id = intval($ident);
if($id>0) {
$values[] = $mml_lang.','.str_pad($id,3,'0',STR_PAD_LEFT);
}
}
$this->aStats[$content['id']]['deplng'] = implode('|', $values);
}
?><?php
}
/*******************************/
/* core/lib/class.plx.show.php */
/*******************************/
/**
* Méthode qui modifie l'url des pages statiques en rajoutant la langue courante dans le lien du menu de la page
* @author Stephane F, Thomas I.
**/
public function plxShowStaticListEnd() {
if($_SESSION['default_lang']==$this->lang) return;
echo '<?php '; ?>
foreach($menus as $idx => $menu) {
if($this->plxMotor->aConf['urlrewriting']) {
$menus[$idx] = str_replace($this->plxMotor->racine, $this->plxMotor->racine.'<?= $this->lang ?>/', $menu);
}
}
?><?php
}
/**********************/
/* core/admin/top.php */
/**********************/
/**
* Méthode qui affiche les langues sous forme de drapeaux, nom ou liste déroulante
* return stdio
* @author Stephane F, Thomas I.
**/
public function AdminTopBottom() {
$aLabels = unserialize($this->getParam('labels'));
if($this->aLangs) {
$ruri = '';
if(strstr($_SERVER['REQUEST_URI'],'?')){
$ruri = htmlentities('&'.substr($_SERVER['REQUEST_URI'], (strpos($_SERVER['REQUEST_URI'], '?') + 1)));
}
echo '<div id="mmlangs">';
# affichage sous forme de liste déroulante
if($this->getParam('display')=='listbox') {
echo '<select onchange="self.location=\'?lang=\'+this.options[this.selectedIndex].value">';
foreach($this->aLangs as $idx=>$lang) {
$sel = $this->lang==$lang ? ' selected="selected"':'';
echo '<option value="'.$lang.$ruri.'"'.$sel.'>'. $aLabels[$lang].'</option>';
}
echo '</select>';
# affichage sous forme de drapeaux ou de texte
} else {
foreach($this->aLangs as $lang) {
$sel = $this->lang==$lang ? ' active' : '';
if($this->getParam('display')=='flag') {
$img = '<img class="lang'.$sel.'" src="'.PLX_PLUGINS.__CLASS__.'/img/'.$lang.'.png" alt="'.$lang.'" />';
echo '<a href="?lang='.$lang.$ruri.'">'.$img.'</a>';
} else {
echo '<a class="lang'.$sel.'" href="?lang='.$lang.$ruri.'">'.$aLabels[$lang].'</a>';
}
}
}
echo '</div>';
}
# message d'information utilisateur si la réécriture d'url n'est pas activée Parse error: syntax error, unexpected 'url' (T_STRING), expecting ',' or ';' in core/admin/top.php(148) : eval()'d code on line 2 ::: addslashes
echo '<?php '; ?>
if($plxAdmin->aConf['urlrewriting']!='1') {
echo '<p class="warning">Plugin <?=__CLASS__?><br /><?= plxUtils::strCheck($this->getLang('L_ERR_URL_REWRITING')) ?></p>'.PHP_EOL;
plxMsg::Display();
}
?><?php
}
/**
* Méthode qui démarre la bufférisation de sortie
* @author Stephane F
**/
public function AdminTopEndHead() {
echo '<?php ';?>ob_start();?><?php
}
/************************/
/* core/admin/admin.php */
/************************/
/* méthodes qui gèrent les dépendances entre articles - E/S fichiers .xml */
public function AdminArticlePostData() {
echo '<?php ';?>$art['deplng'] = $_POST['deplng'];?><?php
}
public function AdminArticlePreview() {
echo '<?php ';?>$art['deplng'] = $_POST['deplng'];?><?php
}
public function AdminArticleParseData() {
echo '<?php ';?>$art['deplng'] = $result['deplng'];?><?php
}
public function AdminArticleInitData() {
echo '<?php ';?>$art['deplng'] = null;?><?php
}
/**
* Méthode qui affiche les dépendances d'articles entre les langues
* @author Stephane F, Thomas I.
**/
public function AdminArticleContent() {
if($this->aLangs) {
echo '<p>'.$this->getLang('L_IDENT_ARTICLE').'</p>';
echo '<ul class="unstyled-list">';
foreach($this->aLangs as $mml_lang) {
if($this->lang!=$mml_lang) {
echo '<?php $mml_lang = "'.$mml_lang.'"; $this_lang = "'.$this->lang.'"; $this_class = "' . __CLASS__ .'";'; ?>
$img = '<img src="'.PLX_PLUGINS.$this_class.'/img/'.$mml_lang.'.png" alt="'.$mml_lang.'" />';
$id = $titre = '';
if(isset($art['deplng'][$mml_lang])) {
$id = $art['deplng'][$mml_lang];
$id = intval($id)>0 ? str_pad($id,4,'0',STR_PAD_LEFT) : '';
# récupération du titre de l article correspondant à la langue
$root = PLX_ROOT.$plxAdmin->aConf['racine_articles'];
$root = str_replace('/'.$this_lang.'/', '/'.$mml_lang.'/', $root);
$folder = opendir($root);
while($file = readdir($folder)) {
if(preg_match('/^'.$id.'(.*).xml$/', $file)) {
$uniqart = $plxAdmin->parseArticle($root.$file);
$titre = $uniqart['title'];
$titre = '<a href="?lang='.$mml_lang.'&a='.$id.'">'.plxUtils::strCheck($titre).'</a>';
break;
}
}
closedir($folder);
}
# affichage
$fld = '<input value="'.$id.'" type="text" name="deplng['.$mml_lang.']" maxlength="4" size="2" />';
echo '<li>'.$img.' '.$fld.' '.$titre.'</li>';
?><?PHP
}
}
echo '</ul>';
}
}
/****************************/
/* core/admin/statiques.php */
/****************************/
/**
* Méthode qui modifie l'ordre des appels lors de la modif de la liste des pages statiques
* Le chemin de la langue des pages statiques peut-être perdu lors du renommage #next gen ready Fx
* @author Thomas Ingles
**/
public function AdminStaticsPrepend() {
echo '<?php '; ?>
# On édite les pages statiques
if(!empty($_POST)) {
# Controle de l'accès à la page en fonction du profil de l'utilisateur connecté
$plxAdmin->checkProfil(PROFIL_MANAGER);
$plxAdmin->editStatiques($_POST);#Fix lost path lng on next gen (old maybe work) # Before editConf /!\
$plxAdmin->editConfiguration(!empty($_POST['homeStatic']) ? array('homestatic'=>$_POST['homeStatic'][0]) : array('homestatic'=>''));
header('Location: statiques.php');
exit;
}
?><?php
}
/***************************/
/* core/admin/statique.php */
/***************************/
/**
* Méthode qui affiche les dépendances des pages statiques entre les langues
* @author Stephane F, Thomas I.
**/
public function AdminStatic() {
echo '<?php $this_lang = "'.$this->lang.'"; $this_class = "' . __CLASS__ .'";'; ?>
# récupération des dépendances des pages et stockage dans un tableau pour manipulation + facile
$deplng = array();
if(isset($plxAdmin->aStats[$id]['deplng']) AND !empty($plxAdmin->aStats[$id]['deplng']) AND strpos($plxAdmin->aStats[$id]['deplng'],',') !== FALSE) {
$values = explode('|', $plxAdmin->aStats[$id]['deplng']);
foreach($values as $k => $v) {
$tmp = explode(',', $v);
$deplng[$tmp[0]] = $tmp[1];
}
}
?><?php
# affichage des drapeaux
if($this->aLangs) {
echo '<p>'.$this->getLang('L_IDENT_STATIC').'</p>';
echo '<ul class="unstyled-list">';
foreach($this->aLangs as $mml_lang) {
if($this->lang!=$mml_lang) {
echo '<?php $mml_lang="'.$mml_lang.'";'; ?>
# recherche du titre de la page statique
$mmlImg = '<img src="'.PLX_PLUGINS.$this_class.'/img/'.$mml_lang.'.png" alt="'.$mml_lang.'" />';
$mmlId = $mmlTitre = '';
if(isset($deplng[$mml_lang])) {
$mmlId = $deplng[$mml_lang];
$mmlId = intval($mmlId)>0 ? str_pad($mmlId,3,'0',STR_PAD_LEFT) : '';
# récupération du titre de la page statique correspondant à la langue
$mmlRoot = PLX_ROOT.PLX_CONFIG_PATH;
$mmlRoot = str_replace('/'.$this_lang.'/', '/'.$mml_lang.'/', $mmlRoot);
$filename=$mmlRoot.$mml_lang.'/statiques.xml';
if(is_file($filename)) {
# Mise en place du parseur XML
$data = implode('',file($filename));
$parser = xml_parser_create(PLX_CHARSET);
xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,0);
xml_parse_into_struct($parser,$data,$values,$iTags);
xml_parser_free($parser);
if(isset($iTags['statique']) AND isset($iTags['name'])) {
$nb = sizeof($iTags['name']);
$size=ceil(sizeof($iTags['statique'])/$nb);
for($i=0;$i<$nb;$i++) {
$attributes = $values[$iTags['statique'][$i*$size]]['attributes'];
$number = $attributes['number'];
if($number==$mmlId) {
# Récupération du nom de la page statique
$mmlTitre = plxUtils::getValue($values[$iTags['name'][$i]]['value']);
$mmlTitre = '<a href="?lang='.$mml_lang.'&p='.$mmlId.'">'.plxUtils::strCheck($mmlTitre).'</a>';
break;
}
}
}
}
}
# affichage
$mmlFld = '<input value="'.$mmlId.'" type="text" name="deplng['.$mml_lang.']" maxlength="3" size="2" />';
echo '<li>'.$mmlImg.' '.$mmlFld.' '.$mmlTitre.'</li>';
?><?php
}
}
echo '</ul>';
}
}
/***********************/
/* core/admin/foot.php */
/***********************/
/**
* Méthode qui rajoute la langue courante dans les liens des articles et des pages statiques permettant
* de les visualiser coté visiteurs (liens "Voir", "Visualiser la page statique sur le site", etc...)
* @author Stephane F, Thomas I.
**/
public function AdminFootEndBody() {
echo '<?php '; ?>
$output = ob_get_clean();
if (!preg_match('/parametres/',basename($_SERVER['SCRIPT_NAME']))) {
$output = preg_replace('~('.$plxAdmin->racine.')(article[\w\d-]+\/)~', '$1<?=$this->lang?>/$2', $output);
$output = preg_replace('~('.$plxAdmin->racine.')(static[\w\d-]+\/)~', '$1<?=$this->lang?>/$2', $output);
}
echo $output;
?><?php
}
/**************************/
/* core/admin/prepend.php */
/**************************/
/**
* Méthode pour définir la langue à utiliser dans l'administration en fonction du profil utilisateur
* Fix $this->getParam('user_lang') is empty @ constructor + traitement coté administration (swd)
* @author Stephane F
**/
public function AdminPrepend() {
# on change la langue de l'administration en fonction des drapeaux si parametre user_lang = 0
if(!$this->getParam('user_lang') AND isset($_SESSION['data_lang'])) {
echo '<?php ';?>
$lang = $_SESSION['data_lang'];
#Fix after logon (if redirected to plugin, or go in admin plugin is not in data lang in first time (2nd click o plug ok)
if(isset($_SESSION['admin_lang']) AND $_SESSION['admin_lang'] != $lang){
$_SESSION['admin_lang'] = $lang;
header('Location: ' . $_SERVER['REQUEST_URI']);#Fix Next gen? Logon : langues des plugins = default_lang
exit;
}
?><?php
}
}
/*************************************/
/* core/admin/parametres_avances.php */
/*************************************/
/**
* Méthode qui modifie les chemins de PluXml en supprimant la langue
* @author Stephane F, Thomas I
**/
public function AdminSettingsAdvancedTop() {
# pour ne pas écraser les chemins racine_articles, racine_statiques et racine_commentaires
echo '<?php ';?>
$plxAdmin->aConf['racine_articles'] = str_replace('/<?=$this->lang?>/', '/', $plxAdmin->aConf['racine_articles']);
$plxAdmin->aConf['racine_statiques'] = str_replace('/<?=$this->lang?>/', '/', $plxAdmin->aConf['racine_statiques']);
$plxAdmin->aConf['racine_commentaires'] = str_replace('/<?=$this->lang?>/', '/', $plxAdmin->aConf['racine_commentaires']);
?><?php
# pour ne pas écraser le chemin du dossier des medias
if($this->getParam('lang_medias_folder')) {
echo '<?php ';?>$plxAdmin->aConf['medias'] = str_replace('/<?=$this->lang?>/', '/', $plxAdmin->aConf['medias']); ?><?php
}
}
/**********************************/
/* core/admin/parametres_base.php */
/**********************************/
/**
* Méthode qui remet la vraie langue par défaut de PluXml du fichier parametres.xml, sans tenir compte du multilangue
* @author Stephane F Thomas I
**/
public function AdminSettingsBaseTop() {
echo '<?php ';?>$plxAdmin->aConf['default_lang'] = $_SESSION['default_lang'];?><?php
}
/**************/
/* /index.php */
/**************/
/**
* Méthode qui modifie les liens en tenant compte de la langue courante et de la réécriture d'urls
* @author Stephane F, Thomas Ingles
**/
public function IndexEnd() {
$lang = $_SESSION['default_lang']==$this->lang ? '' : $this->lang.'/';
echo '<?php $mml_lang="'.$lang.'";'; ?>
$output = strtr($output, array(
'href="'.$plxMotor->racine.'"' => 'href="'.$plxMotor->racine.$mml_lang.'"',
$plxMotor->racine.'article' => $plxMotor->racine.$mml_lang.'article',
$plxMotor->racine.'static' => $plxMotor->racine.$mml_lang.'static',
$plxMotor->racine.'categorie' => $plxMotor->racine.$mml_lang.'categorie',
$plxMotor->racine.'tag' => $plxMotor->racine.$mml_lang.'tag',
$plxMotor->racine.'archives' => $plxMotor->racine.$mml_lang.'archives',
$plxMotor->racine.'feed/' => $plxMotor->racine.'feed/'.$mml_lang,
$plxMotor->racine.'page' => $plxMotor->racine.$mml_lang.'page',
$plxMotor->racine.'blog' => $plxMotor->racine.$mml_lang.'blog',
PLX_PLUGINS => $plxMotor->aConf['racine_plugins'],
'href="'.$plxMotor->racine.$_SESSION['default_lang'].'/' => 'href="'.$plxMotor->racine
));
?><?php
}
/**
* Méthode qui affiche les balises <link rel="alternate"> de tous les articles dépendants par langue
* Mofifiable par les hooks plxMyMultiLingueThemeEndHeadBegin plxMyMultiLingueThemeEndHead
* @author Stephane F, Thomas I.
* Note : never use $output var here :/
**/
public function ThemeEndHead() {
echo '<?php $this_lang = "'.$this->lang.'";'; ?>