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 |
fmichon |
380 |
// |
10 |
fraynaud |
3 |
$actions = array(); |
11 |
|
|
|
12 |
|
|
// Mot de passe |
13 |
fmichon |
380 |
$actions[] = array( |
14 |
fraynaud |
3 |
"title" => _("Mot de passe"), |
15 |
|
|
"description" => _("Changer votre mot de passe"), |
16 |
|
|
"href" => "../scr/password.php", |
17 |
|
|
"class" => "actions-password", |
18 |
|
|
"right" => "password", |
19 |
|
|
); |
20 |
|
|
|
21 |
|
|
// Deconnexion |
22 |
fmichon |
380 |
$actions[] = array( |
23 |
fraynaud |
3 |
"title" => _("Deconnexion"), |
24 |
|
|
"description" => _("Quitter l'application"), |
25 |
|
|
"href" => "../scr/logout.php", |
26 |
|
|
"class" => "actions-logout", |
27 |
|
|
); |
28 |
|
|
|
29 |
fmichon |
380 |
?> |