1 |
fraynaud |
3 |
<?php |
2 |
|
|
/** |
3 |
|
|
* Ce fichier permet de configurer les liens presents dans les actions |
4 |
|
|
* |
5 |
|
|
* @package openmairie_exemple |
6 |
fmichon |
2275 |
* @version SVN : $Id: actions.inc.php 2471 2013-09-11 10:17:45Z fmichon $ |
7 |
fraynaud |
3 |
*/ |
8 |
|
|
|
9 |
fmichon |
2275 |
/** |
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 |
fraynaud |
3 |
$actions = array(); |
23 |
|
|
|
24 |
fmichon |
2275 |
// Template |
25 |
|
|
/* |
26 |
|
|
$actions[] = array( |
27 |
|
|
"title" => _("title"), |
28 |
|
|
"description" => _("description"), |
29 |
|
|
"href" => "", |
30 |
|
|
"target" => "", |
31 |
|
|
"class" => "", |
32 |
|
|
"right" => "", |
33 |
|
|
); |
34 |
|
|
*/ |
35 |
|
|
|
36 |
fraynaud |
3 |
// Mot de passe |
37 |
fmichon |
380 |
$actions[] = array( |
38 |
fraynaud |
3 |
"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 |
fmichon |
380 |
$actions[] = array( |
47 |
fraynaud |
3 |
"title" => _("Deconnexion"), |
48 |
|
|
"description" => _("Quitter l'application"), |
49 |
|
|
"href" => "../scr/logout.php", |
50 |
|
|
"class" => "actions-logout", |
51 |
|
|
); |
52 |
|
|
|
53 |
fmichon |
380 |
?> |