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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3730 - (hide annotations)
Fri Mar 18 11:50:26 2016 UTC (8 years, 10 months ago) by mbroquet
File size: 1351 byte(s)
Actualisation du trunk
1 mbroquet 3730 <?php
2     /**
3     * Ce fichier permet de configurer les liens presents dans les actions
4     *
5     * @package openmairie_exemple
6     * @version SVN : $Id: actions.inc.php 4418 2015-02-24 17:30:28Z tbenita $
7     */
8    
9     /**
10     * $actions est le tableau associatif qui contient tous les liens presents dans
11     * les actions a cote du login et du nom de la collectivite
12     *
13     * Caracteristiques :
14     * --- action
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     $actions = array();
23    
24     // Template
25     /*
26     $actions[] = array(
27     "title" => _("title"),
28     "description" => _("description"),
29     "href" => "",
30     "target" => "",
31     "class" => "",
32     "right" => "",
33     );
34     */
35    
36     // Mot de passe
37     $actions[] = array(
38     "title" => _("Mot de passe"),
39     "description" => _("Changer votre mot de passe"),
40     "href" => "../scr/password.php",
41     "class" => "actions-password",
42     "right" => "password",
43     );
44    
45     // Deconnexion
46     $actions[] = array(
47     "title" => _("Deconnexion"),
48     "description" => _("Quitter l'application"),
49     "href" => "../scr/logout.php",
50     "class" => "actions-logout",
51     );
52    
53     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26