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

Annotation of /trunk/dyn/actions.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: 1435 byte(s)
version initiale


1 fraynaud 3 <?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 100 2010-09-09 08:29:29Z fmichon $
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     * --- tableau link
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     $link = array(
27     "title" => _(""),
28     "description" => _(""),
29     "href" => "",
30     "target" => "",
31     "class" => "",
32     "right" => "",
33     );
34     array_push($actions, $link);
35     */
36    
37     // Mot de passe
38     $link = array(
39     "title" => _("Mot de passe"),
40     "description" => _("Changer votre mot de passe"),
41     "href" => "../scr/password.php",
42     "class" => "actions-password",
43     "right" => "password",
44     );
45     array_push($actions, $link);
46    
47     // Deconnexion
48     $link = array(
49     "title" => _("Deconnexion"),
50     "description" => _("Quitter l'application"),
51     "href" => "../scr/logout.php",
52     "class" => "actions-logout",
53     "right" => "logout",
54     );
55     array_push($actions, $link);
56    
57     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26