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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2275 - (show annotations)
Wed Sep 11 10:19:46 2013 UTC (11 years, 4 months ago) by fmichon
File size: 1351 byte(s)
Mise à niveau openmairie_exemple 4.4.0

1 <?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 2471 2013-09-11 10:17:45Z 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 * --- 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