-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfoot.php
184 lines (158 loc) · 4.87 KB
/
foot.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
</main>
<footer>
<div>
<nav id="sitemap">
<h5>
<?php echo dgettext('menu', 'Plan du site'); ?>
</h5>
<ul>
<li>
<a href="<?php echo parseURI('/'); ?>">
<?php echo dgettext('menu', 'Accueil'); ?>
</a>
</li>
<li>
<a href="<?php echo parseURI(dgettext('menu', '/fonctionnalites')); ?>">
<?php echo dgettext('menu', 'Fonctionnalités'); ?>
</a>
</li>
<li>
<a href="<?php echo parseURI(dgettext('menu', '/telechargement')); ?>">
<?php echo dgettext('menu', 'Téléchargement'); ?>
</a>
</li>
<li>
<a href="https://forum.duniter.org/c/support/cesium">
<?php echo dgettext('menu', 'Support'); ?>
</a>
</li>
<li>
<a href="<?php echo $rootURL . parseURI(dgettext('menu', '/mentions-legales')); ?>">
<?php echo dgettext('menu', 'Mentions légales'); ?>
</a>
</li>
</ul>
</nav>
<nav id="developper-links">
<h5>
<?php echo dgettext('menu', 'Développeur ? Rejoignez-nous !');?>
</h5>
<ul>
<li>
<a href="https://forum.duniter.org/c/support/cesium">
<?php echo dgettext('menu', 'Forum Cesium'); ?>
</a>
</li>
<li>
<a href="https://forum.duniter.org/c/presentations">
<?php echo dgettext('menu', 'Venez faire connaissance'); ?>
</a>
</li>
<li>
<a href="https://git.duniter.org/clients/cesium-grp/cesium">
<?php echo dgettext('menu', 'Forge GitLab de Cesium'); ?>
</a>
</li>
<li>
<a href="https://git.duniter.org/clients/cesium-grp/cesium/blob/master/doc/development_guide.md">
<?php echo dgettext('menu', 'Guide du développement Cesium'); ?>
</a>
</li>
<li>
<span>contact@duniter.org</span>
</li>
</ul>
</nav>
<section id="about">
<h5><?php echo dgettext('menu', 'Modifier ce site'); ?></h5>
<p>
<?php
echo dgettext('menu', 'Ce site est édité par la communauté Ğ1.');
?>
</p>
<p>
<?php
printf( dgettext('menu', 'Son code source est disponible et modifiable sur <a href="%s">le dépôt Git</a>.'),
WEBSITE_GIT_URL);
?>
</p>
<p>
<?php
echo dgettext('menu', 'Toutes les bonnes volontés sont les bienvenues. ');
?>
<p>
<?php
printf( dgettext('menu', 'Les questions concernant à la modification de ce site peuvent être posées ' .
'sur <a href="%s">l\'espace de discussion correspondant</a>.'), WEBSITE_COMMUNICATION_URL);
?>
</p>
</section>
<nav id="langSelector">
<h5><?php echo dgettext('menu', 'Choix de langue'); ?></h5>
<ul>
<?php
textdomain('menu');
foreach ($availableLanguages as $thisLangIsoCode => $thisLang)
{
/* To have links translated */
putenv('LC_ALL='. $thisLang['localeCode']);
setlocale(LC_ALL, $thisLang['localeCode']);
echo '
<li>';
if ($thisLangIsoCode == LANG) {
echo '
<strong>
<span>
' . $thisLangIsoCode . '
</span>
<span>
' . $thisLang['name'] . '
</span>
</strong>';
} else {
echo '
<a href="'. $rootURL .'/'. $thisLangIsoCode . dgettext('menu', $pagePermalink) .'">
<span>
' . $thisLangIsoCode . '
</span>
<span>
' . $thisLang['name'] . '
</span>
</a>';
}
echo '
</li>';
}
putenv('LC_ALL='. LANG_FOLDER);
setlocale(LC_ALL, LOCALE_CODE);
?>
</ul>
</nav>
</div>
</footer>
<script src="<?php echo $rootURL;?>/lib/scripts.js"></script>
<?php
if ($_SERVER['SERVER_NAME'] != 'localhost') {
?>
<!-- Matomo Image Tracker-->
<img src="https://piwik.p2p.legal/matomo.php?idsite=3&rec=1" style="border:0" alt="" />
<!-- Matomo JS-->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//piwik.p2p.legal/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '3']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<?php
}
?>
</body>
</html>