-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfooter.inc.php
193 lines (168 loc) · 6.41 KB
/
footer.inc.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
<?php
/**
* Pied de page
*
* $Id: footer.inc.php 8082 2011-08-31 15:49:48Z crob $
*
* @package General
* @subpackage Affichage
*/
// iI on ne souhaite pas utiliser les js de base, on enlève tout ce qui suit :
if (isset($utilisation_jsbase) AND $utilisation_jsbase == "non") {
echo "<!-- Pas de js en pied -->\n";
} else {
echo "<!-- Début du pied -->\n";
// ========================================
// Astuce http://www.ehow.com/how_2000413_convert-em-px-sizes.html
// pour calculer le rapport em/px et corriger le positionnement des infobulles (taille fixée en 'em')
echo "<div id='EmSize' style='visibility:hidden; position:absolute; left:1em; top:1em;'></div>
<script type='text/javascript'>
var ele=document.getElementById('EmSize');
var em2px=ele.offsetLeft
//alert('1em == '+em2px+'px');
</script>\n";
// ========================================
// On a stocké les DIV dans un tableau et on parcourt le tableau PHP en fin de page pour afficher les infobulles en dehors du coeur de la page.
// Les infobulles apparaissent ainsi un peu comme des notes de bas de page.
// On pourrait cependant insérer l'infobulle au milieu du texte avec:
// echo creer_div("div1","1er DIV","Test de petit texte",12,"y","y","n");
// au risque de perturber l'affichage de la page si Javascript est désactivé.
if(isset($tabdiv_infobulle)){
// Pour éviter des cas de doublons...
$temoin_infobulle=array();
if(count($tabdiv_infobulle)>0){
for($i=0;$i<count($tabdiv_infobulle);$i++){
if((isset($tabid_infobulle[$i]))&&(!in_array($tabid_infobulle[$i],$temoin_infobulle))) {
echo $tabdiv_infobulle[$i]."\n";
$temoin_infobulle[]=$tabid_infobulle[$i];
}
}
}
}
// Témoin destiné à tester la fin de chargement de la page pour éviter des erreurs JavaScript avant la fin de chargement de tous les élèments.
// Par exemple: la fonction cacher_div() utilisée plus bas teste cette variable pour ne tenter les opérations que si la variable est à 'ok'
echo "<script type='text/javascript'>
temporisation_chargement='ok';
//desactivation_infobulle='n';
</script>\n";
if(isset($tabid_infobulle)){
if(count($tabid_infobulle)>0){
// On cache les DIV en fin de chargement de la page (il faut qu'ils existent pour qu'il soit possible de les cacher).
// Il me semble qu'il n'est pas possible d'initialiser le 'display' à 'none' et de modifier ce display ensuite via JavaScript.
echo "<script type='text/javascript'>\n";
for($i=0;$i<count($tabid_infobulle);$i++){
echo "cacher_div('".$tabid_infobulle[$i]."');\n";
}
echo "</script>\n";
}
}
}
if(getSettingValue("gepi_pmv")!="n"){
if (file_exists($gepiPath."/pmv.php")) {
/**
* appel de pmv.php
*/
require ($gepiPath."/pmv.php");
}
}
// Affichage de la durée de chargement de la page
if (!isset($niveau_arbo)) $niveau_arbo = 1;
if ($niveau_arbo == "0") {
require ("./lib/microtime.php");
} elseif ($niveau_arbo == "1") {
require ("../lib/microtime.php");
} elseif ($niveau_arbo == "2") {
require ("../../lib/microtime.php");
} elseif ($niveau_arbo == "3") {
require ("../../../lib/microtime.php");
}
?>
</div>
<?php
// Pour permettre l'affichage du nombre de champs dans les formulaires, insérer:
// insert into setting set name='affich_debug_info_form', value='y';
// insert into setting set name='login_debug_info_form', value='LOGIN1|LOGIN2|LOGIN3|...';
// insert into setting set name='statut_debug_info_form', value='professeur|administrateur|...';
if(getSettingValue('affich_debug_info_form')=='y') {
$affiche_lien_info_forms="n";
$liste_login_debug_info_form=getSettingValue('login_debug_info_form');
if($liste_login_debug_info_form!='') {
$tab_tmp=explode('|',$liste_login_debug_info_form);
if(in_array($_SESSION['login'],$tab_tmp)) {
$affiche_lien_info_forms="y";
}
}
$liste_statut_debug_info_form=getSettingValue('statut_debug_info_form');
if($liste_statut_debug_info_form!='') {
$tab_tmp=explode('|',$liste_statut_debug_info_form);
if(in_array('all',$tab_tmp)) {
$affiche_lien_info_forms="y";
}
elseif(in_array($_SESSION['statut'],$tab_tmp)) {
$affiche_lien_info_forms="y";
}
}
if($affiche_lien_info_forms=="y") {
echo "<a name='div_info_formulaires'></a>\n";
echo "<a href='#div_info_formulaires' onclick=\"info_form('div_info_formulaires'); afficher_div('div_info_formulaires','y',10,10); return false;\">\n";
if ($niveau_arbo == "0") {
$chemin_img_info_forms="images/ico_question_petit.png";
} elseif ($niveau_arbo == "1") {
$chemin_img_info_forms="../images/ico_question_petit.png";
} elseif ($niveau_arbo == "2") {
$chemin_img_info_forms="../../images/ico_question_petit.png";
} elseif ($niveau_arbo == "3") {
$chemin_img_info_forms="../../../images/ico_question_petit.png";
}
echo "<img src='$chemin_img_info_forms' width='15' height='15' title='Image info forms' />";
echo "</a>\n";
echo "<div id='div_info_formulaires' style='color:red; border:1px solid black; background-color: white; width: 40em; display:none; margin: 1em;'></div>\n";
}
}
$footer_sound= isset ($_SESSION['login']) ? getPref($_SESSION['login'],'footer_sound',"") : '';
if($footer_sound=='') {
$footer_sound=getSettingValue('footer_sound');
if($footer_sound=='') {
$footer_sound="KDE_Beep_Pop.wav";
}
}
if ($niveau_arbo == "0") {
$chemin_sound="./sounds/".$footer_sound;
} elseif ($niveau_arbo == "1") {
$chemin_sound="../sounds/".$footer_sound;
} elseif ($niveau_arbo == "2") {
$chemin_sound="../../sounds/".$footer_sound;
} elseif ($niveau_arbo == "3") {
$chemin_sound="../../../sounds/".$footer_sound;
}
else {
$chemin_sound="../sounds/".$footer_sound;
}
if(file_exists($chemin_sound)) {
echo "<audio id='id_footer_sound' preload='auto' autobuffer>
<source src='$chemin_sound' />
</audio>\n";
// Exemple de code d'appel: document.getElementById('id_footer_sound').play();
// Décommenter pour tester:
//echo "<a href='javascript:play_sound();'>Jouer le son 'footer_sound' : $footer_sound</a>";
echo "
<!--a href='javascript:play_footer_sound();'>Jouer</a-->
<script type='text/javascript'>
function play_footer_sound() {
if(document.getElementById('id_footer_sound')) {
document.getElementById('id_footer_sound').play();
}
}
</script>
";
}
include('alerte_popup.php');
?>
</body>
<?php
//ajout pour dojo
if (isset($javascript_footer_texte_specifique)) {
echo $javascript_footer_texte_specifique;
}
?>
</html>