1 |
fraynaud |
3 |
<?php |
2 |
|
|
/** |
3 |
|
|
* Ce fichier permet de configurer quelles actions vont etre disponibles |
4 |
|
|
* dans le menu. |
5 |
|
|
* |
6 |
|
|
* @package openmairie_exemple |
7 |
fmichon |
2327 |
* @version SVN : $Id: menu.inc.php 2447 2013-08-27 16:46:03Z fmichon $ |
8 |
fraynaud |
3 |
*/ |
9 |
|
|
|
10 |
fmichon |
2327 |
/** |
11 |
|
|
* $menu est le tableau associatif qui contient tout le menu de |
12 |
|
|
* l'application, il contient lui meme un tableau par rubrique, puis chaque |
13 |
|
|
* rubrique contient un tableau par lien |
14 |
|
|
* |
15 |
|
|
* Caracteristiques : |
16 |
|
|
* --- tableau rubrik |
17 |
|
|
* - title [obligatoire] |
18 |
|
|
* - description (texte qui s'affiche au survol de la rubrique) |
19 |
|
|
* - href (contenu du lien href) |
20 |
|
|
* - class (classe css qui s'affiche sur la rubrique) |
21 |
|
|
* - right [optionnel] (droit que l'utilisateur doit avoir pour visionner |
22 |
|
|
* cette rubrique, si aucun droit n'est mentionne alors |
23 |
|
|
* si aucun lien n'est present dans cette rubrique, on |
24 |
|
|
* ne l'affiche pas) |
25 |
|
|
* - links [obligatoire] |
26 |
|
|
* - open [optionnel] permet de définir les critères permettant |
27 |
|
|
* de conserver la rubrique de menu ouverte. |
28 |
|
|
* La définition est une liste de criteres, de type array, contenant des chaines |
29 |
|
|
* de type "script|obj" ou "script|" ou "|obj". |
30 |
|
|
* S'il y a un unique critere on peut ne pas mettre de array |
31 |
|
|
* Si un critere correspond avec l'URL, la rubrique est ouverte. |
32 |
|
|
* |
33 |
|
|
* |
34 |
|
|
* --- tableau links |
35 |
|
|
* - title [obligatoire] |
36 |
|
|
* - href [obligatoire] (contenu du lien href) |
37 |
|
|
* - class (classe css qui s'affiche sur l'element) |
38 |
|
|
* - right (droit que l'utilisateur doit avoir pour visionner cet element) |
39 |
|
|
* - target (pour ouvrir le lien dans une nouvelle fenetre) |
40 |
|
|
* - open [optionnel] idem à ci-dessus. Les "open" de links sont utilises pour la rubrik : |
41 |
|
|
* pas besoin de definir le critere dans rubrik si il est defini dans links |
42 |
|
|
* la correspondance rend le lien actif et la rubrique est ouverte |
43 |
|
|
* exemples : |
44 |
|
|
* open => array("tab.php|users", "form.php|users"), |
45 |
|
|
* open => "|users" |
46 |
|
|
* open => "script.php|" |
47 |
|
|
*/ |
48 |
fmichon |
380 |
// |
49 |
fraynaud |
3 |
$menu = array(); |
50 |
fmichon |
647 |
|
51 |
|
|
// {{{ Rubrique AUTORISATION |
52 |
|
|
// |
53 |
|
|
$rubrik = array( |
54 |
fmichon |
1383 |
"title" => _("Autorisation"), |
55 |
fmichon |
647 |
"class" => "autorisation", |
56 |
|
|
"right" => "menu_autorisation", |
57 |
|
|
); |
58 |
|
|
// |
59 |
|
|
$links = array(); |
60 |
fmichon |
1383 |
|
61 |
|
|
$links[] = array( |
62 |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation", |
63 |
|
|
"class" => "dossier_autorisation", |
64 |
|
|
"title" => _("Dossiers d'autorisation"), |
65 |
|
|
"right" => array("dossier_autorisation", "dossier_autorisation_tab", ), |
66 |
|
|
"open" => array("tab.php|dossier_autorisation", "dossier_autorisation.php|", ), |
67 |
|
|
); |
68 |
softime |
2120 |
|
69 |
|
|
// Lien vers les dossiers d'autorisations qui ont une demande d'avis |
70 |
|
|
$links[] = array( |
71 |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation_avis", |
72 |
vpihour |
2135 |
"class" => "dossier_autorisation", |
73 |
softime |
2120 |
"title" => _("Dossiers d'autorisation"), |
74 |
|
|
"right" => array("dossier_autorisation_avis", "dossier_autorisation_avis_tab", ), |
75 |
|
|
"open" => array("tab.php|dossier_autorisation_avis", "dossier_autorisation_avis.php|", ), |
76 |
|
|
); |
77 |
|
|
|
78 |
fmichon |
647 |
// |
79 |
|
|
$rubrik['links'] = $links; |
80 |
|
|
// |
81 |
|
|
$menu[] = $rubrik; |
82 |
vpihour |
624 |
// }}} |
83 |
fmichon |
647 |
|
84 |
|
|
// {{{ Rubrique GUICHET UNIQUE |
85 |
fmichon |
380 |
// |
86 |
fraynaud |
3 |
$rubrik = array( |
87 |
vpihour |
624 |
"title" => _("Guichet Unique"), |
88 |
fmichon |
647 |
"class" => "guichet_unique", |
89 |
vpihour |
624 |
"right" => "menu_guichet_unique", |
90 |
|
|
); |
91 |
|
|
// |
92 |
|
|
$links = array(); |
93 |
|
|
// |
94 |
|
|
$links[] = array( |
95 |
fmichon |
1463 |
"href" => "../scr/dashboard.php", |
96 |
|
|
"class" => "tableau-de-bord", |
97 |
|
|
"title" => _("tableau de bord"), |
98 |
softime |
2605 |
"right" => "menu_guichet_unique_dashboard", |
99 |
fmichon |
1463 |
"open" => array("dashboard.php|",), |
100 |
|
|
); |
101 |
|
|
// |
102 |
|
|
$links[] = array( |
103 |
vpihour |
624 |
"class" => "category", |
104 |
fmichon |
1463 |
"title" => _("nouvelle demande"), |
105 |
|
|
"right" => array( |
106 |
|
|
"demande_nouveau_dossier_ajouter", |
107 |
nhaye |
2402 |
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
108 |
|
|
"demande_autre_dossier_ajouter", "demande_autre_dossier_tab", |
109 |
fmichon |
1463 |
"demande_consulter","demande_tab", |
110 |
|
|
), |
111 |
vpihour |
624 |
); |
112 |
|
|
$links[] = array( |
113 |
|
|
"title" => "<hr/>", |
114 |
fmichon |
1463 |
"right" => array( |
115 |
nhaye |
2402 |
"demande_dossier_encours_ajouter", |
116 |
|
|
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
117 |
fmichon |
1463 |
), |
118 |
vpihour |
624 |
); |
119 |
|
|
$links[] = array( |
120 |
nhaye |
1100 |
"href" => "../scr/form.php?obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
121 |
fmichon |
1463 |
"class" => "nouveau-dossier", |
122 |
vpihour |
635 |
"title" => _("nouveau dossier"), |
123 |
fmichon |
1463 |
"right" => array( |
124 |
|
|
"demande_nouveau_dossier_ajouter", |
125 |
|
|
), |
126 |
nhaye |
1100 |
"open" => array("form.php|demande_nouveau_dossier",), |
127 |
vpihour |
624 |
); |
128 |
|
|
$links[] = array( |
129 |
nhaye |
2402 |
"href" => "../scr/tab.php?obj=demande_dossier_encours", |
130 |
fmichon |
1463 |
"class" => "dossier-existant", |
131 |
nhaye |
2402 |
"title" => _("dossier en cours"), |
132 |
fmichon |
1463 |
"right" => array( |
133 |
nhaye |
2402 |
"demande_dossier_encours_ajouter","demande_dossier_encours_tab", |
134 |
fmichon |
1463 |
), |
135 |
nhaye |
2402 |
"open" => array("tab.php|demande_dossier_encours", "form.php|demande_dossier_encours"), |
136 |
vpihour |
624 |
); |
137 |
vpihour |
1007 |
$links[] = array( |
138 |
nhaye |
2402 |
"href" => "../scr/tab.php?obj=demande_autre_dossier", |
139 |
|
|
"class" => "autre-dossier", |
140 |
|
|
"title" => _("autre dossier"), |
141 |
|
|
"right" => array( |
142 |
|
|
"demande_autre_dossier_ajouter","demande_autre_dossier_tab", |
143 |
|
|
), |
144 |
|
|
"open" => array("tab.php|demande_autre_dossier", "form.php|demande_autre_dossier"), |
145 |
|
|
); |
146 |
|
|
$links[] = array( |
147 |
fmichon |
1383 |
"title" => "<hr/>", |
148 |
fmichon |
1463 |
"right" => array( |
149 |
|
|
"demande_consulter", "demande_tab" |
150 |
|
|
), |
151 |
fmichon |
1383 |
); |
152 |
|
|
$links[] = array( |
153 |
vpihour |
1007 |
"href" => "../scr/tab.php?obj=demande", |
154 |
fmichon |
1383 |
"class" => "pdf", |
155 |
fmichon |
1463 |
"title" => _("recepisse"), |
156 |
|
|
"right" => array( |
157 |
|
|
"demande_consulter", "demande_tab" |
158 |
|
|
), |
159 |
nhaye |
1100 |
"open" => array("tab.php|demande","form.php|demande"), |
160 |
vpihour |
1007 |
); |
161 |
nhaye |
1587 |
$links[] = array( |
162 |
|
|
"title" => "<hr/>", |
163 |
|
|
"right" => array( |
164 |
|
|
"petitionnaire_frequent_consulter", "petitionnaire_frequent_tab" |
165 |
|
|
), |
166 |
|
|
); |
167 |
|
|
$links[] = array( |
168 |
|
|
"href" => "../scr/tab.php?obj=petitionnaire_frequent", |
169 |
|
|
"class" => "petitionnaire_frequent", |
170 |
|
|
"title" => _("petitionnaire_frequent"), |
171 |
|
|
"right" => array( |
172 |
|
|
"petitionnaire_frequent_consulter", "petitionnaire_frequent_tab" |
173 |
|
|
), |
174 |
|
|
"open" => array("tab.php|petitionnaire_frequent","form.php|petitionnaire_frequent"), |
175 |
|
|
); |
176 |
vpihour |
624 |
// |
177 |
|
|
$links[] = array( |
178 |
|
|
"class" => "category", |
179 |
fmichon |
1422 |
"title" => _("affichage reglementaire"), |
180 |
fmichon |
1463 |
"right" => array( |
181 |
|
|
"affichage_reglementaire_registre", |
182 |
|
|
"affichage_reglementaire_attestation", |
183 |
|
|
), |
184 |
vpihour |
624 |
); |
185 |
|
|
$links[] = array( |
186 |
|
|
"title" => "<hr/>", |
187 |
fmichon |
1463 |
"right" => array( |
188 |
|
|
"affichage_reglementaire_registre", |
189 |
|
|
"affichage_reglementaire_attestation", |
190 |
|
|
), |
191 |
vpihour |
624 |
); |
192 |
|
|
$links[] = array( |
193 |
fmichon |
1463 |
"href" => "../app/affichage_reglementaire_registre.php", |
194 |
vpihour |
624 |
"class" => "edition", |
195 |
fmichon |
1463 |
"title" => _("registre"), |
196 |
|
|
"right" => array( |
197 |
|
|
"affichage_reglementaire_registre", |
198 |
|
|
), |
199 |
|
|
"open" => "affichage_reglementaire_registre.php|", |
200 |
vpihour |
624 |
); |
201 |
|
|
$links[] = array( |
202 |
fmichon |
1463 |
"href" => "../app/affichage_reglementaire_attestation.php", |
203 |
fmichon |
1422 |
"class" => "edition", |
204 |
fmichon |
1463 |
"title" => _("attestation"), |
205 |
|
|
"right" => array( |
206 |
|
|
"affichage_reglementaire_attestation", |
207 |
|
|
), |
208 |
|
|
"open" => "affichage_reglementaire_attestation.php|", |
209 |
vpihour |
624 |
); |
210 |
|
|
// |
211 |
|
|
$rubrik['links'] = $links; |
212 |
|
|
// |
213 |
|
|
$menu[] = $rubrik; |
214 |
|
|
// }}} |
215 |
fmichon |
647 |
|
216 |
|
|
// {{{ Rubrique INSTRUCTION |
217 |
vpihour |
624 |
// |
218 |
|
|
$rubrik = array( |
219 |
fmichon |
380 |
"title" => _("instruction"), |
220 |
fmichon |
566 |
"class" => "instruction", |
221 |
|
|
"right" => "menu_instruction", |
222 |
fraynaud |
3 |
); |
223 |
fmichon |
380 |
// |
224 |
fraynaud |
3 |
$links = array(); |
225 |
fmichon |
1477 |
// |
226 |
|
|
$links[] = array( |
227 |
|
|
"href" => "../scr/dashboard.php", |
228 |
|
|
"class" => "tableau-de-bord", |
229 |
|
|
"title" => _("tableau de bord"), |
230 |
softime |
2605 |
"right" => "menu_instruction_dashboard", |
231 |
fmichon |
1477 |
"open" => array("dashboard.php|",), |
232 |
|
|
); |
233 |
fmichon |
654 |
// Catégorie DOSSIERS D'INSTRUCTION |
234 |
fmichon |
380 |
$links[] = array( |
235 |
fmichon |
647 |
"class" => "category", |
236 |
|
|
"title" => _("dossiers d'instruction"), |
237 |
|
|
"right" => array( |
238 |
|
|
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
239 |
|
|
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
240 |
|
|
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
241 |
|
|
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
242 |
|
|
"dossier_instruction", "dossier_instruction_tab", |
243 |
|
|
"PC_modificatif", "PC_modificatif_tab", |
244 |
|
|
), |
245 |
fmichon |
380 |
); |
246 |
fmichon |
654 |
$links[] = array( |
247 |
|
|
"title" => "<hr/>", |
248 |
|
|
"right" => array( |
249 |
|
|
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
250 |
|
|
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
251 |
|
|
), |
252 |
|
|
); |
253 |
fmichon |
380 |
// |
254 |
|
|
$links[] = array( |
255 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_encours", |
256 |
|
|
"class" => "dossier_instruction_mes_encours", |
257 |
|
|
"title" => _("mes encours"), |
258 |
|
|
"right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ), |
259 |
vpihour |
1206 |
"open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ), |
260 |
fmichon |
380 |
); |
261 |
|
|
// |
262 |
|
|
$links[] = array( |
263 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_tous_encours", |
264 |
|
|
"class" => "dossier_instruction_tous_encours", |
265 |
|
|
"title" => _("tous les encours"), |
266 |
|
|
"right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ), |
267 |
|
|
"open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ), |
268 |
fmichon |
380 |
); |
269 |
|
|
// |
270 |
|
|
$links[] = array( |
271 |
|
|
"title" => "<hr/>", |
272 |
|
|
"right" => array( |
273 |
fmichon |
647 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
274 |
|
|
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
275 |
fmichon |
380 |
), |
276 |
|
|
); |
277 |
|
|
// |
278 |
|
|
$links[] = array( |
279 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures", |
280 |
|
|
"class" => "dossier_instruction_mes_clotures", |
281 |
|
|
"title" => _("mes clotures"), |
282 |
|
|
"right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ), |
283 |
|
|
"open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ), |
284 |
fmichon |
380 |
); |
285 |
|
|
// |
286 |
|
|
$links[] = array( |
287 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures", |
288 |
|
|
"class" => "dossier_instruction_tous_clotures", |
289 |
|
|
"title" => _("tous les clotures"), |
290 |
|
|
"right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ), |
291 |
|
|
"open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ), |
292 |
fmichon |
380 |
); |
293 |
|
|
// |
294 |
|
|
$links[] = array( |
295 |
|
|
"title" => "<hr/>", |
296 |
fmichon |
647 |
"right" => array( |
297 |
|
|
"dossier_instruction", "dossier_instruction_tab", |
298 |
|
|
), |
299 |
fmichon |
380 |
); |
300 |
|
|
// |
301 |
|
|
$links[] = array( |
302 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction", |
303 |
fmichon |
1481 |
"class" => "dossier_instruction_recherche", |
304 |
fmichon |
647 |
"title" => _("recherche"), |
305 |
|
|
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
306 |
|
|
"open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ), |
307 |
fmichon |
380 |
); |
308 |
vpihour |
1276 |
|
309 |
|
|
// Catégorier Qualification |
310 |
|
|
$links[] = array( |
311 |
|
|
"class" => "category", |
312 |
|
|
"title" => _("qualification"), |
313 |
vpihour |
2113 |
"right" => array("dossier_qualifier", "architecte_frequent",), |
314 |
vpihour |
1276 |
); |
315 |
vpihour |
2113 |
// |
316 |
vpihour |
1276 |
$links[] = array( |
317 |
|
|
"title" => "<hr/>", |
318 |
vpihour |
2113 |
"right" => array("dossier_qualifier", "architecte_frequent", ), |
319 |
vpihour |
1276 |
); |
320 |
vpihour |
2113 |
// |
321 |
vpihour |
1276 |
$links[] = array( |
322 |
|
|
"href" => "../scr/tab.php?obj=dossier_qualifier", |
323 |
|
|
"class" => "dossier_qualifier", |
324 |
fmichon |
1663 |
"title" => _("dossiers a qualifier"), |
325 |
vpihour |
1276 |
"right" => array("dossier_qualifier", "dossier_qualifier_tab", ), |
326 |
|
|
"open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ), |
327 |
|
|
); |
328 |
vpihour |
2113 |
// |
329 |
|
|
$links[] = array( |
330 |
|
|
"href" => "../scr/tab.php?obj=architecte_frequent", |
331 |
|
|
"class" => "architecte_frequent", |
332 |
|
|
"title" => _("architecte_frequent"), |
333 |
|
|
"right" => array("architecte_frequent", "architecte_frequent_tab", ), |
334 |
|
|
"open" => array("tab.php|architecte_frequent", "form.php|architecte_frequent", ), |
335 |
|
|
); |
336 |
fmichon |
654 |
// Catégorie CONSULTATIONS |
337 |
nhaye |
496 |
$links[] = array( |
338 |
nhaye |
519 |
"class" => "category", |
339 |
fmichon |
647 |
"title" => _("consultations"), |
340 |
fmichon |
654 |
"right" => array("consultation_mes_retours", "consultation_tous_retours", ), |
341 |
nhaye |
496 |
); |
342 |
|
|
$links[] = array( |
343 |
nhaye |
519 |
"title" => "<hr/>", |
344 |
fmichon |
654 |
"right" => array("consultation_mes_retours", "consultation_tous_retours", ), |
345 |
nhaye |
519 |
); |
346 |
|
|
$links[] = array( |
347 |
nhaye |
509 |
"href" => "../scr/tab.php?obj=consultation_mes_retours", |
348 |
fmichon |
1483 |
"class" => "consultation_mes_retours", |
349 |
nhaye |
509 |
"title" => _("Mes retours"), |
350 |
|
|
"right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ), |
351 |
|
|
"open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ), |
352 |
nhaye |
496 |
); |
353 |
nhaye |
498 |
$links[] = array( |
354 |
nhaye |
509 |
"href" => "../scr/tab.php?obj=consultation_tous_retours", |
355 |
fmichon |
1483 |
"class" => "consultation_tous_retours", |
356 |
nhaye |
509 |
"title" => _("Tous les retours"), |
357 |
|
|
"right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ), |
358 |
|
|
"open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ), |
359 |
nhaye |
498 |
); |
360 |
fmichon |
654 |
// Catégorie MESSAGES |
361 |
mlimic |
599 |
$links[] = array( |
362 |
|
|
"class" => "category", |
363 |
|
|
"title" => _("Messages"), |
364 |
|
|
"right" => array("messages_mes_retours", "messages_tous_retours"), |
365 |
vpihour |
2462 |
"parameters" => array("option_erp" => "true", ), |
366 |
mlimic |
599 |
); |
367 |
fmichon |
654 |
// |
368 |
mlimic |
599 |
$links[] = array( |
369 |
|
|
"title" => "<hr/>", |
370 |
|
|
"right" => array("messages_mes_retours", "messages_tous_retours"), |
371 |
vpihour |
2462 |
"parameters" => array("option_erp" => "true", ), |
372 |
mlimic |
599 |
); |
373 |
fmichon |
654 |
// |
374 |
mlimic |
599 |
$links[] = array( |
375 |
|
|
"href" => "../scr/tab.php?obj=messages_mes_retours", |
376 |
|
|
"class" => "messages_mes_retours", |
377 |
|
|
"title" => _("Mes messages"), |
378 |
|
|
"right" => array("messages_mes_retours", "messages_mes_retours_tab", ), |
379 |
|
|
"open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ), |
380 |
vpihour |
2462 |
"parameters" => array("option_erp" => "true", ), |
381 |
mlimic |
599 |
); |
382 |
fmichon |
654 |
// |
383 |
mlimic |
599 |
$links[] = array( |
384 |
|
|
"href" => "../scr/tab.php?obj=messages_tous_retours", |
385 |
|
|
"class" => "messages_tous_retours", |
386 |
|
|
"title" => _("Tous les messages"), |
387 |
|
|
"right" => array("messages_tous_retours", "messages_tous_retours_tab", ), |
388 |
|
|
"open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ), |
389 |
vpihour |
2462 |
"parameters" => array("option_erp" => "true", ), |
390 |
mlimic |
599 |
); |
391 |
fmichon |
1026 |
// Catégorie COMMISSIONS |
392 |
|
|
$links[] = array( |
393 |
|
|
"class" => "category", |
394 |
|
|
"title" => _("commissions"), |
395 |
|
|
"right" => array( |
396 |
fmichon |
1085 |
"commission_mes_retours", "commission_mes_retours_tab", |
397 |
|
|
"commission_tous_retours", "commission_tous_retours_tab", |
398 |
fmichon |
1026 |
), |
399 |
|
|
); |
400 |
|
|
$links[] = array( |
401 |
|
|
"title" => "<hr/>", |
402 |
|
|
"right" => array( |
403 |
fmichon |
1085 |
"commission_mes_retours", "commission_mes_retours_tab", |
404 |
|
|
"commission_tous_retours", "commission_tous_retours_tab", |
405 |
fmichon |
1026 |
), |
406 |
|
|
); |
407 |
|
|
$links[] = array( |
408 |
fmichon |
1085 |
"href" => "../scr/tab.php?obj=commission_mes_retours", |
409 |
|
|
"class" => "commission_mes_retours", |
410 |
fmichon |
1026 |
"title" => _("Mes retours"), |
411 |
fmichon |
1085 |
"right" => array("commission_mes_retours", "commission_mes_retours_tab", ), |
412 |
|
|
"open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ), |
413 |
fmichon |
1026 |
); |
414 |
|
|
$links[] = array( |
415 |
fmichon |
1085 |
"href" => "../scr/tab.php?obj=commission_tous_retours", |
416 |
|
|
"class" => "commission_tous_retours", |
417 |
fmichon |
1026 |
"title" => _("Tous les retours"), |
418 |
fmichon |
1085 |
"right" => array("commission_tous_retours", "commission_tous_retours_tab", ), |
419 |
|
|
"open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ), |
420 |
fmichon |
1026 |
); |
421 |
mlimic |
599 |
|
422 |
nhaye |
583 |
// |
423 |
|
|
$rubrik['links'] = $links; |
424 |
|
|
// |
425 |
|
|
$menu[] = $rubrik; |
426 |
|
|
// }}} |
427 |
fmichon |
654 |
|
428 |
|
|
// {{{ Rubrique SUIVI |
429 |
nhaye |
583 |
// |
430 |
|
|
$rubrik = array( |
431 |
|
|
"title" => _("Suivi"), |
432 |
|
|
"class" => "suivi", |
433 |
|
|
"right" => "menu_suivi", |
434 |
|
|
); |
435 |
vpihour |
635 |
// |
436 |
nhaye |
583 |
$links = array(); |
437 |
|
|
// |
438 |
nhaye |
533 |
$links[] = array( |
439 |
fmichon |
1477 |
"href" => "../scr/dashboard.php", |
440 |
|
|
"class" => "tableau-de-bord", |
441 |
|
|
"title" => _("tableau de bord"), |
442 |
softime |
2605 |
"right" => "menu_suivi_dashboard", |
443 |
fmichon |
1477 |
"open" => array("dashboard.php|",), |
444 |
nhaye |
533 |
); |
445 |
nhaye |
1208 |
$links[] = array( |
446 |
fmichon |
1477 |
"class" => "category", |
447 |
fmichon |
1666 |
"title" => _("suivi des pieces"), |
448 |
fmichon |
1477 |
"right" => array( |
449 |
fmichon |
1675 |
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
450 |
|
|
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
451 |
fmichon |
1477 |
), |
452 |
nhaye |
1208 |
); |
453 |
fmichon |
1332 |
// |
454 |
nhaye |
1222 |
$links[] = array( |
455 |
fmichon |
1477 |
"title" => "<hr/>", |
456 |
|
|
"right" => array( |
457 |
fmichon |
1675 |
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
458 |
|
|
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
459 |
fmichon |
1477 |
), |
460 |
nhaye |
1222 |
); |
461 |
fmichon |
380 |
// |
462 |
vpihour |
1219 |
$links[] = array( |
463 |
fmichon |
1666 |
"href" => "../app/suivi_retours_de_consultation.php", |
464 |
fmichon |
1481 |
"class" => "consultation-retour", |
465 |
fmichon |
1666 |
"title" => _("retours de consultation"), |
466 |
fmichon |
1477 |
"right" => array( |
467 |
fmichon |
1666 |
"suivi_retours_de_consultation", |
468 |
fmichon |
1477 |
), |
469 |
fmichon |
1666 |
"open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ), |
470 |
vpihour |
1219 |
); |
471 |
fmichon |
1666 |
// |
472 |
|
|
$links[] = array( |
473 |
|
|
"title" => "<hr/>", |
474 |
|
|
"right" => array( |
475 |
fmichon |
1667 |
"suivi_mise_a_jour_des_dates", |
476 |
fmichon |
1666 |
), |
477 |
|
|
); |
478 |
|
|
// |
479 |
|
|
$links[] = array( |
480 |
fmichon |
1667 |
"href" => "../app/suivi_mise_a_jour_des_dates.php", |
481 |
|
|
"class" => "suivi_mise_a_jour_des_dates", |
482 |
fmichon |
1666 |
"title" => _("Mise a jour des dates"), |
483 |
fmichon |
1667 |
"right" => array("suivi_mise_a_jour_des_dates", ), |
484 |
|
|
"open" => array("suivi_mise_a_jour_des_dates.php|"), |
485 |
fmichon |
1666 |
); |
486 |
|
|
// |
487 |
|
|
$links[] = array( |
488 |
|
|
"title" => "<hr/>", |
489 |
|
|
"right" => array( |
490 |
fmichon |
1671 |
"suivi_envoi_lettre_rar", |
491 |
fmichon |
1666 |
), |
492 |
|
|
); |
493 |
|
|
// |
494 |
|
|
$links[] = array( |
495 |
fmichon |
1671 |
"href" => "../app/suivi_envoi_lettre_rar.php", |
496 |
fmichon |
1666 |
"class" => "edition", |
497 |
fmichon |
1686 |
"title" => _("envoi lettre RAR"), |
498 |
fmichon |
1671 |
"right" => array("suivi_envoi_lettre_rar", ), |
499 |
|
|
"open" => array("suivi_envoi_lettre_rar.php|"), |
500 |
fmichon |
1666 |
); |
501 |
|
|
// |
502 |
|
|
$links[] = array( |
503 |
|
|
"title" => "<hr/>", |
504 |
|
|
"right" => array( |
505 |
fmichon |
1675 |
"suivi_bordereaux", |
506 |
fmichon |
1666 |
), |
507 |
|
|
); |
508 |
|
|
// |
509 |
|
|
$links[] = array( |
510 |
fmichon |
1675 |
"href" => "../app/suivi_bordereaux.php", |
511 |
fmichon |
1666 |
"class" => "edition", |
512 |
|
|
"title" => _("Bordereaux"), |
513 |
fmichon |
1675 |
"right" => array("suivi_bordereaux", ), |
514 |
|
|
"open" => array("suivi_bordereaux.php|"), |
515 |
fmichon |
1666 |
); |
516 |
vpihour |
2603 |
// |
517 |
|
|
$links[] = array( |
518 |
|
|
"class" => "category", |
519 |
|
|
"title" => _("Demandes d'avis"), |
520 |
|
|
"right" => array( |
521 |
|
|
"demandes_avis_mise_a_jour_des_dates", |
522 |
|
|
), |
523 |
|
|
); |
524 |
|
|
// |
525 |
|
|
$links[] = array( |
526 |
|
|
"href" => "../app/demandes_avis_mise_a_jour_des_dates.php", |
527 |
|
|
"class" => "demandes_avis_mise_a_jour_des_dates", |
528 |
|
|
"title" => _("Mise a jour des dates"), |
529 |
|
|
"right" => array("demandes_avis_mise_a_jour_des_dates", ), |
530 |
|
|
"open" => array("demandes_avis_mise_a_jour_des_dates.php|"), |
531 |
|
|
); |
532 |
|
|
// |
533 |
fmichon |
1332 |
// Catégorie COMMISSIONS |
534 |
|
|
$links[] = array( |
535 |
|
|
"class" => "category", |
536 |
|
|
"title" => _("commissions"), |
537 |
|
|
"right" => array( |
538 |
|
|
"commission", "commission_tab", |
539 |
|
|
"commission_demandes_passage", "commission_demandes_passage_tab", |
540 |
|
|
), |
541 |
|
|
); |
542 |
vpihour |
1219 |
// |
543 |
fmichon |
1332 |
$links[] = array( |
544 |
|
|
"title" => "<hr/>", |
545 |
|
|
"right" => array( |
546 |
|
|
"commission", "commission_tab", |
547 |
|
|
"commission_demandes_passage", "commission_demandes_passage_tab", |
548 |
|
|
), |
549 |
|
|
); |
550 |
|
|
// |
551 |
|
|
$links[] = array( |
552 |
|
|
"href" => "../scr/tab.php?obj=commission", |
553 |
|
|
"class" => "commissions", |
554 |
fmichon |
1607 |
"title" => _("gestion"), |
555 |
fmichon |
1332 |
"right" => array("commission", ), |
556 |
|
|
"open" => array("tab.php|commission", "form.php|commission", ), |
557 |
|
|
); |
558 |
|
|
// |
559 |
|
|
$links[] = array( |
560 |
|
|
"href" => "../scr/tab.php?obj=commission_demandes_passage", |
561 |
|
|
"class" => "commissions-demande-passage", |
562 |
fmichon |
1607 |
"title" => _("demandes"), |
563 |
fmichon |
1332 |
"right" => array("commission_demandes_passage", ), |
564 |
|
|
"open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ), |
565 |
|
|
); |
566 |
|
|
// |
567 |
fraynaud |
3 |
$rubrik['links'] = $links; |
568 |
fmichon |
380 |
// |
569 |
|
|
$menu[] = $rubrik; |
570 |
|
|
// }}} |
571 |
fmichon |
647 |
|
572 |
|
|
// {{{ Rubrique DEMANDES D'AVIS |
573 |
nhaye |
538 |
// |
574 |
|
|
$rubrik = array( |
575 |
|
|
"title" => _("Demandes d'avis"), |
576 |
|
|
"class" => "demande_avis", |
577 |
fmichon |
566 |
"right" => "menu_demande_avis", |
578 |
nhaye |
538 |
); |
579 |
|
|
// |
580 |
|
|
$links = array(); |
581 |
|
|
// |
582 |
|
|
$links[] = array( |
583 |
fmichon |
1477 |
"href" => "../scr/dashboard.php", |
584 |
|
|
"class" => "tableau-de-bord", |
585 |
|
|
"title" => _("tableau de bord"), |
586 |
softime |
2605 |
"right" => "menu_demande_avis_dashboard", |
587 |
fmichon |
1477 |
"open" => array("dashboard.php|",), |
588 |
|
|
); |
589 |
|
|
// |
590 |
|
|
$links[] = array( |
591 |
|
|
"title" => "<hr/>", |
592 |
|
|
"right" => array( |
593 |
|
|
"demande_avis_encours", "demande_avis_encours_tab", |
594 |
|
|
"demande_avis_passee", "demande_avis_passee_tab", |
595 |
|
|
"demande_avis", "demande_avis_tab", |
596 |
|
|
), |
597 |
|
|
); |
598 |
|
|
// |
599 |
|
|
$links[] = array( |
600 |
nhaye |
571 |
"href" => "../scr/tab.php?obj=demande_avis_encours", |
601 |
|
|
"class" => "demande_avis_encours", |
602 |
nhaye |
538 |
"title" => _("Demandes en cours"), |
603 |
nhaye |
571 |
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
604 |
|
|
"open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ), |
605 |
nhaye |
538 |
); |
606 |
|
|
|
607 |
|
|
$links[] = array( |
608 |
nhaye |
571 |
"href" => "../scr/tab.php?obj=demande_avis_passee", |
609 |
|
|
"class" => "demande_avis_passee", |
610 |
nhaye |
538 |
"title" => _("Demandes passees"), |
611 |
nhaye |
571 |
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
612 |
|
|
"open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ), |
613 |
nhaye |
538 |
); |
614 |
|
|
|
615 |
|
|
$links[] = array( |
616 |
nhaye |
652 |
"href" => "../scr/tab.php?obj=demande_avis", |
617 |
|
|
"class" => "demande_avis", |
618 |
nhaye |
538 |
"title" => _("Exports"), |
619 |
nhaye |
652 |
"right" => array("demande_avis", "demande_avis_tab", ), |
620 |
|
|
"open" => array("tab.php|demande_avis", "form.php|demande_avis", ), |
621 |
nhaye |
538 |
); |
622 |
|
|
|
623 |
|
|
// |
624 |
|
|
$rubrik['links'] = $links; |
625 |
|
|
// |
626 |
|
|
$menu[] = $rubrik; |
627 |
|
|
// }}} |
628 |
|
|
|
629 |
|
|
|
630 |
fmichon |
1528 |
// Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle |
631 |
|
|
// dans cette version |
632 |
nhaye |
1868 |
// {{{ Rubrique EXPORT |
633 |
|
|
// |
634 |
|
|
$rubrik = array( |
635 |
softime |
2445 |
"title" => _("export / import"), |
636 |
nhaye |
1868 |
"class" => "edition", |
637 |
|
|
"right" => "menu_export", |
638 |
|
|
); |
639 |
|
|
// |
640 |
|
|
$links = array(); |
641 |
|
|
// // |
642 |
|
|
// $links[] = array( |
643 |
fmichon |
1528 |
// "href" => "../scr/edition.php", |
644 |
|
|
// "class" => "edition", |
645 |
|
|
// "title" => _("edition"), |
646 |
|
|
// "right" => "edition", |
647 |
|
|
// "open" => "edition.php|", |
648 |
nhaye |
1868 |
// ); |
649 |
|
|
// // |
650 |
|
|
// $links[] = array( |
651 |
fmichon |
1528 |
// "href" => "../app/edition_p.php", |
652 |
|
|
// "class" => "edition", |
653 |
|
|
// "title" => _("edition date depot"), |
654 |
|
|
// "right" => "edition_p", |
655 |
|
|
// "open" => "edition_p.php|", |
656 |
nhaye |
1868 |
// ); |
657 |
|
|
// // |
658 |
|
|
// $links[] = array( |
659 |
fmichon |
1528 |
// "href" => "../app/edition_d.php", |
660 |
|
|
// "class" => "edition", |
661 |
|
|
// "title" => _("edition date decision"), |
662 |
|
|
// "right" => "edition_d", |
663 |
|
|
// "open" => "edition_d.php|", |
664 |
nhaye |
1868 |
// ); |
665 |
|
|
// // |
666 |
|
|
// $links[] = array( |
667 |
fmichon |
1528 |
// "title" => "<hr/>", |
668 |
|
|
// "right" => array("reqmo", "export_sitadel", ), |
669 |
nhaye |
1868 |
// ); |
670 |
|
|
// // |
671 |
|
|
// $links[] = array( |
672 |
fmichon |
1528 |
// "href" => "../scr/reqmo.php", |
673 |
|
|
// "class" => "reqmo", |
674 |
|
|
// "title" => _("requetes memorisees"), |
675 |
|
|
// "right" => "reqmo", |
676 |
|
|
// "open" => array("reqmo.php|", "requeteur.php|", ), |
677 |
nhaye |
1868 |
// ); |
678 |
|
|
// |
679 |
|
|
$links[] = array( |
680 |
|
|
"href" => "../app/sitadel.php", |
681 |
|
|
"class" => "reqmo", |
682 |
|
|
"title" => _("export sitadel"), |
683 |
|
|
"right" => "export_sitadel", |
684 |
|
|
"open" => "sitadel.php|", |
685 |
|
|
); |
686 |
|
|
// |
687 |
softime |
2445 |
$links[] = array( |
688 |
|
|
"href" => "../app/versement_archives.php", |
689 |
|
|
"class" => "versement_archives", |
690 |
|
|
"title" => _("versement aux archives"), |
691 |
|
|
"right" => "versement_archives", |
692 |
|
|
"open" => "versement_archives.php|", |
693 |
|
|
); |
694 |
|
|
// |
695 |
vpihour |
2578 |
$links[] = array( |
696 |
|
|
"href" => "../app/reqmo_pilot.php", |
697 |
|
|
"class" => "reqmo", |
698 |
|
|
"title" => _("statistiques a la demande"), |
699 |
|
|
"right" => "reqmo_pilot", |
700 |
|
|
"open" => "reqmo_pilot.php|", |
701 |
|
|
); |
702 |
|
|
// |
703 |
nhaye |
1868 |
$rubrik['links'] = $links; |
704 |
|
|
// |
705 |
|
|
$menu[] = $rubrik; |
706 |
|
|
// }}} |
707 |
nhaye |
538 |
|
708 |
fraynaud |
3 |
|
709 |
fmichon |
380 |
// {{{ Rubrique PARAMETRAGE |
710 |
|
|
// |
711 |
fraynaud |
3 |
$rubrik = array( |
712 |
fmichon |
1411 |
"title" => _("parametrage dossiers"), |
713 |
|
|
"class" => "parametrage", |
714 |
|
|
"right" => "menu_parametrage", |
715 |
|
|
); |
716 |
|
|
// |
717 |
|
|
$links = array(); |
718 |
|
|
// |
719 |
|
|
$links[] = array( |
720 |
|
|
"class" => "category", |
721 |
fmichon |
1422 |
"title" => _("dossiers"), |
722 |
fmichon |
1411 |
"right" => array( |
723 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
724 |
|
|
"dossier_autorisation_type_detaille", |
725 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
726 |
fmichon |
1422 |
"dossier_instruction_type_tab", "cerfa", "cerfa_tab", |
727 |
fmichon |
1411 |
), |
728 |
|
|
); |
729 |
|
|
// |
730 |
|
|
$links[] = array( |
731 |
|
|
"title" => "<hr/>", |
732 |
|
|
"right" => array( |
733 |
fmichon |
1422 |
"cerfa", "cerfa_tab", |
734 |
|
|
), |
735 |
|
|
); |
736 |
|
|
// |
737 |
|
|
$links[] = array( |
738 |
|
|
"href" => "../scr/tab.php?obj=cerfa", |
739 |
|
|
"class" => "cerfa", |
740 |
|
|
"title" => _("cerfa"), |
741 |
|
|
"right" => array("cerfa", "cerfa_tab", ), |
742 |
|
|
"open" => array("tab.php|cerfa", "form.php|cerfa", ), |
743 |
|
|
); |
744 |
|
|
// |
745 |
|
|
$links[] = array( |
746 |
|
|
"title" => "<hr/>", |
747 |
|
|
"right" => array( |
748 |
fmichon |
1411 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
749 |
|
|
"dossier_autorisation_type_detaille", |
750 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
751 |
|
|
"dossier_instruction_type_tab", |
752 |
|
|
), |
753 |
|
|
); |
754 |
|
|
// |
755 |
|
|
$links[] = array( |
756 |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation_type", |
757 |
|
|
"class" => "dossier_autorisation_type", |
758 |
|
|
"title" => _("type DA"), |
759 |
|
|
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
760 |
|
|
"open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ), |
761 |
|
|
); |
762 |
|
|
// |
763 |
|
|
$links[] = array( |
764 |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille", |
765 |
|
|
"class" => "dossier_autorisation_type_detaille", |
766 |
|
|
"title" => _("type DA detaille"), |
767 |
|
|
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
768 |
|
|
"open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ), |
769 |
|
|
); |
770 |
|
|
// |
771 |
|
|
$links[] = array( |
772 |
|
|
"href" => "../scr/tab.php?obj=dossier_instruction_type", |
773 |
|
|
"class" => "dossier_instruction_type", |
774 |
|
|
"title" => _("type DI"), |
775 |
|
|
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
776 |
|
|
"open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ), |
777 |
|
|
); |
778 |
|
|
$links[] = array( |
779 |
|
|
"class" => "category", |
780 |
fmichon |
1422 |
"title" => _("demandes"), |
781 |
fmichon |
1411 |
"right" => array( |
782 |
|
|
"demande_type", |
783 |
|
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
784 |
|
|
), |
785 |
|
|
); |
786 |
|
|
// |
787 |
|
|
$links[] = array( |
788 |
|
|
"title" => "<hr/>", |
789 |
|
|
"right" => array( |
790 |
|
|
"demande_type", |
791 |
|
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
792 |
|
|
), |
793 |
|
|
); |
794 |
|
|
// |
795 |
|
|
$links[] = array( |
796 |
|
|
"href" => "../scr/tab.php?obj=demande_nature", |
797 |
|
|
"class" => "demande_nature", |
798 |
fmichon |
1550 |
"title" => _("nature"), |
799 |
fmichon |
1411 |
"right" => array("demande_nature", "demande_nature_tab", ), |
800 |
|
|
"open" => array("tab.php|demande_nature", "form.php|demande_nature", ), |
801 |
|
|
); |
802 |
|
|
// |
803 |
|
|
$links[] = array( |
804 |
|
|
"href" => "../scr/tab.php?obj=demande_type", |
805 |
|
|
"class" => "demande_type", |
806 |
fmichon |
1550 |
"title" => _("type"), |
807 |
fmichon |
1411 |
"right" => array("demande_type", "demande_type_tab",), |
808 |
|
|
"open" => array("tab.php|demande_type", "form.php|demande_type", ), |
809 |
|
|
); |
810 |
|
|
// |
811 |
|
|
$links[] = array( |
812 |
|
|
"class" => "category", |
813 |
|
|
"title" => _("workflows"), |
814 |
|
|
"right" => array( |
815 |
fmichon |
1550 |
"workflows", |
816 |
fmichon |
1411 |
"action", "action_tab", "etat", |
817 |
|
|
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
818 |
|
|
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
819 |
|
|
), |
820 |
|
|
); |
821 |
|
|
// |
822 |
|
|
$links[] = array( |
823 |
|
|
"title" => "<hr/>", |
824 |
|
|
"right" => array( |
825 |
fmichon |
1550 |
"workflows", |
826 |
fmichon |
1411 |
"action", "action_tab", "etat", |
827 |
|
|
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
828 |
|
|
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
829 |
|
|
), |
830 |
|
|
); |
831 |
|
|
// |
832 |
|
|
$links[] = array( |
833 |
fmichon |
1550 |
"href" => "../app/workflows.php", |
834 |
|
|
"class" => "workflows", |
835 |
|
|
"title" => _("workflows"), |
836 |
|
|
"right" => array("workflows", ), |
837 |
|
|
"open" => array("workflows.php|", ), |
838 |
|
|
); |
839 |
|
|
// |
840 |
|
|
$links[] = array( |
841 |
|
|
"title" => "<hr/>", |
842 |
|
|
"right" => array( |
843 |
|
|
"evenement", "evenement_tab", |
844 |
|
|
), |
845 |
|
|
); |
846 |
|
|
// |
847 |
|
|
$links[] = array( |
848 |
|
|
"href" => "../scr/tab.php?obj=evenement", |
849 |
|
|
"class" => "evenement", |
850 |
|
|
"title" => _("evenement"), |
851 |
|
|
"right" => array("evenement", "evenement_tab", ), |
852 |
|
|
"open" => array("tab.php|evenement", "form.php|evenement", ), |
853 |
|
|
); |
854 |
|
|
// |
855 |
|
|
$links[] = array( |
856 |
|
|
"title" => "<hr/>", |
857 |
|
|
"right" => array( |
858 |
|
|
"action", "action_tab", "etat", |
859 |
|
|
"etat_tab", "avis_decision", |
860 |
|
|
"avis_decision_tab", |
861 |
|
|
), |
862 |
|
|
); |
863 |
|
|
// |
864 |
|
|
$links[] = array( |
865 |
fmichon |
1411 |
"href" => "../scr/tab.php?obj=etat", |
866 |
|
|
"class" => "workflow-etat", |
867 |
|
|
"title" => _("etat"), |
868 |
|
|
"right" => array("etat", "etat_tab", ), |
869 |
|
|
"open" => array("tab.php|etat", "form.php|etat", ), |
870 |
|
|
); |
871 |
|
|
// |
872 |
|
|
$links[] = array( |
873 |
fmichon |
1550 |
"href" => "../scr/tab.php?obj=avis_decision", |
874 |
|
|
"class" => "avis_decision", |
875 |
|
|
"title" => _("avis decision"), |
876 |
|
|
"right" => array("avis_decision", "avis_decision_tab", ), |
877 |
|
|
"open" => array("tab.php|avis_decision", "form.php|avis_decision", ), |
878 |
|
|
); |
879 |
|
|
// |
880 |
|
|
$links[] = array( |
881 |
fmichon |
1411 |
"href" => "../scr/tab.php?obj=action", |
882 |
|
|
"class" => "action", |
883 |
|
|
"title" => _("action"), |
884 |
|
|
"right" => array("action", "action_tab", ), |
885 |
|
|
"open" => array("tab.php|action", "form.php|action", ), |
886 |
|
|
); |
887 |
|
|
// |
888 |
|
|
$links[] = array( |
889 |
fmichon |
1550 |
"title" => "<hr/>", |
890 |
|
|
"right" => array( |
891 |
|
|
"bible", "bible_tab", |
892 |
|
|
), |
893 |
fmichon |
1411 |
); |
894 |
|
|
// |
895 |
|
|
$links[] = array( |
896 |
|
|
"href" => "../scr/tab.php?obj=bible", |
897 |
|
|
"class" => "bible", |
898 |
|
|
"title" => _("bible"), |
899 |
|
|
"right" => array("bible", "bible_tab", ), |
900 |
|
|
"open" => array("tab.php|bible", "form.php|bible", ), |
901 |
|
|
); |
902 |
|
|
// |
903 |
|
|
$links[] = array( |
904 |
fmichon |
1427 |
"class" => "category", |
905 |
|
|
"title" => _("editions"), |
906 |
|
|
"right" => array( |
907 |
|
|
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
908 |
|
|
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
909 |
|
|
"om_logo", "om_logo_tab", |
910 |
|
|
), |
911 |
|
|
); |
912 |
|
|
// |
913 |
|
|
$links[] = array( |
914 |
|
|
"title" => "<hr/>", |
915 |
|
|
"right" => array( |
916 |
|
|
"om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab", |
917 |
|
|
), |
918 |
|
|
); |
919 |
|
|
// |
920 |
|
|
$links[] = array( |
921 |
|
|
"href" => "../scr/tab.php?obj=om_etat", |
922 |
|
|
"class" => "om_etat", |
923 |
|
|
"title" => _("om_etat"), |
924 |
|
|
"right" => array("om_etat", "om_etat_tab", ), |
925 |
|
|
"open" => array("tab.php|om_etat", "form.php|om_etat", ), |
926 |
|
|
); |
927 |
|
|
// |
928 |
|
|
$links[] = array( |
929 |
|
|
"href" => "../scr/tab.php?obj=om_lettretype", |
930 |
|
|
"class" => "om_lettretype", |
931 |
|
|
"title" => _("om_lettretype"), |
932 |
|
|
"right" => array("om_lettretype", "om_lettretype_tab"), |
933 |
|
|
"open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ), |
934 |
|
|
); |
935 |
|
|
// |
936 |
|
|
$links[] = array( |
937 |
|
|
"title" => "<hr/>", |
938 |
|
|
"right" => array( |
939 |
|
|
"om_logo", "om_logo_tab", |
940 |
|
|
), |
941 |
|
|
); |
942 |
|
|
// |
943 |
|
|
$links[] = array( |
944 |
|
|
"href" => "../scr/tab.php?obj=om_logo", |
945 |
|
|
"class" => "om_logo", |
946 |
|
|
"title" => _("om_logo"), |
947 |
|
|
"right" => array("om_logo", "om_logo_tab", ), |
948 |
|
|
"open" => array("tab.php|om_logo", "form.php|om_logo", ), |
949 |
|
|
); |
950 |
|
|
// |
951 |
fmichon |
1411 |
$rubrik['links'] = $links; |
952 |
|
|
// |
953 |
|
|
$menu[] = $rubrik; |
954 |
|
|
// }}} |
955 |
|
|
|
956 |
|
|
// {{{ Rubrique PARAMETRAGE |
957 |
|
|
// |
958 |
|
|
$rubrik = array( |
959 |
fmichon |
380 |
"title" => _("parametrage"), |
960 |
atreal |
306 |
"class" => "parametrage", |
961 |
|
|
"right" => "menu_parametrage", |
962 |
fraynaud |
3 |
); |
963 |
fmichon |
380 |
// |
964 |
fraynaud |
3 |
$links = array(); |
965 |
fmichon |
380 |
// |
966 |
|
|
$links[] = array( |
967 |
|
|
"href" => "../scr/tab.php?obj=civilite", |
968 |
|
|
"class" => "civilite", |
969 |
|
|
"title" => _("civilite"), |
970 |
|
|
"right" => array("civilite", "civilite_tab", ), |
971 |
|
|
"open" => array("tab.php|civilite", "form.php|civilite", ), |
972 |
|
|
); |
973 |
vpihour |
821 |
// |
974 |
|
|
$links[] = array( |
975 |
nhaye |
1587 |
"href" => "../scr/tab.php?obj=arrondissement", |
976 |
|
|
"class" => "arrondissement", |
977 |
|
|
"title" => _("arrondissement"), |
978 |
|
|
"right" => array("arrondissement", "arrondissement_tab", ), |
979 |
|
|
"open" => array("tab.php|arrondissement", "form.php|arrondissement", ), |
980 |
|
|
); |
981 |
|
|
// |
982 |
|
|
$links[] = array( |
983 |
|
|
"href" => "../scr/tab.php?obj=quartier", |
984 |
|
|
"class" => "quartier", |
985 |
|
|
"title" => _("quartier"), |
986 |
|
|
"right" => array("quartier", "quartier_tab", ), |
987 |
|
|
"open" => array("tab.php|quartier", "form.php|quartier", ), |
988 |
|
|
); |
989 |
|
|
// |
990 |
|
|
$links[] = array( |
991 |
fmichon |
380 |
"class" => "category", |
992 |
nhaye |
521 |
"title" => _("Organisation"), |
993 |
fmichon |
853 |
"right" => array( |
994 |
|
|
"direction", "direction_tab", "division", "division_tab", "instructeur", |
995 |
fmichon |
955 |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
996 |
vpihour |
1226 |
"signataire_arrete", "signataire_arrete_tab", |
997 |
fmichon |
853 |
), |
998 |
nhaye |
521 |
); |
999 |
|
|
$links[] = array( |
1000 |
|
|
"title" => "<hr/>", |
1001 |
fmichon |
853 |
"right" => array( |
1002 |
|
|
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1003 |
fmichon |
955 |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1004 |
vpihour |
1226 |
"signataire_arrete", "signataire_arrete_tab", |
1005 |
fmichon |
853 |
), |
1006 |
nhaye |
521 |
); |
1007 |
|
|
// |
1008 |
|
|
$links[] = array( |
1009 |
fmichon |
866 |
"href" => "../scr/tab.php?obj=genre", |
1010 |
|
|
"class" => "genre", |
1011 |
|
|
"title" => _("genre"), |
1012 |
|
|
"right" => array("genre", "genre_tab", ), |
1013 |
|
|
"open" => array("tab.php|genre", "form.php|genre", ), |
1014 |
|
|
); |
1015 |
|
|
// |
1016 |
|
|
$links[] = array( |
1017 |
fmichon |
853 |
"href" => "../scr/tab.php?obj=groupe", |
1018 |
|
|
"class" => "groupe", |
1019 |
|
|
"title" => _("groupe"), |
1020 |
|
|
"right" => array("groupe", "groupe_tab", ), |
1021 |
|
|
"open" => array("tab.php|groupe", "form.php|groupe", ), |
1022 |
|
|
); |
1023 |
|
|
// |
1024 |
|
|
$links[] = array( |
1025 |
nhaye |
521 |
"href" => "../scr/tab.php?obj=direction", |
1026 |
|
|
"class" => "direction", |
1027 |
|
|
"title" => _("direction"), |
1028 |
|
|
"right" => array("direction", "direction_tab", ), |
1029 |
|
|
"open" => array("tab.php|direction", "form.php|direction", ), |
1030 |
|
|
); |
1031 |
|
|
// |
1032 |
|
|
$links[] = array( |
1033 |
|
|
"href" => "../scr/tab.php?obj=division", |
1034 |
|
|
"class" => "division", |
1035 |
|
|
"title" => _("division"), |
1036 |
|
|
"right" => array("division", "division_tab", ), |
1037 |
|
|
"open" => array("tab.php|division", "form.php|division", ), |
1038 |
|
|
); |
1039 |
|
|
// |
1040 |
|
|
$links[] = array( |
1041 |
|
|
"href" => "../scr/tab.php?obj=instructeur", |
1042 |
|
|
"class" => "instructeur", |
1043 |
|
|
"title" => _("instructeur"), |
1044 |
|
|
"right" => array("instructeur", "instructeur_tab", ), |
1045 |
|
|
"open" => array("tab.php|instructeur", "form.php|instructeur", ), |
1046 |
|
|
); |
1047 |
|
|
// |
1048 |
|
|
$links[] = array( |
1049 |
vpihour |
1226 |
"href" => "../scr/tab.php?obj=signataire_arrete", |
1050 |
|
|
"class" => "signataire_arrete", |
1051 |
|
|
"title" => _("signataire arrete"), |
1052 |
|
|
"right" => array("signataire_arrete", "signataire_arrete", ), |
1053 |
|
|
"open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ), |
1054 |
|
|
); |
1055 |
|
|
// |
1056 |
|
|
$links[] = array( |
1057 |
nhaye |
521 |
"class" => "category", |
1058 |
fmichon |
1026 |
"title" => _("gestion des commissions"), |
1059 |
|
|
"right" => array( |
1060 |
|
|
"comission_type", "comission_type_tab", |
1061 |
|
|
), |
1062 |
|
|
); |
1063 |
|
|
// |
1064 |
|
|
$links[] = array( |
1065 |
|
|
"title" => "<hr/>", |
1066 |
|
|
"right" => array( |
1067 |
|
|
"comission_type", "comission_type_tab", |
1068 |
|
|
), |
1069 |
|
|
); |
1070 |
|
|
// |
1071 |
|
|
$links[] = array( |
1072 |
|
|
"href" => "../scr/tab.php?obj=commission_type", |
1073 |
|
|
"class" => "commission-type", |
1074 |
|
|
"title" => _("commission_type"), |
1075 |
|
|
"right" => array("commission_type", "commission_type_tab", ), |
1076 |
|
|
"open" => array("tab.php|commission_type", "form.php|commission_type", ), |
1077 |
|
|
); |
1078 |
|
|
// |
1079 |
|
|
$links[] = array( |
1080 |
|
|
"class" => "category", |
1081 |
fmichon |
854 |
"title" => _("gestion des consultations"), |
1082 |
fmichon |
853 |
"right" => array( |
1083 |
fmichon |
854 |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1084 |
|
|
"service_categorie", "service_categorie_tab", |
1085 |
|
|
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1086 |
|
|
), |
1087 |
|
|
); |
1088 |
|
|
// |
1089 |
|
|
$links[] = array( |
1090 |
|
|
"title" => "<hr/>", |
1091 |
|
|
"right" => array( |
1092 |
|
|
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1093 |
|
|
"service_categorie", "service_categorie_tab", |
1094 |
|
|
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1095 |
|
|
), |
1096 |
|
|
); |
1097 |
|
|
// |
1098 |
|
|
$links[] = array( |
1099 |
|
|
"href" => "../scr/tab.php?obj=avis_consultation", |
1100 |
|
|
"class" => "avis_consultation", |
1101 |
|
|
"title" => _("avis consultation"), |
1102 |
|
|
"right" => array("avis_consultation", "avis_consultation_tab", ), |
1103 |
|
|
"open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ), |
1104 |
|
|
); |
1105 |
|
|
// |
1106 |
|
|
$links[] = array( |
1107 |
|
|
"href" => "../scr/tab.php?obj=service", |
1108 |
|
|
"class" => "service", |
1109 |
|
|
"title" => _("service"), |
1110 |
|
|
"right" => array("service", "service_tab", ), |
1111 |
|
|
"open" => array("tab.php|service", "form.php|service", ), |
1112 |
|
|
); |
1113 |
|
|
$links[] = array( |
1114 |
|
|
"href" => "../scr/tab.php?obj=service_categorie", |
1115 |
|
|
"class" => "service_categorie", |
1116 |
|
|
"title" => _("thematique des services"), |
1117 |
|
|
"right" => array("service_categorie", "service_categorie_tab", ), |
1118 |
|
|
"open" => array("tab.php|service_categorie", "form.php|service_categorie", ), |
1119 |
|
|
); |
1120 |
|
|
$links[] = array( |
1121 |
|
|
"href" => "../scr/tab.php?obj=lien_service_service_categorie", |
1122 |
|
|
"class" => "lien_service_service_categorie", |
1123 |
|
|
"title" => _("Lien service / thematique"), |
1124 |
|
|
"right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ), |
1125 |
|
|
"open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ), |
1126 |
|
|
); |
1127 |
|
|
// |
1128 |
|
|
$links[] = array( |
1129 |
|
|
"class" => "category", |
1130 |
fmichon |
955 |
"title" => _("Gestion des dossiers"), |
1131 |
|
|
"right" => array( |
1132 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1133 |
|
|
"dossier_autorisation_type_detaille", |
1134 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1135 |
|
|
"dossier_instruction_type_tab", |
1136 |
|
|
"autorite_competente", "autorite_competente_tab", |
1137 |
|
|
"affectation_automatique", "affectation_automatique_tab", |
1138 |
|
|
), |
1139 |
|
|
); |
1140 |
|
|
// |
1141 |
|
|
$links[] = array( |
1142 |
|
|
"title" => "<hr/>", |
1143 |
|
|
"right" => array( |
1144 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1145 |
|
|
"dossier_autorisation_type_detaille", |
1146 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1147 |
|
|
"dossier_instruction_type_tab", |
1148 |
|
|
"autorite_competente", "autorite_competente_tab", |
1149 |
|
|
"affectation_automatique", "affectation_automatique_tab", |
1150 |
|
|
|
1151 |
|
|
), |
1152 |
|
|
); |
1153 |
|
|
// |
1154 |
|
|
$links[] = array( |
1155 |
nhaye |
1587 |
"href" => "../scr/tab.php?obj=etat_dossier_autorisation", |
1156 |
|
|
"class" => "etat_dossier_autorisation", |
1157 |
|
|
"title" => _("etat dossiers autorisations"), |
1158 |
|
|
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
1159 |
|
|
"open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ), |
1160 |
|
|
); |
1161 |
|
|
// |
1162 |
|
|
$links[] = array( |
1163 |
fmichon |
955 |
"href" => "../scr/tab.php?obj=affectation_automatique", |
1164 |
|
|
"class" => "affectation_automatique", |
1165 |
|
|
"title" => _("affectation automatique"), |
1166 |
|
|
"right" => array("affectation_automatique", "affectation_automatique_tab", ), |
1167 |
|
|
"open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ), |
1168 |
|
|
); |
1169 |
|
|
// |
1170 |
|
|
$links[] = array( |
1171 |
|
|
"href" => "../scr/tab.php?obj=autorite_competente", |
1172 |
|
|
"class" => "autorite_competente", |
1173 |
|
|
"title" => _("autorite")." "._("competente"), |
1174 |
|
|
"right" => array("autorite_competente", "autorite_competente_tab", ), |
1175 |
|
|
"open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ), |
1176 |
|
|
); |
1177 |
fmichon |
1427 |
|
1178 |
fmichon |
955 |
// |
1179 |
fraynaud |
196 |
$rubrik['links'] = $links; |
1180 |
fmichon |
380 |
// |
1181 |
|
|
$menu[] = $rubrik; |
1182 |
|
|
// }}} |
1183 |
fraynaud |
196 |
|
1184 |
fmichon |
380 |
// {{{ Rubrique SIG |
1185 |
|
|
// |
1186 |
fraynaud |
196 |
$rubrik = array( |
1187 |
fmichon |
380 |
"title" => _("sig"), |
1188 |
fraynaud |
196 |
"class" => "sig", |
1189 |
|
|
"right" => "menu_sig", |
1190 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1191 |
fraynaud |
196 |
); |
1192 |
fmichon |
380 |
// |
1193 |
fraynaud |
196 |
$links = array(); |
1194 |
fmichon |
380 |
// |
1195 |
|
|
$links[] = array( |
1196 |
|
|
"href" => "../scr/tab.php?obj=parcelle", |
1197 |
|
|
"class" => "parcelle", |
1198 |
|
|
"title" => _("parcelle"), |
1199 |
|
|
"right" => array("parcelle", "parcelle_tab"), |
1200 |
|
|
"open" => array("tab.php|parcelle", "form.php|parcelle", ), |
1201 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1202 |
fmichon |
380 |
); |
1203 |
|
|
// |
1204 |
|
|
$links[] = array( |
1205 |
|
|
"href" => "../scr/tab.php?obj=proprietaire", |
1206 |
|
|
"class" => "proprietaire", |
1207 |
|
|
"title" => _("proprietaire"), |
1208 |
|
|
"right" => array("proprietaire", "proprietaire_tab"), |
1209 |
|
|
"open" => array("tab.php|proprietaire", "form.php|proprietaire", ), |
1210 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1211 |
fmichon |
380 |
); |
1212 |
|
|
// |
1213 |
|
|
$links[] = array( |
1214 |
|
|
"class" => "category", |
1215 |
|
|
"title" => _("servitudes"), |
1216 |
|
|
"right" => array( |
1217 |
|
|
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
1218 |
|
|
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1219 |
|
|
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1220 |
|
|
), |
1221 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1222 |
fmichon |
380 |
); |
1223 |
|
|
// |
1224 |
|
|
$links[] = array( |
1225 |
|
|
"title" => "<hr/>", |
1226 |
|
|
"right" => array( |
1227 |
|
|
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
1228 |
|
|
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1229 |
|
|
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1230 |
|
|
), |
1231 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1232 |
fmichon |
380 |
); |
1233 |
|
|
// |
1234 |
|
|
$links[] = array( |
1235 |
|
|
"href" => "../scr/tab.php?obj=pos", |
1236 |
|
|
"class" => "pos", |
1237 |
|
|
"title" => _("pos"), |
1238 |
|
|
"right" => array("pos", "pos_tab"), |
1239 |
|
|
"open" => array("tab.php|pos", "form.php|pos", ), |
1240 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1241 |
fmichon |
380 |
); |
1242 |
|
|
// |
1243 |
|
|
$links[] = array( |
1244 |
|
|
"href" => "../scr/tab.php?obj=servitude_surfacique", |
1245 |
|
|
"class" => "servitude_surfacique", |
1246 |
|
|
"title" => _("servitude_surfacique"), |
1247 |
|
|
"right" => array("servitude_surfacique", "servitude_surfacique_tab"), |
1248 |
|
|
"open" => array( |
1249 |
|
|
"tab.php|servitude_surfacique", "form.php|servitude_surfacique", |
1250 |
|
|
), |
1251 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1252 |
fmichon |
380 |
); |
1253 |
|
|
// |
1254 |
|
|
$links[] = array( |
1255 |
|
|
"href" => "../scr/tab.php?obj=servitude_ligne", |
1256 |
|
|
"class" => "servitude_ligne", |
1257 |
|
|
"title" => _("servitude_ligne"), |
1258 |
|
|
"right" => array("servitude_ligne", "servitude_ligne_tab"), |
1259 |
|
|
"open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ), |
1260 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1261 |
fmichon |
380 |
); |
1262 |
|
|
// |
1263 |
|
|
$links[] = array( |
1264 |
|
|
"href" => "../scr/tab.php?obj=servitude_point", |
1265 |
|
|
"class" => "servitude_point", |
1266 |
|
|
"title" => _("servitude_point"), |
1267 |
|
|
"right" => array("servitude_point", "servitude_point_tab"), |
1268 |
|
|
"open" => array("tab.php|servitude_point", "form.php|servitude_point", ), |
1269 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1270 |
fmichon |
380 |
); |
1271 |
|
|
// |
1272 |
|
|
$links[] = array( |
1273 |
|
|
"href" => "../scr/tab.php?obj=parcelle_lot", |
1274 |
|
|
"class" => "parcelle_lot", |
1275 |
|
|
"title" => _("parcelle_lot"), |
1276 |
|
|
"right" => array("parcelle_lot", "parcelle_lot_tab"), |
1277 |
|
|
"open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ), |
1278 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1279 |
fmichon |
380 |
); |
1280 |
|
|
// |
1281 |
fraynaud |
3 |
$rubrik['links'] = $links; |
1282 |
fmichon |
380 |
// |
1283 |
|
|
$menu[] = $rubrik; |
1284 |
|
|
// }}} |
1285 |
fraynaud |
3 |
|
1286 |
|
|
// {{{ Rubrique ADMINISTRATION |
1287 |
|
|
// |
1288 |
|
|
$rubrik = array( |
1289 |
fmichon |
380 |
"title" => _("administration"), |
1290 |
fraynaud |
3 |
"class" => "administration", |
1291 |
|
|
"right" => "menu_administration", |
1292 |
|
|
); |
1293 |
|
|
// |
1294 |
|
|
$links = array(); |
1295 |
fmichon |
380 |
// |
1296 |
|
|
$links[] = array( |
1297 |
|
|
"href" => "../scr/tab.php?obj=om_collectivite", |
1298 |
|
|
"class" => "collectivite", |
1299 |
|
|
"title" => _("om_collectivite"), |
1300 |
|
|
"right" => array("om_collectivite", "om_collectivite_tab", ), |
1301 |
|
|
"open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ), |
1302 |
|
|
); |
1303 |
|
|
// |
1304 |
|
|
$links[] = array( |
1305 |
|
|
"href" => "../scr/tab.php?obj=om_parametre", |
1306 |
|
|
"class" => "parametre", |
1307 |
|
|
"title" => _("om_parametre"), |
1308 |
|
|
"right" => array("om_parametre", "om_parametre_tab", ), |
1309 |
|
|
"open" => array("tab.php|om_parametre", "form.php|om_parametre", ), |
1310 |
|
|
); |
1311 |
|
|
// |
1312 |
|
|
$links[] = array( |
1313 |
|
|
"class" => "category", |
1314 |
|
|
"title" => _("gestion des utilisateurs"), |
1315 |
|
|
"right" => array( |
1316 |
|
|
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1317 |
|
|
"om_droit", "om_droit_tab", "directory", |
1318 |
|
|
), |
1319 |
|
|
); |
1320 |
|
|
// |
1321 |
|
|
$links[] = array( |
1322 |
|
|
"title" => "<hr/>", |
1323 |
|
|
"right" => array( |
1324 |
|
|
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1325 |
|
|
"om_droit", "om_droit_tab", |
1326 |
|
|
), |
1327 |
|
|
); |
1328 |
|
|
// |
1329 |
|
|
$links[] = array( |
1330 |
|
|
"href" => "../scr/tab.php?obj=om_profil", |
1331 |
|
|
"class" => "profil", |
1332 |
|
|
"title" => _("om_profil"), |
1333 |
|
|
"right" => array("om_profil", "om_profil_tab", ), |
1334 |
|
|
"open" => array("tab.php|om_profil", "form.php|om_profil", ), |
1335 |
|
|
); |
1336 |
|
|
// |
1337 |
|
|
$links[] = array( |
1338 |
|
|
"href" => "../scr/tab.php?obj=om_droit", |
1339 |
|
|
"class" => "droit", |
1340 |
|
|
"title" => _("om_droit"), |
1341 |
|
|
"right" => array("om_droit", "om_droit_tab", ), |
1342 |
|
|
"open" => array("tab.php|om_droit", "form.php|om_droit", ), |
1343 |
|
|
); |
1344 |
|
|
// |
1345 |
|
|
$links[] = array( |
1346 |
|
|
"href" => "../scr/tab.php?obj=om_utilisateur", |
1347 |
|
|
"class" => "utilisateur", |
1348 |
|
|
"title" => _("om_utilisateur"), |
1349 |
|
|
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
1350 |
|
|
"open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ), |
1351 |
|
|
); |
1352 |
|
|
// |
1353 |
|
|
$links[] = array( |
1354 |
|
|
"title" => "<hr/>", |
1355 |
|
|
"right" => array("directory", ), |
1356 |
|
|
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1357 |
|
|
); |
1358 |
|
|
// |
1359 |
|
|
$links[] = array( |
1360 |
|
|
"href" => "../scr/directory.php", |
1361 |
|
|
"class" => "directory", |
1362 |
|
|
"title" => _("annuaire"), |
1363 |
|
|
"right" => array("directory", ), |
1364 |
|
|
"open" => array("directory.php|", ), |
1365 |
|
|
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1366 |
|
|
); |
1367 |
|
|
// |
1368 |
|
|
$links[] = array( |
1369 |
|
|
"class" => "category", |
1370 |
|
|
"title" => _("tableaux de bord"), |
1371 |
fmichon |
656 |
"right" => array( |
1372 |
fmichon |
2191 |
"om_widget", "om_widget_tab", "om_dashboard", |
1373 |
fmichon |
656 |
), |
1374 |
fmichon |
380 |
); |
1375 |
|
|
// |
1376 |
|
|
$links[] = array( |
1377 |
|
|
"title" => "<hr/>", |
1378 |
fmichon |
656 |
"right" => array( |
1379 |
fmichon |
2191 |
"om_widget", "om_widget_tab", "om_dashboard", |
1380 |
fmichon |
656 |
), |
1381 |
fmichon |
380 |
); |
1382 |
|
|
// |
1383 |
|
|
$links[] = array( |
1384 |
|
|
"href" => "../scr/tab.php?obj=om_widget", |
1385 |
|
|
"class" => "om_widget", |
1386 |
fmichon |
656 |
"title" => _("om_widget"), |
1387 |
fmichon |
380 |
"right" => array("om_widget", "om_widget_tab", ), |
1388 |
|
|
"open" => array("tab.php|om_widget", "form.php|om_widget", ), |
1389 |
|
|
); |
1390 |
|
|
// |
1391 |
|
|
$links[] = array( |
1392 |
fmichon |
2191 |
"href" => "../scr/dashboard_composer.php", |
1393 |
fmichon |
656 |
"class" => "om_dashboard", |
1394 |
fmichon |
2191 |
"title" => _("composition"), |
1395 |
|
|
"right" => array("om_dashboard", ), |
1396 |
|
|
"open" => array("dashboard_composer.php|", ), |
1397 |
fmichon |
656 |
); |
1398 |
|
|
// |
1399 |
|
|
$links[] = array( |
1400 |
fmichon |
380 |
"class" => "category", |
1401 |
|
|
"title" => _("sig"), |
1402 |
|
|
"right" => array( |
1403 |
|
|
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
1404 |
|
|
), |
1405 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1406 |
fmichon |
380 |
); |
1407 |
|
|
// |
1408 |
|
|
$links[] = array( |
1409 |
|
|
"title" => "<hr/>", |
1410 |
|
|
"right" => array( |
1411 |
|
|
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
1412 |
|
|
), |
1413 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1414 |
fmichon |
380 |
); |
1415 |
|
|
// |
1416 |
|
|
$links[] = array( |
1417 |
|
|
"href" => "../scr/tab.php?obj=om_sig_map", |
1418 |
|
|
"class" => "om_sig_map", |
1419 |
|
|
"title" => _("om_sig_map"), |
1420 |
|
|
"right" => array("om_sig_map", "om_sig_map_tab", ), |
1421 |
|
|
"open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ), |
1422 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1423 |
fmichon |
380 |
); |
1424 |
|
|
// |
1425 |
|
|
$links[] = array( |
1426 |
|
|
"href" => "../scr/tab.php?obj=om_sig_wms", |
1427 |
|
|
"class" => "om_sig_wms", |
1428 |
|
|
"title" => _("om_sig_wms"), |
1429 |
|
|
"right" => array("om_sig_wms", "om_sig_wms_tab", ), |
1430 |
|
|
"open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ), |
1431 |
fmichon |
1416 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1432 |
fmichon |
380 |
); |
1433 |
|
|
// |
1434 |
|
|
$links[] = array( |
1435 |
|
|
"class" => "category", |
1436 |
|
|
"title" => _("options avancees"), |
1437 |
fmichon |
1427 |
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
1438 |
|
|
"om_sousetat", "om_sousetat_tab",), |
1439 |
fmichon |
380 |
); |
1440 |
|
|
// |
1441 |
|
|
$links[] = array( |
1442 |
|
|
"title" => "<hr/>", |
1443 |
fmichon |
1427 |
"right" => array( |
1444 |
|
|
"om_sousetat", "om_sousetat_tab", |
1445 |
|
|
), |
1446 |
|
|
); |
1447 |
|
|
// |
1448 |
|
|
$links[] = array( |
1449 |
|
|
"href" => "../scr/tab.php?obj=om_sousetat", |
1450 |
|
|
"class" => "om_sousetat", |
1451 |
|
|
"title" => _("om_sousetat"), |
1452 |
|
|
"right" => array("om_sousetat", "om_sousetat_tab", ), |
1453 |
|
|
"open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ), |
1454 |
|
|
); |
1455 |
|
|
// |
1456 |
|
|
$links[] = array( |
1457 |
|
|
"title" => "<hr/>", |
1458 |
|
|
"right" => array("om_requete", "om_requete_tab", ), |
1459 |
|
|
); |
1460 |
|
|
// |
1461 |
|
|
$links[] = array( |
1462 |
|
|
"href" => "../scr/tab.php?obj=om_requete", |
1463 |
|
|
"class" => "om_requete", |
1464 |
|
|
"title" => _("om_requete"), |
1465 |
|
|
"right" => array("om_requete", "om_requete_tab", ), |
1466 |
|
|
"open" => array("tab.php|om_requete", "form.php|om_requete", ), |
1467 |
|
|
); |
1468 |
|
|
// |
1469 |
|
|
$links[] = array( |
1470 |
|
|
"title" => "<hr/>", |
1471 |
fmichon |
380 |
"right" => array("import", ), |
1472 |
|
|
); |
1473 |
|
|
// |
1474 |
|
|
$links[] = array( |
1475 |
|
|
"href" => "../scr/import.php", |
1476 |
|
|
"class" => "import", |
1477 |
|
|
"title" => _("Import"), |
1478 |
|
|
"right" => array("import", ), |
1479 |
|
|
"open" => array("import.php|", ), |
1480 |
|
|
); |
1481 |
|
|
// |
1482 |
|
|
$links[] = array( |
1483 |
|
|
"title" => "<hr/>", |
1484 |
|
|
"right" => array("gen", ), |
1485 |
|
|
); |
1486 |
|
|
// |
1487 |
|
|
$links[] = array( |
1488 |
|
|
"title" => _("Generateur"), |
1489 |
|
|
"href" => "../scr/gen.php", |
1490 |
|
|
"class" => "generator", |
1491 |
|
|
"right" => array("gen", ), |
1492 |
|
|
"open" => array( |
1493 |
|
|
"gen.php|","genauto.php|", "gensup.php|", "genfull.php|", |
1494 |
|
|
"genetat.php|", "gensousetat.php|", "genlettretype.php|", |
1495 |
|
|
"genimport.php|", |
1496 |
|
|
), |
1497 |
|
|
); |
1498 |
|
|
// |
1499 |
fraynaud |
3 |
$rubrik['links'] = $links; |
1500 |
fmichon |
380 |
// |
1501 |
|
|
$menu[] = $rubrik; |
1502 |
fraynaud |
3 |
// }}} |
1503 |
|
|
|
1504 |
|
|
?> |