1 |
fraynaud |
3 |
<?php |
2 |
|
|
/** |
3 |
|
|
* Ce fichier permet de configurer les liens presents dans le footer |
4 |
|
|
* |
5 |
|
|
* @package openmairie_exemple |
6 |
|
|
* @version SVN: $Id: footer.inc.php 100 2010-09-09 08:29:29Z fmichon $ |
7 |
|
|
*/ |
8 |
|
|
|
9 |
fmichon |
380 |
// |
10 |
fraynaud |
3 |
$footer = array(); |
11 |
|
|
|
12 |
|
|
// Documentation du site |
13 |
fmichon |
380 |
$footer[] = array( |
14 |
fraynaud |
3 |
"title" => _("Documentation"), |
15 |
|
|
"description" => _("Acceder a l'espace documentation de l'application"), |
16 |
fmichon |
1579 |
"href" => "../doc/manuel_utilisateur/", |
17 |
fraynaud |
3 |
"target" => "_blank", |
18 |
|
|
"class" => "footer-documentation", |
19 |
|
|
); |
20 |
|
|
|
21 |
|
|
// Portail openMairie |
22 |
fmichon |
380 |
$footer[] = array( |
23 |
fraynaud |
3 |
"title" => _("openMairie.org"), |
24 |
|
|
"description" => _("Site officiel du projet openMairie"), |
25 |
|
|
"href" => "http://www.openmairie.org/", |
26 |
|
|
"target" => "_blank", |
27 |
|
|
"class" => "footer-openmairie", |
28 |
|
|
); |
29 |
|
|
|
30 |
fmichon |
380 |
?> |