@@ -48,9 +48,12 @@ public function __construct($default_lang) {
48
48
$ this ->addHook ('plxMotorConstruct ' , 'plxMotorConstruct ' );
49
49
$ this ->addHook ('plxMotorPreChauffageBegin ' , 'PreChauffageBegin ' );
50
50
$ this ->addHook ('plxMotorConstructLoadPlugins ' , 'ConstructLoadPlugins ' );
51
+ $ this ->addHook ('plxMotorGetStatiques ' , 'plxMotorGetStatiques ' );
51
52
52
53
# déclaration des hooks plxAdmin
53
54
$ this ->addHook ('plxAdminEditConfiguration ' , 'plxAdminEditConfiguration ' );
55
+ $ this ->addHook ('plxAdminEditStatiquesUpdate ' , 'plxAdminEditStatiquesUpdate ' );
56
+ $ this ->addHook ('plxAdminEditStatiquesXml ' , 'plxAdminEditStatiquesXml ' );
54
57
55
58
# déclaration des hooks plxShow
56
59
$ this ->addHook ('plxShowStaticListEnd ' , 'plxShowStaticListEnd ' );
@@ -81,7 +84,6 @@ public function __construct($default_lang) {
81
84
82
85
}
83
86
84
-
85
87
/**
86
88
* Méthode exécutée à l'activation du plugin
87
89
*
@@ -323,6 +325,17 @@ public function ConstructLoadPlugins() {
323
325
}
324
326
}
325
327
328
+ public function plxMotorGetStatiques () {
329
+ echo '<?php
330
+ # Recuperation du numéro la page statique d \'accueil
331
+ $homeStatic = plxUtils::getValue($iTags["homeStatic"][$i]);
332
+ $this->aStats[$number]["homeStatic"]=plxUtils::getValue($values[$homeStatic]["value"]);
333
+ if($this->aStats[$number]["homeStatic"]) {
334
+ $this->aConf["homestatic"]=$number;
335
+ }
336
+ ?> ' ;
337
+ }
338
+
326
339
/********************************/
327
340
/* core/lib/class.plx.show.php */
328
341
/********************************/
@@ -388,6 +401,26 @@ public function plxAdminEditConfiguration() {
388
401
389
402
}
390
403
404
+ /**
405
+ * Méthode qui ajoute une nouvelle clé dans le fichier xml des pages statiques pour stocker
406
+ * le n° de la page statique d'accueil
407
+ *
408
+ * @author Stephane F
409
+ **/
410
+ public function plxAdminEditStatiquesUpdate () {
411
+ echo '<?php $this->aStats[$static_id]["homeStatic"] = intval($content["homeStatic"][0]==$static_id); ?> ' ;
412
+ }
413
+
414
+ /**
415
+ * Méthode qui enregistre une nouvelle clé dans le fichier xml des pages statiques pour stocker
416
+ * le n° de la page statique d'accueil
417
+ *
418
+ * @author Stephane F
419
+ **/
420
+ public function plxAdminEditStatiquesXml () {
421
+ echo '<?php $xml .= "<homeStatic><![CDATA[".plxUtils::cdataCheck($static["homeStatic"])."]]></homeStatic>"; ?> ' ;
422
+ }
423
+
391
424
/*************************************/
392
425
/* core/admin/parametres_avances.php */
393
426
/*************************************/
0 commit comments