/[openfoncier]/trunk/dyn/footer.inc.php
ViewVC logotype

Contents of /trunk/dyn/footer.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6929 - (show annotations)
Thu Jun 15 16:57:15 2017 UTC (7 years, 7 months ago) by softime
File size: 1363 byte(s)
* Merge de la 4.2.0

1 <?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 4418 2015-02-24 17:30:28Z tbenita $
7 */
8
9 /**
10 * $footer est le tableau associatif qui contient tous les liens presents dans
11 * le footer de l'application
12 *
13 * Caracteristiques :
14 * --- footer
15 * - title [obligatoire]
16 * - description (texte qui s'affiche au survol de l'element)
17 * - href [obligatoire] (contenu du lien href)
18 * - class (classe css qui s'affiche sur l'element)
19 * - right (droit que l'utilisateur doit avoir pour visionner cet element)
20 * - target (pour ouvrir le lien dans une nouvelle fenetre)
21 */
22 $footer = array();
23
24 // Template
25 /*
26 $footer[] = array(
27 "title" => _(""),
28 "description" => _(""),
29 "href" => "",
30 "target" => "",
31 "class" => "",
32 );
33 */
34
35 // Documentation du site
36 $footer[] = array(
37 "title" => _("Documentation"),
38 "description" => _("Acceder a l'espace documentation de l'application"),
39 "href" => "../doc/",
40 "target" => "_blank",
41 "class" => "footer-documentation",
42 );
43
44 // Portail openMairie
45 $footer[] = array(
46 "title" => _("openMairie.org"),
47 "description" => _("Site officiel du projet openMairie"),
48 "href" => "http://www.openmairie.org/",
49 "target" => "_blank",
50 "class" => "footer-openmairie",
51 );
52
53 ?>

Properties

Name Value
svn:keywords "Id"

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26