@@ -32,6 +32,11 @@ public function __construct($default_lang) {
32
32
else
33
33
$ this ->lang = $ default_lang ;
34
34
35
+ if (!defined ('PLX_ADMIN ' ) AND $ _SERVER ['QUERY_STRING ' ]=='' ) {
36
+ header ('Location: ./ ' .$ this ->lang .'/ ' );
37
+ exit ;
38
+ }
39
+
35
40
# appel du constructeur de la classe plxPlugin (obligatoire)
36
41
parent ::__construct ($ this ->lang );
37
42
@@ -50,6 +55,7 @@ public function __construct($default_lang) {
50
55
$ this ->addHook ('plxMotorPreChauffageBegin ' , 'PreChauffageBegin ' );
51
56
$ this ->addHook ('plxMotorConstructLoadPlugins ' , 'ConstructLoadPlugins ' );
52
57
$ this ->addHook ('plxMotorGetStatiques ' , 'plxMotorGetStatiques ' );
58
+ $ this ->addHook ('plxMotorDemarrageNewCommentaire ' , 'plxMotorDemarrageNewCommentaire ' );
53
59
54
60
# déclaration des hooks plxAdmin
55
61
$ this ->addHook ('plxAdminEditConfiguration ' , 'plxAdminEditConfiguration ' );
@@ -214,7 +220,18 @@ public function getCurrentLang() {
214
220
/********************************/
215
221
216
222
/**
217
- * Méthode qui fat la redirection lors du changement de langue coté visiteur
223
+ * Méthode qui rédirige vers la bonne url après soumission d'un commentaire
224
+ *
225
+ * @author Stephane F
226
+ **/
227
+ public function plxMotorDemarrageNewCommentaire () {
228
+ echo '<?php
229
+ $url = $this->urlRewrite("? ' .$ this ->lang .'/article".intval($this->plxRecord_arts->f("numero"))."/".$this->plxRecord_arts->f("url"));
230
+ ?> ' ;
231
+ }
232
+
233
+ /**
234
+ * Méthode qui fait la redirection lors du changement de langue coté visiteur
218
235
*
219
236
* @author Stephane F
220
237
**/
0 commit comments