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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3 - (hide annotations)
Thu Feb 10 20:46:18 2011 UTC (13 years, 11 months ago) by fraynaud
File size: 1242 byte(s)
version initiale


1 fraynaud 3 <?php
2     /**
3     * Ce fichier permet de configurer les liens presents dans la barre de
4     * raccourcis presente en dessous des actions
5     *
6     * @package openmairie_exemple
7     * @version SVN : $Id: shortlinks.inc.php 102 2010-09-13 08:42:59Z fmichon $
8     */
9    
10     /**
11     * $shortlinks est le tableau associatif qui contient tous les liens presents
12     * dans les raccourcis en dessous des actions
13     *
14     * Caracteristiques :
15     * --- tableau link
16     * - title [obligatoire]
17     * - description (texte qui s'affiche au survol de l'element)
18     * - href [obligatoire] (contenu du lien href)
19     * - class (classe css qui s'affiche sur l'element)
20     * - right (droit que l'utilisateur doit avoir pour visionner cet element)
21     * - target (pour ouvrir le lien dans une nouvelle fenetre)
22     */
23     $shortlinks = array();
24    
25     // Template
26     /*
27     $link = array(
28     "title" => _(""),
29     "description" => _(""),
30     "href" => "",
31     "target" => "",
32     "class" => "",
33     "right" => "",
34     );
35     array_push($shortlinks, $link);
36     */
37    
38     // Tableau de bord
39     $link = array(
40     "title" => _("Tableau de bord"),
41     "description" => _("Acceder a la page d'accueil de l'application"),
42     "href" => "../scr/dashboard.php",
43     "class" => "shortlinks-dashboard",
44     );
45     array_push($shortlinks, $link);
46    
47     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26