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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2277 - (hide annotations)
Wed Sep 11 11:34:37 2013 UTC (11 years, 4 months ago) by fmichon
File size: 1382 byte(s)
Mise à niveau openmairie_exemple 4.4.0

1 fraynaud 3 <?php
2     /**
3     * Ce fichier permet de configurer les liens presents dans le footer
4     *
5     * @package openmairie_exemple
6 fmichon 2277 * @version SVN : $Id: footer.inc.php 2474 2013-09-11 11:34:06Z fmichon $
7 fraynaud 3 */
8    
9 fmichon 2277 /**
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 fraynaud 3 $footer = array();
23    
24 fmichon 2277 // Template
25     /*
26     $footer[] = array(
27     "title" => _(""),
28     "description" => _(""),
29     "href" => "",
30     "target" => "",
31     "class" => "",
32     );
33     */
34    
35 fraynaud 3 // Documentation du site
36 fmichon 380 $footer[] = array(
37 fraynaud 3 "title" => _("Documentation"),
38     "description" => _("Acceder a l'espace documentation de l'application"),
39 fmichon 1579 "href" => "../doc/manuel_utilisateur/",
40 fraynaud 3 "target" => "_blank",
41     "class" => "footer-documentation",
42     );
43    
44     // Portail openMairie
45 fmichon 380 $footer[] = array(
46 fraynaud 3 "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 fmichon 380 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26