1 |
<?php |
2 |
/** |
3 |
* Ce fichier permet de configurer quelles actions vont etre disponibles |
4 |
* dans le menu. |
5 |
* |
6 |
* @package openmairie_exemple |
7 |
* @version SVN : $Id: menu.inc.php 5935 2016-02-15 08:16:02Z fmichon $ |
8 |
*/ |
9 |
|
10 |
/** |
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("index.php|users[module=tab]", "index.php|users[module=form]"), |
45 |
* open => "|users" |
46 |
* open => "script.php|" |
47 |
*/ |
48 |
// |
49 |
$menu = array(); |
50 |
|
51 |
// {{{ Rubrique AUTORISATION |
52 |
// |
53 |
$rubrik = array( |
54 |
"title" => _("Autorisation"), |
55 |
"class" => "autorisation", |
56 |
"right" => "menu_autorisation", |
57 |
); |
58 |
// |
59 |
$links = array(); |
60 |
|
61 |
$links[] = array( |
62 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation", |
63 |
"class" => "dossier_autorisation", |
64 |
"title" => _("Dossiers d'autorisation"), |
65 |
"right" => array("dossier_autorisation", "dossier_autorisation_tab", ), |
66 |
"open" => array("index.php|dossier_autorisation[module=tab]", "index.php|dossier_autorisation[module=form]", ), |
67 |
); |
68 |
|
69 |
// Lien vers les dossiers d'autorisations qui ont une demande d'avis |
70 |
$links[] = array( |
71 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_avis", |
72 |
"class" => "dossier_autorisation", |
73 |
"title" => _("Dossiers d'autorisation"), |
74 |
"right" => array( |
75 |
"dossier_autorisation_avis", |
76 |
"dossier_autorisation_avis_tab", |
77 |
), |
78 |
"open" => array("index.php|dossier_autorisation_avis[module=tab]", "index.php|dossier_autorisation[module=form]", ), |
79 |
); |
80 |
|
81 |
// |
82 |
$rubrik['links'] = $links; |
83 |
// |
84 |
$menu[] = $rubrik; |
85 |
// }}} |
86 |
|
87 |
// {{{ Rubrique GUICHET UNIQUE |
88 |
// |
89 |
$rubrik = array( |
90 |
"title" => _("Guichet Unique"), |
91 |
"class" => "guichet_unique", |
92 |
"right" => "menu_guichet_unique", |
93 |
); |
94 |
// |
95 |
$links = array(); |
96 |
// |
97 |
$links[] = array( |
98 |
"href" => OM_ROUTE_DASHBOARD, |
99 |
"class" => "tableau-de-bord", |
100 |
"title" => _("tableau de bord"), |
101 |
"right" => "menu_guichet_unique_dashboard", |
102 |
"open" => array("index.php|[module=dashboard]",), |
103 |
); |
104 |
// |
105 |
$links[] = array( |
106 |
"class" => "category", |
107 |
"title" => _("nouvelle demande"), |
108 |
"right" => array( |
109 |
"demande", |
110 |
"demande_nouveau_dossier_ajouter", |
111 |
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
112 |
"demande_autre_dossier_ajouter", "demande_autre_dossier_tab", |
113 |
"demande_consulter","demande_tab", |
114 |
), |
115 |
); |
116 |
$links[] = array( |
117 |
"title" => "<hr/>", |
118 |
"right" => array( |
119 |
"demande", |
120 |
"demande_dossier_encours_ajouter", |
121 |
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
122 |
), |
123 |
); |
124 |
$links[] = array( |
125 |
"href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
126 |
"class" => "nouveau-dossier", |
127 |
"title" => _("nouveau dossier"), |
128 |
"right" => array( |
129 |
"demande", |
130 |
"demande_nouveau_dossier_ajouter", |
131 |
), |
132 |
"open" => array("index.php|demande_nouveau_dossier[module=form]",), |
133 |
); |
134 |
$links[] = array( |
135 |
"href" => "".OM_ROUTE_TAB."&obj=demande_dossier_encours", |
136 |
"class" => "dossier-existant", |
137 |
"title" => _("dossier en cours"), |
138 |
"right" => array( |
139 |
"demande", |
140 |
"demande_dossier_encours_ajouter", |
141 |
"demande_dossier_encours_tab", |
142 |
), |
143 |
"open" => array("index.php|demande_dossier_encours[module=tab]", "index.php|demande_dossier_encours[module=form]"), |
144 |
); |
145 |
$links[] = array( |
146 |
"href" => "".OM_ROUTE_TAB."&obj=demande_autre_dossier", |
147 |
"class" => "autre-dossier", |
148 |
"title" => _("autre dossier"), |
149 |
"right" => array( |
150 |
"demande", |
151 |
"demande_autre_dossier_ajouter", |
152 |
"demande_autre_dossier_tab", |
153 |
), |
154 |
"open" => array("index.php|demande_autre_dossier[module=tab]", "index.php|demande_autre_dossier[module=form]"), |
155 |
); |
156 |
$links[] = array( |
157 |
"title" => "<hr/>", |
158 |
"right" => array( |
159 |
"demande", |
160 |
"demande_consulter", |
161 |
"demande_tab" |
162 |
), |
163 |
); |
164 |
$links[] = array( |
165 |
"href" => "".OM_ROUTE_TAB."&obj=demande", |
166 |
"class" => "pdf", |
167 |
"title" => _("recepisse"), |
168 |
"right" => array( |
169 |
"demande", |
170 |
"demande_consulter", |
171 |
"demande_tab" |
172 |
), |
173 |
"open" => array("index.php|demande[module=tab]","index.php|demande[module=form]"), |
174 |
); |
175 |
$links[] = array( |
176 |
"title" => "<hr/>", |
177 |
"right" => array( |
178 |
"petitionnaire_frequent", |
179 |
"petitionnaire_frequent_consulter", |
180 |
"petitionnaire_frequent_tab" |
181 |
), |
182 |
); |
183 |
$links[] = array( |
184 |
"href" => "".OM_ROUTE_TAB."&obj=petitionnaire_frequent", |
185 |
"class" => "petitionnaire_frequent", |
186 |
"title" => _("petitionnaire_frequent"), |
187 |
"right" => array( |
188 |
"petitionnaire_frequent", |
189 |
"petitionnaire_frequent_consulter", |
190 |
"petitionnaire_frequent_tab" |
191 |
), |
192 |
"open" => array("index.php|petitionnaire_frequent[module=tab]","index.php|petitionnaire_frequent[module=form]"), |
193 |
); |
194 |
// |
195 |
$links[] = array( |
196 |
"class" => "category", |
197 |
"title" => _("affichage reglementaire"), |
198 |
"right" => array( |
199 |
"affichage_reglementaire_registre", |
200 |
"affichage_reglementaire_attestation", |
201 |
), |
202 |
); |
203 |
$links[] = array( |
204 |
"title" => "<hr/>", |
205 |
"right" => array( |
206 |
"affichage_reglementaire_registre", |
207 |
"affichage_reglementaire_attestation", |
208 |
), |
209 |
); |
210 |
$links[] = array( |
211 |
"href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_registre&action=110&idx=0", |
212 |
"class" => "affichage_reglementaire_registre", |
213 |
"title" => _("registre"), |
214 |
"right" => array( |
215 |
"affichage_reglementaire_registre", |
216 |
), |
217 |
"open" => array("index.php|demande_affichage_reglementaire_registre[module=tab]", "index.php|demande_affichage_reglementaire_registre[module=form]"), |
218 |
); |
219 |
$links[] = array( |
220 |
"href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_attestation&action=120&idx=0", |
221 |
"class" => "affichage_reglementaire_attestation", |
222 |
"title" => _("attestation"), |
223 |
"right" => array( |
224 |
"affichage_reglementaire_attestation", |
225 |
), |
226 |
"open" => array("index.php|demande_affichage_reglementaire_attestation[module=tab]", "index.php|demande_affichage_reglementaire_attestation[module=form]"), |
227 |
); |
228 |
// |
229 |
$rubrik['links'] = $links; |
230 |
// |
231 |
$menu[] = $rubrik; |
232 |
// }}} |
233 |
|
234 |
// {{{ Rubrique QUALIFICATION |
235 |
// |
236 |
$rubrik = array( |
237 |
"title" => _("Qualification"), |
238 |
"class" => "qualification", |
239 |
"right" => "qualification_menu", |
240 |
); |
241 |
// |
242 |
$links = array(); |
243 |
// |
244 |
$links[] = array( |
245 |
"href" => OM_ROUTE_DASHBOARD, |
246 |
"class" => "tableau-de-bord", |
247 |
"title" => _("tableau de bord"), |
248 |
"right" => "menu_qualification_dashboard", |
249 |
"open" => array("index.php|[module=dashboard]",), |
250 |
); |
251 |
|
252 |
// |
253 |
$links[] = array( |
254 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier_qualificateur", |
255 |
"class" => "dossier_qualifier_qualificateur", |
256 |
"title" => _("dossiers a qualifier"), |
257 |
"right" => array( |
258 |
"dossier_qualifier_qualificateur", |
259 |
"dossier_qualifier_qualificateur_tab", |
260 |
), |
261 |
"open" => array("index.php|dossier_qualifier_qualificateur[module=tab]", "index.php|dossier_instruction[module=form]", ), |
262 |
); |
263 |
|
264 |
// |
265 |
$rubrik['links'] = $links; |
266 |
// |
267 |
$menu[] = $rubrik; |
268 |
// }}} |
269 |
|
270 |
// {{{ Rubrique INSTRUCTION |
271 |
// |
272 |
$rubrik = array( |
273 |
"title" => _("instruction"), |
274 |
"class" => "instruction", |
275 |
"right" => "menu_instruction", |
276 |
); |
277 |
// |
278 |
$links = array(); |
279 |
// |
280 |
$links[] = array( |
281 |
"href" => OM_ROUTE_DASHBOARD, |
282 |
"class" => "tableau-de-bord", |
283 |
"title" => _("tableau de bord"), |
284 |
"right" => "menu_instruction_dashboard", |
285 |
"open" => array("index.php|[module=dashboard]",), |
286 |
); |
287 |
// Catégorie DOSSIERS D'INSTRUCTION |
288 |
$links[] = array( |
289 |
"class" => "category", |
290 |
"title" => _("dossiers d'instruction"), |
291 |
"right" => array( |
292 |
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
293 |
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
294 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
295 |
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
296 |
"dossier_instruction", "dossier_instruction_tab", |
297 |
"PC_modificatif", "PC_modificatif_tab", |
298 |
), |
299 |
); |
300 |
$links[] = array( |
301 |
"title" => "<hr/>", |
302 |
"right" => array( |
303 |
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
304 |
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
305 |
), |
306 |
); |
307 |
// |
308 |
$links[] = array( |
309 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_encours", |
310 |
"class" => "dossier_instruction_mes_encours", |
311 |
"title" => _("mes encours"), |
312 |
"right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ), |
313 |
"open" => array("index.php|dossier_instruction_mes_encours[module=tab]", "index.php|dossier_instruction_mes_encours[module=form]", ), |
314 |
); |
315 |
// |
316 |
$links[] = array( |
317 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_encours", |
318 |
"class" => "dossier_instruction_tous_encours", |
319 |
"title" => _("tous les encours"), |
320 |
"right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ), |
321 |
"open" => array("index.php|dossier_instruction_tous_encours[module=tab]", "index.php|dossier_instruction_tous_encours[module=form]", ), |
322 |
); |
323 |
// |
324 |
$links[] = array( |
325 |
"title" => "<hr/>", |
326 |
"right" => array( |
327 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
328 |
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
329 |
), |
330 |
); |
331 |
// |
332 |
$links[] = array( |
333 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_clotures", |
334 |
"class" => "dossier_instruction_mes_clotures", |
335 |
"title" => _("mes clotures"), |
336 |
"right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ), |
337 |
"open" => array("index.php|dossier_instruction_mes_clotures[module=tab]", "index.php|dossier_instruction_mes_clotures[module=form]", ), |
338 |
); |
339 |
// |
340 |
$links[] = array( |
341 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_clotures", |
342 |
"class" => "dossier_instruction_tous_clotures", |
343 |
"title" => _("tous les clotures"), |
344 |
"right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ), |
345 |
"open" => array("index.php|dossier_instruction_tous_clotures[module=tab]", "index.php|dossier_instruction_tous_clotures[module=form]", ), |
346 |
); |
347 |
// |
348 |
$links[] = array( |
349 |
"title" => "<hr/>", |
350 |
"right" => array( |
351 |
"dossier_instruction", "dossier_instruction_tab", |
352 |
), |
353 |
); |
354 |
// |
355 |
$links[] = array( |
356 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction", |
357 |
"class" => "dossier_instruction_recherche", |
358 |
"title" => _("recherche"), |
359 |
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
360 |
"open" => array("index.php|dossier_instruction[module=tab]", "index.php|dossier_instruction[module=form]", ), |
361 |
); |
362 |
|
363 |
// Catégorier Qualification |
364 |
$links[] = array( |
365 |
"class" => "category", |
366 |
"title" => _("qualification"), |
367 |
"right" => array("dossier_qualifier", "architecte_frequent",), |
368 |
); |
369 |
// |
370 |
$links[] = array( |
371 |
"title" => "<hr/>", |
372 |
"right" => array("dossier_qualifier", "architecte_frequent", ), |
373 |
); |
374 |
// |
375 |
$links[] = array( |
376 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier", |
377 |
"class" => "dossier_qualifier", |
378 |
"title" => _("dossiers a qualifier"), |
379 |
"right" => array("dossier_qualifier", "dossier_qualifier_tab", ), |
380 |
"open" => array("index.php|dossier_qualifier[module=tab]", "index.php|dossier_qualifier[module=form]", ), |
381 |
); |
382 |
// |
383 |
$links[] = array( |
384 |
"href" => "".OM_ROUTE_TAB."&obj=architecte_frequent", |
385 |
"class" => "architecte_frequent", |
386 |
"title" => _("architecte_frequent"), |
387 |
"right" => array("architecte_frequent", "architecte_frequent_tab", ), |
388 |
"open" => array("index.php|architecte_frequent[module=tab]", "index.php|architecte_frequent[module=form]", ), |
389 |
); |
390 |
// Catégorie CONSULTATIONS |
391 |
$links[] = array( |
392 |
"class" => "category", |
393 |
"title" => _("consultations"), |
394 |
"right" => array( |
395 |
"consultation", |
396 |
"consultation_mes_retours", |
397 |
"consultation_retours_ma_division", |
398 |
"consultation_tous_retours", |
399 |
), |
400 |
); |
401 |
$links[] = array( |
402 |
"title" => "<hr/>", |
403 |
"right" => array( |
404 |
"consultation", |
405 |
"consultation_mes_retours", |
406 |
"consultation_retours_ma_division", |
407 |
"consultation_tous_retours", |
408 |
), |
409 |
); |
410 |
$links[] = array( |
411 |
"href" => "".OM_ROUTE_TAB."&obj=consultation_mes_retours", |
412 |
"class" => "consultation_mes_retours", |
413 |
"title" => _("Mes retours"), |
414 |
"right" => array( |
415 |
"consultation", |
416 |
"consultation_mes_retours", |
417 |
"consultation_mes_retours_tab", |
418 |
), |
419 |
"open" => array("index.php|consultation_mes_retours[module=tab]", "index.php|consultation_mes_retours[module=form]", ), |
420 |
); |
421 |
$links[] = array( |
422 |
"href" => "".OM_ROUTE_TAB."&obj=consultation_retours_ma_division", |
423 |
"class" => "consultation_retours_ma_division", |
424 |
"title" => _("Retours de ma division"), |
425 |
"right" => array( |
426 |
"consultation", |
427 |
"consultation_retours_ma_division", |
428 |
"consultation_retours_ma_division_tab", |
429 |
), |
430 |
"open" => array("index.php|consultation_retours_ma_division[module=tab]", "index.php|consultation_retours_ma_division[module=form]", ), |
431 |
); |
432 |
$links[] = array( |
433 |
"href" => "".OM_ROUTE_TAB."&obj=consultation_tous_retours", |
434 |
"class" => "consultation_tous_retours", |
435 |
"title" => _("Tous les retours"), |
436 |
"right" => array( |
437 |
"consultation_tous_retours", |
438 |
"consultation_tous_retours_tab", |
439 |
), |
440 |
"open" => array("index.php|consultation_tous_retours[module=tab]", "index.php|consultation_tous_retours[module=form]", ), |
441 |
); |
442 |
// Catégorie MESSAGES |
443 |
$links[] = array( |
444 |
"class" => "category", |
445 |
"title" => _("Messages"), |
446 |
"right" => array( |
447 |
"messages", |
448 |
"messages_mes_retours", |
449 |
"messages_retours_ma_division", |
450 |
"messages_tous_retours", |
451 |
), |
452 |
); |
453 |
// |
454 |
$links[] = array( |
455 |
"title" => "<hr/>", |
456 |
"right" => array( |
457 |
"messages", |
458 |
"messages_mes_retours", |
459 |
"messages_retours_ma_division", |
460 |
"messages_tous_retours", |
461 |
), |
462 |
); |
463 |
// |
464 |
$links[] = array( |
465 |
"href" => "".OM_ROUTE_TAB."&obj=messages_mes_retours", |
466 |
"class" => "messages_mes_retours", |
467 |
"title" => _("Mes messages"), |
468 |
"right" => array( |
469 |
"messages", |
470 |
"messages_mes_retours", |
471 |
"messages_mes_retours_tab", |
472 |
), |
473 |
"open" => array("index.php|messages_mes_retours[module=tab]", "index.php|messages_mes_retours[module=form]", ), |
474 |
); |
475 |
// |
476 |
$links[] = array( |
477 |
"href" => "".OM_ROUTE_TAB."&obj=messages_retours_ma_division", |
478 |
"class" => "messages_retours_ma_division", |
479 |
"title" => _("Messages de ma division"), |
480 |
"right" => array( |
481 |
"messages", |
482 |
"messages_retours_ma_division", |
483 |
"messages_retours_ma_division_tab", |
484 |
), |
485 |
"open" => array("index.php|messages_retours_ma_division[module=tab]", "index.php|messages_retours_ma_division[module=form]", ), |
486 |
); |
487 |
// |
488 |
$links[] = array( |
489 |
"href" => "".OM_ROUTE_TAB."&obj=messages_tous_retours", |
490 |
"class" => "messages_tous_retours", |
491 |
"title" => _("Tous les messages"), |
492 |
"right" => array( |
493 |
"messages", |
494 |
"messages_tous_retours", |
495 |
"messages_tous_retours_tab", |
496 |
), |
497 |
"open" => array("index.php|messages_tous_retours[module=tab]", "index.php|messages_tous_retours[module=form]", ), |
498 |
); |
499 |
// Catégorie COMMISSIONS |
500 |
$links[] = array( |
501 |
"class" => "category", |
502 |
"title" => _("commissions"), |
503 |
"right" => array( |
504 |
"commission_mes_retours", |
505 |
"commission_mes_retours_tab", |
506 |
"commission_retours_ma_division", |
507 |
"commission_retours_ma_division_tab", |
508 |
"commission_tous_retours", |
509 |
"commission_tous_retours_tab", |
510 |
), |
511 |
); |
512 |
$links[] = array( |
513 |
"title" => "<hr/>", |
514 |
"right" => array( |
515 |
"commission_mes_retours", |
516 |
"commission_mes_retours_tab", |
517 |
"commission_retours_ma_division", |
518 |
"commission_retours_ma_division_tab", |
519 |
"commission_tous_retours", |
520 |
"commission_tous_retours_tab", |
521 |
), |
522 |
); |
523 |
$links[] = array( |
524 |
"href" => "".OM_ROUTE_TAB."&obj=commission_mes_retours", |
525 |
"class" => "commission_mes_retours", |
526 |
"title" => _("Mes retours"), |
527 |
"right" => array( |
528 |
"commission_mes_retours", |
529 |
"commission_mes_retours_tab", |
530 |
), |
531 |
"open" => array("index.php|commission_mes_retours[module=tab]", "index.php|commission_mes_retours[module=form]", ), |
532 |
); |
533 |
$links[] = array( |
534 |
"href" => "".OM_ROUTE_TAB."&obj=commission_retours_ma_division", |
535 |
"class" => "commission_retours_ma_division", |
536 |
"title" => _("Retours de ma division"), |
537 |
"right" => array( |
538 |
"commission_retours_ma_division", |
539 |
"commission_retours_ma_division_tab", |
540 |
), |
541 |
"open" => array("index.php|commission_retours_ma_division[module=tab]", "index.php|commission_retours_ma_division[module=form]", ), |
542 |
); |
543 |
$links[] = array( |
544 |
"href" => "".OM_ROUTE_TAB."&obj=commission_tous_retours", |
545 |
"class" => "commission_tous_retours", |
546 |
"title" => _("Tous les retours"), |
547 |
"right" => array( |
548 |
"commission_tous_retours", |
549 |
"commission_tous_retours_tab", |
550 |
), |
551 |
"open" => array("index.php|commission_tous_retours[module=tab]", "index.php|commission_tous_retours[module=form]", ), |
552 |
); |
553 |
|
554 |
// |
555 |
$rubrik['links'] = $links; |
556 |
// |
557 |
$menu[] = $rubrik; |
558 |
// }}} |
559 |
|
560 |
// {{{ Rubrique Contentieux |
561 |
// |
562 |
$rubrik = array( |
563 |
"title" => _("Contentieux"), |
564 |
"class" => "contentieux", |
565 |
"right" => "menu_contentieux", |
566 |
); |
567 |
// |
568 |
$links = array(); |
569 |
// |
570 |
$links[] = array( |
571 |
"href" => OM_ROUTE_DASHBOARD, |
572 |
"class" => "tableau-de-bord", |
573 |
"title" => _("tableau de bord"), |
574 |
"right" => "menu_contentieux_dashboard", |
575 |
"open" => array("index.php|[module=dashboard]", "index.php|dossier_contentieux_contradictoire[module=tab]", "index.php|dossier_contentieux_ait[module=tab]", "index.php|dossier_contentieux_audience[module=tab]", "index.php|dossier_contentieux_clotures[module=tab]", "index.php|dossier_contentieux_inaffectes[module=tab]", "index.php|dossier_contentieux_alerte_visite[module=tab]", "index.php|dossier_contentieux_alerte_parquet[module=tab]", ), |
576 |
); |
577 |
// Catégorie Nouvelle demande |
578 |
$links[] = array( |
579 |
"class" => "category", |
580 |
"title" => _("Nouvelle demande"), |
581 |
"right" => array( |
582 |
"demande_nouveau_dossier_contentieux_ajouter", |
583 |
), |
584 |
); |
585 |
$links[] = array( |
586 |
"href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier_contentieux&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
587 |
"class" => "nouveau-dossier", |
588 |
"title" => _("nouveau dossier"), |
589 |
"right" => array( |
590 |
"demande_nouveau_dossier_contentieux_ajouter", |
591 |
), |
592 |
"open" => array("index.php|demande_nouveau_dossier_contentieux[module=form]",), |
593 |
); |
594 |
// Catégorie Recours |
595 |
$links[] = array( |
596 |
"class" => "category", |
597 |
"title" => _("Recours"), |
598 |
"right" => array( |
599 |
"dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", |
600 |
"dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", |
601 |
), |
602 |
); |
603 |
// |
604 |
$links[] = array( |
605 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_recours", |
606 |
"class" => "dossier_contentieux_mes_recours", |
607 |
"title" => _("Mes recours"), |
608 |
"right" => array("dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", ), |
609 |
"open" => array("index.php|dossier_contentieux_mes_recours[module=tab]", "index.php|dossier_contentieux_mes_recours[module=form]", ), |
610 |
); |
611 |
$links[] = array( |
612 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_tous_recours", |
613 |
"class" => "dossier_contentieux_tous_recours", |
614 |
"title" => _("Tous les recours"), |
615 |
"right" => array("dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", ), |
616 |
"open" => array("index.php|dossier_contentieux_tous_recours[module=tab]", "index.php|dossier_contentieux_tous_recours[module=form]", ), |
617 |
); |
618 |
// Catégorie Infractions |
619 |
$links[] = array( |
620 |
"class" => "category", |
621 |
"title" => _("Infractions"), |
622 |
"right" => array( |
623 |
"dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", |
624 |
"dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", |
625 |
), |
626 |
); |
627 |
// |
628 |
$links[] = array( |
629 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_infractions", |
630 |
"class" => "dossier_contentieux_mes_infractions", |
631 |
"title" => _("Mes infractions"), |
632 |
"right" => array("dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", ), |
633 |
"open" => array("index.php|dossier_contentieux_mes_infractions[module=tab]", "index.php|dossier_contentieux_mes_infractions[module=form]", ), |
634 |
); |
635 |
// |
636 |
$links[] = array( |
637 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_toutes_infractions", |
638 |
"class" => "dossier_contentieux_toutes_infractions", |
639 |
"title" => _("Toutes les infractions"), |
640 |
"right" => array("dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", ), |
641 |
"open" => array("index.php|dossier_contentieux_toutes_infractions[module=tab]", "index.php|dossier_contentieux_toutes_infractions[module=form]", ), |
642 |
); |
643 |
// Catégorie MESSAGES |
644 |
$links[] = array( |
645 |
"class" => "category", |
646 |
"title" => _("Messages"), |
647 |
"right" => array( |
648 |
"messages_contentieux", |
649 |
"messages_contentieux_mes_retours", |
650 |
"messages_contentieux_retours_ma_division", |
651 |
"messages_contentieux_tous_retours", |
652 |
), |
653 |
); |
654 |
// |
655 |
$links[] = array( |
656 |
"title" => "<hr/>", |
657 |
"right" => array( |
658 |
"messages_contentieux", |
659 |
"messages_contentieux_mes_retours", |
660 |
"messages_contentieux_retours_ma_division", |
661 |
"messages_contentieux_tous_retours", |
662 |
), |
663 |
); |
664 |
// |
665 |
$links[] = array( |
666 |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_mes_retours", |
667 |
"class" => "messages_contentieux_mes_retours", |
668 |
"title" => _("Mes messages"), |
669 |
"right" => array( |
670 |
"messages_contentieux", |
671 |
"messages_contentieux_mes_retours", |
672 |
"messages_contentieux_mes_retours_tab", |
673 |
), |
674 |
"open" => array("index.php|messages_contentieux_mes_retours[module=tab]", "index.php|messages_contentieux_mes_retours[module=form]", ), |
675 |
); |
676 |
// |
677 |
$links[] = array( |
678 |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_retours_ma_division", |
679 |
"class" => "messages_contentieux_retours_ma_division", |
680 |
"title" => _("Messages de ma division"), |
681 |
"right" => array( |
682 |
"messages_contentieux", |
683 |
"messages_contentieux_retours_ma_division", |
684 |
"messages_contentieux_retours_ma_division_tab", |
685 |
), |
686 |
"open" => array("index.php|messages_contentieux_retours_ma_division[module=tab]", "index.php|messages_contentieux_retours_ma_division[module=form]", ), |
687 |
); |
688 |
// |
689 |
$links[] = array( |
690 |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_tous_retours", |
691 |
"class" => "messages_contentieux_tous_retours", |
692 |
"title" => _("Tous les messages"), |
693 |
"right" => array( |
694 |
"messages_contentieux", |
695 |
"messages_contentieux_tous_retours", |
696 |
"messages_contentieux_tous_retours_tab", |
697 |
), |
698 |
"open" => array("index.php|messages_contentieux_tous_retours[module=tab]", "index.php|messages_contentieux_tous_retours[module=form]", ), |
699 |
); |
700 |
|
701 |
|
702 |
// |
703 |
$rubrik['links'] = $links; |
704 |
// |
705 |
$menu[] = $rubrik; |
706 |
// }}} |
707 |
|
708 |
// {{{ Rubrique SUIVI |
709 |
// |
710 |
$rubrik = array( |
711 |
"title" => _("Suivi"), |
712 |
"class" => "suivi", |
713 |
"right" => "menu_suivi", |
714 |
); |
715 |
// |
716 |
$links = array(); |
717 |
// |
718 |
$links[] = array( |
719 |
"href" => OM_ROUTE_DASHBOARD, |
720 |
"class" => "tableau-de-bord", |
721 |
"title" => _("tableau de bord"), |
722 |
"right" => "menu_suivi_dashboard", |
723 |
"open" => array("index.php|[module=dashboard]",), |
724 |
); |
725 |
$links[] = array( |
726 |
"class" => "category", |
727 |
"title" => _("suivi des pieces"), |
728 |
"right" => array( |
729 |
"instruction_suivi_retours_de_consultation", "instruction_suivi_mise_a_jour_des_dates", |
730 |
"instruction_suivi_envoi_lettre_rar", "instruction_suivi_bordereaux", |
731 |
"instruction_suivi_retours_de_consultation_consulter", "instruction_suivi_mise_a_jour_des_dates_consulter", |
732 |
"instruction_suivi_envoi_lettre_rar_consulter", "instruction_suivi_bordereaux_consulter", |
733 |
), |
734 |
); |
735 |
// |
736 |
$links[] = array( |
737 |
"title" => "<hr/>", |
738 |
"right" => array( |
739 |
"instruction_suivi_retours_de_consultation", "instruction_suivi_mise_a_jour_des_dates", |
740 |
"instruction_suivi_envoi_lettre_rar", "instruction_suivi_bordereaux", |
741 |
"instruction_suivi_retours_de_consultation_consulter", "instruction_suivi_mise_a_jour_des_dates_consulter", |
742 |
"instruction_suivi_envoi_lettre_rar_consulter", "instruction_suivi_bordereaux_consulter", |
743 |
), |
744 |
); |
745 |
// |
746 |
$links[] = array( |
747 |
"title" => "<hr/>", |
748 |
"right" => array( |
749 |
"instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", |
750 |
), |
751 |
); |
752 |
// |
753 |
$links[] = array( |
754 |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_mise_a_jour_des_dates&action=170&idx=0", |
755 |
"class" => "suivi_mise_a_jour_des_dates", |
756 |
"title" => _("Mise a jour des dates"), |
757 |
"right" => array("instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", ), |
758 |
"open" => array("index.php|instruction_suivi_mise_a_jour_des_dates[module=tab]", "index.php|instruction_suivi_mise_a_jour_des_dates[module=form]"), |
759 |
); |
760 |
// |
761 |
$links[] = array( |
762 |
"title" => "<hr/>", |
763 |
"right" => array( |
764 |
"instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", |
765 |
), |
766 |
); |
767 |
// |
768 |
$links[] = array( |
769 |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_envoi_lettre_rar&action=160&idx=0", |
770 |
"class" => "envoi_lettre_rar", |
771 |
"title" => _("envoi lettre RAR"), |
772 |
"right" => array("instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", ), |
773 |
"open" => array("index.php|instruction_suivi_envoi_lettre_rar[module=tab]", "index.php|instruction_suivi_envoi_lettre_rar[module=form]"), |
774 |
); |
775 |
// |
776 |
$links[] = array( |
777 |
"title" => "<hr/>", |
778 |
"right" => array( |
779 |
"instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", |
780 |
), |
781 |
); |
782 |
// |
783 |
$links[] = array( |
784 |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_bordereaux&action=150&idx=0", |
785 |
"class" => "bordereaux", |
786 |
"title" => _("Bordereaux"), |
787 |
"right" => array("instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", ), |
788 |
"open" => array("index.php|instruction_suivi_bordereaux[module=tab]", "index.php|instruction_suivi_bordereaux[module=form]"), |
789 |
); |
790 |
// |
791 |
$links[] = array( |
792 |
"href" => "".OM_ROUTE_FORM."&obj=bordereau_envoi_maire&action=190&idx=0", |
793 |
"class" => "bordereau_envoi_maire", |
794 |
"title" => _("Bordereau d'envoi au maire"), |
795 |
"right" => array("instruction_bordereau_envoi_maire","bordereau_envoi_maire"), |
796 |
"open" => array("index.php|bordereau_envoi_maire[module=form]",), |
797 |
); |
798 |
// |
799 |
$links[] = array( |
800 |
"class" => "category", |
801 |
"title" => _("Demandes d'avis"), |
802 |
"right" => array( |
803 |
"consultation_suivi_mise_a_jour_des_dates", |
804 |
"consultation_suivi_retours_de_consultation", |
805 |
), |
806 |
); |
807 |
// |
808 |
$links[] = array( |
809 |
"href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=110", |
810 |
"class" => "demandes_avis_mise_a_jour_des_dates", |
811 |
"title" => _("Mise a jour des dates"), |
812 |
"right" => array("consultation_suivi_mise_a_jour_des_dates", ), |
813 |
"open" => array("index.php|consultation[module=form][action=110]"), |
814 |
); |
815 |
// |
816 |
$links[] = array( |
817 |
"href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=120", |
818 |
"class" => "consultation-retour", |
819 |
"title" => _("retours de consultation"), |
820 |
"right" => array("consultation_suivi_retours_de_consultation", ), |
821 |
"open" => array("index.php|consultation[module=form][action=120]", "index.php|consultation[module=form][action=100]", ), |
822 |
); |
823 |
// Catégorie COMMISSIONS |
824 |
$links[] = array( |
825 |
"class" => "category", |
826 |
"title" => _("commissions"), |
827 |
"right" => array( |
828 |
"commission", |
829 |
"commission_tab", |
830 |
"commission_demandes_passage", |
831 |
"commission_demandes_passage_tab", |
832 |
), |
833 |
); |
834 |
// |
835 |
$links[] = array( |
836 |
"title" => "<hr/>", |
837 |
"right" => array( |
838 |
"commission", |
839 |
"commission_tab", |
840 |
"commission_demandes_passage", |
841 |
"commission_demandes_passage_tab", |
842 |
), |
843 |
); |
844 |
// |
845 |
$links[] = array( |
846 |
"href" => "".OM_ROUTE_TAB."&obj=commission", |
847 |
"class" => "commissions", |
848 |
"title" => _("gestion"), |
849 |
"right" => array( |
850 |
"commission", |
851 |
), |
852 |
"open" => array("index.php|commission[module=tab]", "index.php|commission[module=form]", ), |
853 |
); |
854 |
// |
855 |
$links[] = array( |
856 |
"href" => "".OM_ROUTE_TAB."&obj=commission_demandes_passage", |
857 |
"class" => "commissions-demande-passage", |
858 |
"title" => _("demandes"), |
859 |
"right" => array( |
860 |
"commission", |
861 |
"commission_demandes_passage", |
862 |
), |
863 |
"open" => array("index.php|commission_demandes_passage[module=tab]", "index.php|commission_demandes_passage[module=form]", ), |
864 |
); |
865 |
// |
866 |
$rubrik['links'] = $links; |
867 |
// |
868 |
$menu[] = $rubrik; |
869 |
// }}} |
870 |
|
871 |
// {{{ Rubrique DEMANDES D'AVIS |
872 |
// |
873 |
$rubrik = array( |
874 |
"title" => _("Demandes d'avis"), |
875 |
"class" => "demande_avis", |
876 |
"right" => "menu_demande_avis", |
877 |
); |
878 |
// |
879 |
$links = array(); |
880 |
// |
881 |
$links[] = array( |
882 |
"href" => OM_ROUTE_DASHBOARD, |
883 |
"class" => "tableau-de-bord", |
884 |
"title" => _("tableau de bord"), |
885 |
"right" => "menu_demande_avis_dashboard", |
886 |
"open" => array("index.php|[module=dashboard]",), |
887 |
); |
888 |
// |
889 |
$links[] = array( |
890 |
"title" => "<hr/>", |
891 |
"right" => array( |
892 |
"demande_avis_encours", "demande_avis_encours_tab", |
893 |
"demande_avis_passee", "demande_avis_passee_tab", |
894 |
"demande_avis", "demande_avis_tab", |
895 |
), |
896 |
); |
897 |
// |
898 |
$links[] = array( |
899 |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis_encours", |
900 |
"class" => "demande_avis_encours", |
901 |
"title" => _("Demandes en cours"), |
902 |
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
903 |
"open" => array("index.php|demande_avis_encours[module=tab]", "index.php|demande_avis_encours[module=form]", ), |
904 |
); |
905 |
|
906 |
$links[] = array( |
907 |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis_passee", |
908 |
"class" => "demande_avis_passee", |
909 |
"title" => _("Demandes passees"), |
910 |
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
911 |
"open" => array("index.php|demande_avis_passee[module=tab]", "index.php|demande_avis_passee[module=form]", ), |
912 |
); |
913 |
|
914 |
$links[] = array( |
915 |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis", |
916 |
"class" => "demande_avis", |
917 |
"title" => _("Exports"), |
918 |
"right" => array("demande_avis", "demande_avis_tab", ), |
919 |
"open" => array("index.php|demande_avis[module=tab]", "index.php|demande_avis[module=form]", ), |
920 |
); |
921 |
|
922 |
// |
923 |
$rubrik['links'] = $links; |
924 |
// |
925 |
$menu[] = $rubrik; |
926 |
// }}} |
927 |
|
928 |
|
929 |
// Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle |
930 |
// dans cette version |
931 |
// {{{ Rubrique EXPORT |
932 |
// |
933 |
$rubrik = array( |
934 |
"title" => _("export / import"), |
935 |
"class" => "edition", |
936 |
"right" => "menu_export", |
937 |
); |
938 |
// |
939 |
$links = array(); |
940 |
|
941 |
// |
942 |
$links[] = array( |
943 |
"href" => "".OM_ROUTE_FORM."&obj=sitadel&action=6&idx=0", |
944 |
"class" => "sitadel", |
945 |
"title" => _("export sitadel"), |
946 |
"right" => "export_sitadel", |
947 |
"open" => "index.php|sitadel[module=form]", |
948 |
); |
949 |
// |
950 |
$links[] = array( |
951 |
"href" => "../app/versement_archives.php", |
952 |
"class" => "versement_archives", |
953 |
"title" => _("versement aux archives"), |
954 |
"right" => "versement_archives", |
955 |
"open" => "versement_archives.php|", |
956 |
); |
957 |
// |
958 |
$links[] = array( |
959 |
"href" => "../app/reqmo_pilot.php", |
960 |
"class" => "reqmo", |
961 |
"title" => _("statistiques a la demande"), |
962 |
"right" => "reqmo_pilot", |
963 |
"open" => "reqmo_pilot.php|", |
964 |
); |
965 |
// |
966 |
$rubrik['links'] = $links; |
967 |
// |
968 |
$menu[] = $rubrik; |
969 |
// }}} |
970 |
|
971 |
|
972 |
// {{{ Rubrique PARAMETRAGE |
973 |
// |
974 |
$rubrik = array( |
975 |
"title" => _("parametrage dossiers"), |
976 |
"class" => "parametrage-dossier", |
977 |
"right" => "menu_parametrage", |
978 |
); |
979 |
// |
980 |
$links = array(); |
981 |
// |
982 |
$links[] = array( |
983 |
"class" => "category", |
984 |
"title" => _("dossiers"), |
985 |
"right" => array( |
986 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
987 |
"dossier_autorisation_type_detaille", |
988 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
989 |
"dossier_instruction_type_tab", "cerfa", "cerfa_tab", |
990 |
), |
991 |
); |
992 |
// |
993 |
$links[] = array( |
994 |
"title" => "<hr/>", |
995 |
"right" => array( |
996 |
"cerfa", "cerfa_tab", |
997 |
), |
998 |
); |
999 |
// |
1000 |
$links[] = array( |
1001 |
"href" => "".OM_ROUTE_TAB."&obj=cerfa", |
1002 |
"class" => "cerfa", |
1003 |
"title" => _("cerfa"), |
1004 |
"right" => array("cerfa", "cerfa_tab", ), |
1005 |
"open" => array("index.php|cerfa[module=tab]", "index.php|cerfa[module=form]", ), |
1006 |
); |
1007 |
// |
1008 |
$links[] = array( |
1009 |
"title" => "<hr/>", |
1010 |
"right" => array( |
1011 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1012 |
"dossier_autorisation_type_detaille", |
1013 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1014 |
"dossier_instruction_type_tab", |
1015 |
), |
1016 |
); |
1017 |
// |
1018 |
$links[] = array( |
1019 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type", |
1020 |
"class" => "dossier_autorisation_type", |
1021 |
"title" => _("type DA"), |
1022 |
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
1023 |
"open" => array("index.php|dossier_autorisation_type[module=tab]", "index.php|dossier_autorisation_type[module=form]", ), |
1024 |
); |
1025 |
// |
1026 |
$links[] = array( |
1027 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type_detaille", |
1028 |
"class" => "dossier_autorisation_type_detaille", |
1029 |
"title" => _("type DA detaille"), |
1030 |
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
1031 |
"open" => array("index.php|dossier_autorisation_type_detaille[module=tab]", "index.php|dossier_autorisation_type_detaille[module=form]", ), |
1032 |
); |
1033 |
// |
1034 |
$links[] = array( |
1035 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_type", |
1036 |
"class" => "dossier_instruction_type", |
1037 |
"title" => _("type DI"), |
1038 |
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
1039 |
"open" => array("index.php|dossier_instruction_type[module=tab]", "index.php|dossier_instruction_type[module=form]", ), |
1040 |
); |
1041 |
// |
1042 |
$links[] = array( |
1043 |
"title" => "<hr/>", |
1044 |
"right" => array( |
1045 |
"contrainte", "contrainte_tab", |
1046 |
"contrainte_souscategorie", "contrainte_souscategorie_tab", |
1047 |
"contrainte_categorie", "contrainte_categorie_tab" |
1048 |
), |
1049 |
); |
1050 |
// |
1051 |
$links[] = array( |
1052 |
"href" => "".OM_ROUTE_TAB."&obj=contrainte", |
1053 |
"class" => "contrainte", |
1054 |
"title" => _("contrainte"), |
1055 |
"right" => array("contrainte", "contrainte_tab", ), |
1056 |
"open" => array( |
1057 |
"index.php|contrainte[module=tab]", |
1058 |
"index.php|contrainte[module=form][action=0]", |
1059 |
"index.php|contrainte[module=form][action=1]", |
1060 |
"index.php|contrainte[module=form][action=2]", |
1061 |
"index.php|contrainte[module=form][action=3]", |
1062 |
), |
1063 |
); |
1064 |
// |
1065 |
$links[] = array( |
1066 |
"class" => "category", |
1067 |
"title" => _("demandes"), |
1068 |
"right" => array( |
1069 |
"demande_type", |
1070 |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
1071 |
), |
1072 |
); |
1073 |
// |
1074 |
$links[] = array( |
1075 |
"title" => "<hr/>", |
1076 |
"right" => array( |
1077 |
"demande_type", |
1078 |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
1079 |
), |
1080 |
); |
1081 |
// |
1082 |
$links[] = array( |
1083 |
"href" => "".OM_ROUTE_TAB."&obj=demande_nature", |
1084 |
"class" => "demande_nature", |
1085 |
"title" => _("nature"), |
1086 |
"right" => array("demande_nature", "demande_nature_tab", ), |
1087 |
"open" => array("index.php|demande_nature[module=tab]", "index.php|demande_nature[module=form]", ), |
1088 |
); |
1089 |
// |
1090 |
$links[] = array( |
1091 |
"href" => "".OM_ROUTE_TAB."&obj=demande_type", |
1092 |
"class" => "demande_type", |
1093 |
"title" => _("type"), |
1094 |
"right" => array("demande_type", "demande_type_tab",), |
1095 |
"open" => array("index.php|demande_type[module=tab]", "index.php|demande_type[module=form]", ), |
1096 |
); |
1097 |
// |
1098 |
$links[] = array( |
1099 |
"class" => "category", |
1100 |
"title" => _("workflows"), |
1101 |
"right" => array( |
1102 |
"workflows", |
1103 |
"action", "action_tab", "etat", |
1104 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
1105 |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
1106 |
), |
1107 |
); |
1108 |
// |
1109 |
$links[] = array( |
1110 |
"title" => "<hr/>", |
1111 |
"right" => array( |
1112 |
"workflows", |
1113 |
"action", "action_tab", "etat", |
1114 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
1115 |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
1116 |
), |
1117 |
); |
1118 |
// |
1119 |
$links[] = array( |
1120 |
"href" => "../app/workflows.php", |
1121 |
"class" => "workflows", |
1122 |
"title" => _("workflows"), |
1123 |
"right" => array("workflows", ), |
1124 |
"open" => array("workflows.php|", ), |
1125 |
); |
1126 |
// |
1127 |
$links[] = array( |
1128 |
"title" => "<hr/>", |
1129 |
"right" => array( |
1130 |
"evenement", "evenement_tab", |
1131 |
), |
1132 |
); |
1133 |
// |
1134 |
$links[] = array( |
1135 |
"href" => "".OM_ROUTE_TAB."&obj=evenement", |
1136 |
"class" => "evenement", |
1137 |
"title" => _("evenement"), |
1138 |
"right" => array("evenement", "evenement_tab", ), |
1139 |
"open" => array("index.php|evenement[module=tab]", "index.php|evenement[module=form]", ), |
1140 |
); |
1141 |
// |
1142 |
$links[] = array( |
1143 |
"title" => "<hr/>", |
1144 |
"right" => array( |
1145 |
"action", "action_tab", "etat", |
1146 |
"etat_tab", "avis_decision", |
1147 |
"avis_decision_tab", |
1148 |
), |
1149 |
); |
1150 |
// |
1151 |
$links[] = array( |
1152 |
"href" => "".OM_ROUTE_TAB."&obj=etat", |
1153 |
"class" => "workflow-etat", |
1154 |
"title" => _("etat"), |
1155 |
"right" => array("etat", "etat_tab", ), |
1156 |
"open" => array("index.php|etat[module=tab]", "index.php|etat[module=form]", ), |
1157 |
); |
1158 |
// |
1159 |
$links[] = array( |
1160 |
"href" => "".OM_ROUTE_TAB."&obj=avis_decision", |
1161 |
"class" => "avis_decision", |
1162 |
"title" => _("avis decision"), |
1163 |
"right" => array("avis_decision", "avis_decision_tab", ), |
1164 |
"open" => array("index.php|avis_decision[module=tab]", "index.php|avis_decision[module=form]", ), |
1165 |
); |
1166 |
// |
1167 |
$links[] = array( |
1168 |
"href" => "".OM_ROUTE_TAB."&obj=action", |
1169 |
"class" => "action", |
1170 |
"title" => _("action"), |
1171 |
"right" => array("action", "action_tab", ), |
1172 |
"open" => array("index.php|action[module=tab]", "index.php|action[module=form]", ), |
1173 |
); |
1174 |
// |
1175 |
$links[] = array( |
1176 |
"title" => "<hr/>", |
1177 |
"right" => array( |
1178 |
"bible", "bible_tab", |
1179 |
), |
1180 |
); |
1181 |
// |
1182 |
$links[] = array( |
1183 |
"href" => "".OM_ROUTE_TAB."&obj=bible", |
1184 |
"class" => "bible", |
1185 |
"title" => _("bible"), |
1186 |
"right" => array("bible", "bible_tab", ), |
1187 |
"open" => array("index.php|bible[module=tab]", "index.php|bible[module=form]", ), |
1188 |
); |
1189 |
// |
1190 |
$links[] = array( |
1191 |
"class" => "category", |
1192 |
"title" => _("editions"), |
1193 |
"right" => array( |
1194 |
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
1195 |
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
1196 |
"om_logo", "om_logo_tab", |
1197 |
), |
1198 |
); |
1199 |
// |
1200 |
$links[] = array( |
1201 |
"title" => "<hr/>", |
1202 |
"right" => array( |
1203 |
"om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab", |
1204 |
), |
1205 |
); |
1206 |
// |
1207 |
$links[] = array( |
1208 |
"href" => "".OM_ROUTE_TAB."&obj=om_etat", |
1209 |
"class" => "om_etat", |
1210 |
"title" => _("om_etat"), |
1211 |
"right" => array("om_etat", "om_etat_tab", ), |
1212 |
"open" => array("index.php|om_etat[module=tab]", "index.php|om_etat[module=form]", ), |
1213 |
); |
1214 |
// |
1215 |
$links[] = array( |
1216 |
"href" => "".OM_ROUTE_TAB."&obj=om_lettretype", |
1217 |
"class" => "om_lettretype", |
1218 |
"title" => _("om_lettretype"), |
1219 |
"right" => array("om_lettretype", "om_lettretype_tab"), |
1220 |
"open" => array("index.php|om_lettretype[module=tab]", "index.php|om_lettretype[module=form]", ), |
1221 |
); |
1222 |
// |
1223 |
$links[] = array( |
1224 |
"title" => "<hr/>", |
1225 |
"right" => array( |
1226 |
"om_logo", "om_logo_tab", |
1227 |
), |
1228 |
); |
1229 |
// |
1230 |
$links[] = array( |
1231 |
"href" => "".OM_ROUTE_TAB."&obj=om_logo", |
1232 |
"class" => "om_logo", |
1233 |
"title" => _("om_logo"), |
1234 |
"right" => array("om_logo", "om_logo_tab", ), |
1235 |
"open" => array("index.php|om_logo[module=tab]", "index.php|om_logo[module=form]", ), |
1236 |
); |
1237 |
// |
1238 |
$rubrik['links'] = $links; |
1239 |
// |
1240 |
$menu[] = $rubrik; |
1241 |
// }}} |
1242 |
|
1243 |
// {{{ Rubrique PARAMETRAGE |
1244 |
// |
1245 |
$rubrik = array( |
1246 |
"title" => _("parametrage"), |
1247 |
"class" => "parametrage", |
1248 |
"right" => "menu_parametrage", |
1249 |
); |
1250 |
// |
1251 |
$links = array(); |
1252 |
// |
1253 |
$links[] = array( |
1254 |
"href" => "".OM_ROUTE_TAB."&obj=civilite", |
1255 |
"class" => "civilite", |
1256 |
"title" => _("civilite"), |
1257 |
"right" => array("civilite", "civilite_tab", ), |
1258 |
"open" => array("index.php|civilite[module=tab]", "index.php|civilite[module=form]", ), |
1259 |
); |
1260 |
// |
1261 |
$links[] = array( |
1262 |
"href" => "".OM_ROUTE_TAB."&obj=arrondissement", |
1263 |
"class" => "arrondissement", |
1264 |
"title" => _("arrondissement"), |
1265 |
"right" => array("arrondissement", "arrondissement_tab", ), |
1266 |
"open" => array("index.php|arrondissement[module=tab]", "index.php|arrondissement[module=form]", ), |
1267 |
); |
1268 |
// |
1269 |
$links[] = array( |
1270 |
"href" => "".OM_ROUTE_TAB."&obj=quartier", |
1271 |
"class" => "quartier", |
1272 |
"title" => _("quartier"), |
1273 |
"right" => array("quartier", "quartier_tab", ), |
1274 |
"open" => array("index.php|quartier[module=tab]", "index.php|quartier[module=form]", ), |
1275 |
); |
1276 |
// |
1277 |
$links[] = array( |
1278 |
"class" => "category", |
1279 |
"title" => _("Organisation"), |
1280 |
"right" => array( |
1281 |
"direction", "direction_tab", "division", "division_tab", "instructeur_qualite", |
1282 |
"instructeur_qualite_tab", "instructeur", "instructeur_tab", "groupe", |
1283 |
"groupe_tab", "genre", "genre_tab", "signataire_arrete", "signataire_arrete_tab", |
1284 |
"taxe_amenagement_tab", "taxe_amenagement", |
1285 |
), |
1286 |
); |
1287 |
$links[] = array( |
1288 |
"title" => "<hr/>", |
1289 |
"right" => array( |
1290 |
"direction", "direction_tab", "division", "division_tab", "instructeur_qualite", |
1291 |
"instructeur_qualite_tab", "instructeur", "instructeur_tab", "groupe", |
1292 |
"groupe_tab", "genre", "genre_tab", "signataire_arrete", "signataire_arrete_tab", |
1293 |
"taxe_amenagement_tab", "taxe_amenagement", |
1294 |
), |
1295 |
); |
1296 |
// |
1297 |
$links[] = array( |
1298 |
"href" => "".OM_ROUTE_TAB."&obj=genre", |
1299 |
"class" => "genre", |
1300 |
"title" => _("genre"), |
1301 |
"right" => array("genre", "genre_tab", ), |
1302 |
"open" => array("index.php|genre[module=tab]", "index.php|genre[module=form]", ), |
1303 |
); |
1304 |
// |
1305 |
$links[] = array( |
1306 |
"href" => "".OM_ROUTE_TAB."&obj=groupe", |
1307 |
"class" => "groupe", |
1308 |
"title" => _("groupe"), |
1309 |
"right" => array("groupe", "groupe_tab", ), |
1310 |
"open" => array("index.php|groupe[module=tab]", "index.php|groupe[module=form]", ), |
1311 |
); |
1312 |
// |
1313 |
$links[] = array( |
1314 |
"href" => "".OM_ROUTE_TAB."&obj=direction", |
1315 |
"class" => "direction", |
1316 |
"title" => _("direction"), |
1317 |
"right" => array("direction", "direction_tab", ), |
1318 |
"open" => array("index.php|direction[module=tab]", "index.php|direction[module=form]", ), |
1319 |
); |
1320 |
// |
1321 |
$links[] = array( |
1322 |
"href" => "".OM_ROUTE_TAB."&obj=division", |
1323 |
"class" => "division", |
1324 |
"title" => _("division"), |
1325 |
"right" => array("division", "division_tab", ), |
1326 |
"open" => array("index.php|division[module=tab]", "index.php|division[module=form]", ), |
1327 |
); |
1328 |
// |
1329 |
$links[] = array( |
1330 |
"href" => "".OM_ROUTE_TAB."&obj=instructeur_qualite", |
1331 |
"class" => "instructeur_qualite", |
1332 |
"title" => _("instructeur_qualite"), |
1333 |
"right" => array("instructeur_qualite", "instructeur_qualite_tab", ), |
1334 |
"open" => array("index.php|instructeur_qualite[module=tab]", "index.php|instructeur_qualite[module=form]", ), |
1335 |
); |
1336 |
// |
1337 |
$links[] = array( |
1338 |
"href" => "".OM_ROUTE_TAB."&obj=instructeur", |
1339 |
"class" => "instructeur", |
1340 |
"title" => _("instructeur"), |
1341 |
"right" => array("instructeur", "instructeur_tab", ), |
1342 |
"open" => array("index.php|instructeur[module=tab]", "index.php|instructeur[module=form]", ), |
1343 |
); |
1344 |
// |
1345 |
$links[] = array( |
1346 |
"href" => "".OM_ROUTE_TAB."&obj=signataire_arrete", |
1347 |
"class" => "signataire_arrete", |
1348 |
"title" => _("signataire arrete"), |
1349 |
"right" => array("signataire_arrete", "signataire_arrete", ), |
1350 |
"open" => array("index.php|signataire_arrete[module=tab]", "index.php|signataire_arrete[module=form]", ), |
1351 |
); |
1352 |
// |
1353 |
$links[] = array( |
1354 |
"href" => "".OM_ROUTE_TAB."&obj=taxe_amenagement", |
1355 |
"class" => "taxe_amenagement", |
1356 |
"title" => _("taxes"), |
1357 |
"right" => array("taxe_amenagement", "taxe_amenagement_tab", ), |
1358 |
"open" => array("index.php|taxe_amenagement[module=tab]", "index.php|taxe_amenagement[module=form]", ), |
1359 |
); |
1360 |
// |
1361 |
$links[] = array( |
1362 |
"class" => "category", |
1363 |
"title" => _("gestion des commissions"), |
1364 |
"right" => array( |
1365 |
"commission_type", "commission_type_tab", |
1366 |
), |
1367 |
); |
1368 |
// |
1369 |
$links[] = array( |
1370 |
"title" => "<hr/>", |
1371 |
"right" => array( |
1372 |
"commission_type", "commission_type_tab", |
1373 |
), |
1374 |
); |
1375 |
// |
1376 |
$links[] = array( |
1377 |
"href" => "".OM_ROUTE_TAB."&obj=commission_type", |
1378 |
"class" => "commission-type", |
1379 |
"title" => _("commission_type"), |
1380 |
"right" => array("commission_type", "commission_type_tab", ), |
1381 |
"open" => array("index.php|commission_type[module=tab]", "index.php|commission_type[module=form]", ), |
1382 |
); |
1383 |
// |
1384 |
$links[] = array( |
1385 |
"class" => "category", |
1386 |
"title" => _("gestion des consultations"), |
1387 |
"right" => array( |
1388 |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1389 |
"service_categorie", "service_categorie_tab", |
1390 |
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1391 |
), |
1392 |
); |
1393 |
// |
1394 |
$links[] = array( |
1395 |
"title" => "<hr/>", |
1396 |
"right" => array( |
1397 |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1398 |
"service_categorie", "service_categorie_tab", |
1399 |
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1400 |
), |
1401 |
); |
1402 |
// |
1403 |
$links[] = array( |
1404 |
"href" => "".OM_ROUTE_TAB."&obj=avis_consultation", |
1405 |
"class" => "avis_consultation", |
1406 |
"title" => _("avis consultation"), |
1407 |
"right" => array("avis_consultation", "avis_consultation_tab", ), |
1408 |
"open" => array("index.php|avis_consultation[module=tab]", "index.php|avis_consultation[module=form]", ), |
1409 |
); |
1410 |
// |
1411 |
$links[] = array( |
1412 |
"href" => "".OM_ROUTE_TAB."&obj=service", |
1413 |
"class" => "service", |
1414 |
"title" => _("service"), |
1415 |
"right" => array("service", "service_tab", ), |
1416 |
"open" => array("index.php|service[module=tab]", "index.php|service[module=form]", ), |
1417 |
); |
1418 |
$links[] = array( |
1419 |
"href" => "".OM_ROUTE_TAB."&obj=service_categorie", |
1420 |
"class" => "service_categorie", |
1421 |
"title" => _("thematique des services"), |
1422 |
"right" => array("service_categorie", "service_categorie_tab", ), |
1423 |
"open" => array("index.php|service_categorie[module=tab]", "index.php|service_categorie[module=form]", ), |
1424 |
); |
1425 |
// |
1426 |
$links[] = array( |
1427 |
"class" => "category", |
1428 |
"title" => _("Gestion des dossiers"), |
1429 |
"right" => array( |
1430 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1431 |
"dossier_autorisation_type_detaille", |
1432 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1433 |
"dossier_instruction_type_tab", |
1434 |
"autorite_competente", "autorite_competente_tab", |
1435 |
"affectation_automatique", "affectation_automatique_tab", |
1436 |
), |
1437 |
); |
1438 |
// |
1439 |
$links[] = array( |
1440 |
"title" => "<hr/>", |
1441 |
"right" => array( |
1442 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1443 |
"dossier_autorisation_type_detaille", |
1444 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1445 |
"dossier_instruction_type_tab", |
1446 |
"autorite_competente", "autorite_competente_tab", |
1447 |
"affectation_automatique", "affectation_automatique_tab", |
1448 |
|
1449 |
), |
1450 |
); |
1451 |
// |
1452 |
$links[] = array( |
1453 |
"href" => "".OM_ROUTE_TAB."&obj=etat_dossier_autorisation", |
1454 |
"class" => "etat_dossier_autorisation", |
1455 |
"title" => _("etat dossiers autorisations"), |
1456 |
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
1457 |
"open" => array("index.php|etat_dossier_autorisation[module=tab]", "index.php|etat_dossier_autorisation[module=form]", ), |
1458 |
); |
1459 |
// |
1460 |
$links[] = array( |
1461 |
"href" => "".OM_ROUTE_TAB."&obj=affectation_automatique", |
1462 |
"class" => "affectation_automatique", |
1463 |
"title" => _("affectation automatique"), |
1464 |
"right" => array("affectation_automatique", "affectation_automatique_tab", ), |
1465 |
"open" => array("index.php|affectation_automatique[module=tab]", "index.php|affectation_automatique[module=form]", ), |
1466 |
); |
1467 |
// |
1468 |
$links[] = array( |
1469 |
"href" => "".OM_ROUTE_TAB."&obj=autorite_competente", |
1470 |
"class" => "autorite_competente", |
1471 |
"title" => _("autorite")." "._("competente"), |
1472 |
"right" => array("autorite_competente", "autorite_competente_tab", ), |
1473 |
"open" => array("index.php|autorite_competente[module=tab]", "index.php|autorite_competente[module=form]", ), |
1474 |
); |
1475 |
// |
1476 |
$links[] = array( |
1477 |
"href" => "".OM_ROUTE_TAB."&obj=phase", |
1478 |
"class" => "phase", |
1479 |
"title" => _("phase"), |
1480 |
"right" => array("phase", "phase_tab", ), |
1481 |
"open" => array("index.php|phase[module=tab]", "index.php|phase[module=form]", ), |
1482 |
); |
1483 |
|
1484 |
//Gestion des pièces |
1485 |
$links[] = array( |
1486 |
"class" => "category", |
1487 |
"title" => _("Gestion des pièces"), |
1488 |
"right" => array( |
1489 |
"document_numerise_type_categorie", "document_numerise_type_categorie_tab", |
1490 |
"document_numerise_type", |
1491 |
"document_numerise_type_tab", "document_numerise_traitement_metadonnees", |
1492 |
"document_numerise_traitement_metadonnees_executer", |
1493 |
), |
1494 |
); |
1495 |
// |
1496 |
$links[] = array( |
1497 |
"title" => "<hr/>", |
1498 |
"right" => array( |
1499 |
"document_numerise_type_categorie", "document_numerise_type_categorie_tab", |
1500 |
"document_numerise_type", |
1501 |
"document_numerise_type_tab", "document_numerise_traitement_metadonnees", |
1502 |
"document_numerise_traitement_metadonnees_executer", |
1503 |
), |
1504 |
); |
1505 |
// |
1506 |
$links[] = array( |
1507 |
"href" => "".OM_ROUTE_TAB."&obj=document_numerise_type_categorie", |
1508 |
"class" => "document_numerise_type_categorie", |
1509 |
"title" => _("Catégorie des pièces"), |
1510 |
"right" => array( |
1511 |
"document_numerise_type_categorie", |
1512 |
"document_numerise_type_categorie_tab", |
1513 |
), |
1514 |
"open" => array( |
1515 |
"index.php|document_numerise_type_categorie[module=tab]", |
1516 |
"index.php|document_numerise_type_categorie[module=form]", |
1517 |
), |
1518 |
); |
1519 |
// |
1520 |
$links[] = array( |
1521 |
"href" => "".OM_ROUTE_TAB."&obj=document_numerise_type", |
1522 |
"class" => "document_numerise_type", |
1523 |
"title" => _("Type des pièces"), |
1524 |
"right" => array( |
1525 |
"document_numerise_type", |
1526 |
"document_numerise_type_tab", |
1527 |
), |
1528 |
"open" => array( |
1529 |
"index.php|document_numerise_type[module=tab]", |
1530 |
"index.php|document_numerise_type[module=form][action=0]", |
1531 |
"index.php|document_numerise_type[module=form][action=1]", |
1532 |
"index.php|document_numerise_type[module=form][action=2]", |
1533 |
"index.php|document_numerise_type[module=form][action=3]", |
1534 |
), |
1535 |
); |
1536 |
// |
1537 |
$links[] = array( |
1538 |
"href" => "".OM_ROUTE_FORM."&obj=document_numerise_traitement_metadonnees&action=100&idx=0", |
1539 |
"class" => "document_numerise_traitement_metadonnees", |
1540 |
"title" => _("Mise à jour des métadonnées"), |
1541 |
"description" => _("Mettre à jour les métadonnées de tous les documents numérisés."), |
1542 |
"right" => array( |
1543 |
"document_numerise_traitement_metadonnees", |
1544 |
"document_numerise_traitement_metadonnees_executer", |
1545 |
), |
1546 |
"open" => array("index.php|document_numerise_traitement_metadonnees[module=form]", ), |
1547 |
); |
1548 |
|
1549 |
// Gestion des contentieux |
1550 |
$links[] = array( |
1551 |
"class" => "category", |
1552 |
"title" => _("Gestion des contentieux"), |
1553 |
"right" => array( |
1554 |
"objet_recours", "objet_recours_tab", "moyen_souleve", "moyen_souleve_tab", |
1555 |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
1556 |
), |
1557 |
); |
1558 |
// |
1559 |
$links[] = array( |
1560 |
"title" => "<hr/>", |
1561 |
"right" => array( |
1562 |
"objet_recours", "objet_recours_tab", "moyen_souleve", "moyen_souleve_tab", |
1563 |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
1564 |
), |
1565 |
); |
1566 |
// |
1567 |
$links[] = array( |
1568 |
"href" => "".OM_ROUTE_TAB."&obj=objet_recours", |
1569 |
"class" => "objet_recours", |
1570 |
"title" => _("objet_recours"), |
1571 |
"right" => array( |
1572 |
"objet_recours", "objet_recours_tab", |
1573 |
), |
1574 |
"open" => array( |
1575 |
"index.php|objet_recours[module=tab]", "index.php|objet_recours[module=form]", |
1576 |
), |
1577 |
); |
1578 |
// |
1579 |
$links[] = array( |
1580 |
"href" => "".OM_ROUTE_TAB."&obj=moyen_souleve", |
1581 |
"class" => "moyen_souleve", |
1582 |
"title" => _("moyen_souleve"), |
1583 |
"right" => array( |
1584 |
"moyen_souleve", "moyen_souleve_tab", |
1585 |
), |
1586 |
"open" => array( |
1587 |
"index.php|moyen_souleve[module=tab]", "index.php|moyen_souleve[module=form]", |
1588 |
), |
1589 |
); |
1590 |
// |
1591 |
$links[] = array( |
1592 |
"href" => "".OM_ROUTE_TAB."&obj=moyen_retenu_juge", |
1593 |
"class" => "moyen_retenu_juge", |
1594 |
"title" => _("moyen_retenu_juge"), |
1595 |
"right" => array( |
1596 |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
1597 |
), |
1598 |
"open" => array( |
1599 |
"index.php|moyen_retenu_juge[module=tab]", "index.php|moyen_retenu_juge[module=form]", |
1600 |
), |
1601 |
); |
1602 |
|
1603 |
// |
1604 |
$rubrik['links'] = $links; |
1605 |
// |
1606 |
$menu[] = $rubrik; |
1607 |
// }}} |
1608 |
|
1609 |
// {{{ Rubrique ADMINISTRATION |
1610 |
// |
1611 |
$rubrik = array( |
1612 |
"title" => _("administration"), |
1613 |
"class" => "administration", |
1614 |
"right" => "menu_administration", |
1615 |
); |
1616 |
// |
1617 |
$links = array(); |
1618 |
// |
1619 |
$links[] = array( |
1620 |
"href" => "".OM_ROUTE_TAB."&obj=om_collectivite", |
1621 |
"class" => "collectivite", |
1622 |
"title" => _("om_collectivite"), |
1623 |
"right" => array("om_collectivite", "om_collectivite_tab", ), |
1624 |
"open" => array("index.php|om_collectivite[module=tab]", "index.php|om_collectivite[module=form]", ), |
1625 |
); |
1626 |
// |
1627 |
$links[] = array( |
1628 |
"href" => "".OM_ROUTE_TAB."&obj=om_parametre", |
1629 |
"class" => "parametre", |
1630 |
"title" => _("om_parametre"), |
1631 |
"right" => array("om_parametre", "om_parametre_tab", ), |
1632 |
"open" => array("index.php|om_parametre[module=tab]", "index.php|om_parametre[module=form]", ), |
1633 |
); |
1634 |
// |
1635 |
$links[] = array( |
1636 |
"class" => "category", |
1637 |
"title" => _("gestion des utilisateurs"), |
1638 |
"right" => array( |
1639 |
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1640 |
"om_droit", "om_droit_tab", "directory", |
1641 |
), |
1642 |
); |
1643 |
// |
1644 |
$links[] = array( |
1645 |
"title" => "<hr/>", |
1646 |
"right" => array( |
1647 |
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1648 |
"om_droit", "om_droit_tab", |
1649 |
), |
1650 |
); |
1651 |
// |
1652 |
$links[] = array( |
1653 |
"href" => "".OM_ROUTE_TAB."&obj=om_profil", |
1654 |
"class" => "profil", |
1655 |
"title" => _("om_profil"), |
1656 |
"right" => array("om_profil", "om_profil_tab", ), |
1657 |
"open" => array("index.php|om_profil[module=tab]", "index.php|om_profil[module=form]", ), |
1658 |
); |
1659 |
// |
1660 |
$links[] = array( |
1661 |
"href" => "".OM_ROUTE_TAB."&obj=om_droit", |
1662 |
"class" => "droit", |
1663 |
"title" => _("om_droit"), |
1664 |
"right" => array("om_droit", "om_droit_tab", ), |
1665 |
"open" => array("index.php|om_droit[module=tab]", "index.php|om_droit[module=form]", ), |
1666 |
); |
1667 |
// |
1668 |
$links[] = array( |
1669 |
"href" => "".OM_ROUTE_TAB."&obj=om_utilisateur", |
1670 |
"class" => "utilisateur", |
1671 |
"title" => _("om_utilisateur"), |
1672 |
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
1673 |
"open" => array( |
1674 |
"index.php|om_utilisateur[module=tab]", |
1675 |
"index.php|om_utilisateur[module=form][action=0]", |
1676 |
"index.php|om_utilisateur[module=form][action=1]", |
1677 |
"index.php|om_utilisateur[module=form][action=2]", |
1678 |
"index.php|om_utilisateur[module=form][action=3]", |
1679 |
), |
1680 |
); |
1681 |
// |
1682 |
$links[] = array( |
1683 |
"title" => "<hr/>", |
1684 |
"right" => array("om_utilisateur", "om_utilisateur_synchroniser", ), |
1685 |
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1686 |
); |
1687 |
// |
1688 |
$links[] = array( |
1689 |
"href" => "".OM_ROUTE_FORM."&obj=om_utilisateur&idx=0&action=11", |
1690 |
"class" => "annuaire", |
1691 |
"title" => _("annuaire"), |
1692 |
"right" => array("om_utilisateur", "om_utilisateur_synchroniser", ), |
1693 |
"open" => array("index.php|om_utilisateur[module=form][action=11]", ), |
1694 |
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1695 |
); |
1696 |
// |
1697 |
$links[] = array( |
1698 |
"class" => "category", |
1699 |
"title" => _("tableaux de bord"), |
1700 |
"right" => array( |
1701 |
"om_widget", "om_widget_tab", "om_dashboard", |
1702 |
), |
1703 |
); |
1704 |
// |
1705 |
$links[] = array( |
1706 |
"title" => "<hr/>", |
1707 |
"right" => array( |
1708 |
"om_widget", "om_widget_tab", "om_dashboard", |
1709 |
), |
1710 |
); |
1711 |
// |
1712 |
$links[] = array( |
1713 |
"href" => "".OM_ROUTE_TAB."&obj=om_widget", |
1714 |
"class" => "om_widget", |
1715 |
"title" => _("om_widget"), |
1716 |
"right" => array("om_widget", "om_widget_tab", ), |
1717 |
"open" => array("index.php|om_widget[module=tab]", "index.php|om_widget[module=form]", ), |
1718 |
); |
1719 |
// |
1720 |
$links[] = array( |
1721 |
"href" => "".OM_ROUTE_FORM."&obj=om_dashboard&idx=0&action=4", |
1722 |
"class" => "om_dashboard", |
1723 |
"title" => _("composition"), |
1724 |
"right" => array("om_dashboard", ), |
1725 |
"open" => array("index.php|om_dashboard[module=form][action=4]", ), |
1726 |
); |
1727 |
// |
1728 |
$links[] = array( |
1729 |
"class" => "category", |
1730 |
"title" => _("sig"), |
1731 |
"right" => array( |
1732 |
"om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab", |
1733 |
), |
1734 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1735 |
); |
1736 |
// |
1737 |
$links[] = array( |
1738 |
"title" => "<hr/>", |
1739 |
"right" => array( |
1740 |
"om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab", |
1741 |
), |
1742 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1743 |
); |
1744 |
// |
1745 |
$links[] = array( |
1746 |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_extent", |
1747 |
"class" => "om_sig_extent", |
1748 |
"title" => _("om_sig_extent"), |
1749 |
"right" => array("om_sig_extent", "om_sig_extent_tab", ), |
1750 |
"open" => array("index.php|om_sig_extent[module=tab]", "index.php|om_sig_extent[module=form]", ), |
1751 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1752 |
); |
1753 |
// |
1754 |
$links[] = array( |
1755 |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_map", |
1756 |
"class" => "om_sig_map", |
1757 |
"title" => _("om_sig_map"), |
1758 |
"right" => array("om_sig_map", "om_sig_map_tab", ), |
1759 |
"open" => array("index.php|om_sig_map[module=tab]", "index.php|om_sig_map[module=form]", ), |
1760 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1761 |
); |
1762 |
// |
1763 |
$links[] = array( |
1764 |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_flux", |
1765 |
"class" => "om_sig_flux", |
1766 |
"title" => _("om_sig_flux"), |
1767 |
"right" => array("om_sig_flux", "om_sig_flux_tab", ), |
1768 |
"open" => array("index.php|om_sig_flux[module=tab]", "index.php|om_sig_flux[module=form]", ), |
1769 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1770 |
); |
1771 |
// |
1772 |
$links[] = array( |
1773 |
"class" => "category", |
1774 |
"title" => _("options avancees"), |
1775 |
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
1776 |
"om_sousetat", "om_sousetat_tab",), |
1777 |
); |
1778 |
// |
1779 |
$links[] = array( |
1780 |
"title" => "<hr/>", |
1781 |
"right" => array( |
1782 |
"interface_referentiel_erp", |
1783 |
), |
1784 |
); |
1785 |
// |
1786 |
$links[] = array( |
1787 |
"href" => "../app/settings.php?controlpanel=interface_referentiel_erp", |
1788 |
"class" => "interface_referentiel_erp", |
1789 |
"title" => _("interface_referentiel_erp"), |
1790 |
"right" => array("interface_referentiel_erp", ), |
1791 |
"open" => array("settings.php|[controlpanel=interface_referentiel_erp]", ), |
1792 |
); |
1793 |
// |
1794 |
$links[] = array( |
1795 |
"title" => "<hr/>", |
1796 |
"right" => array( |
1797 |
"om_sousetat", "om_sousetat_tab", |
1798 |
), |
1799 |
); |
1800 |
// |
1801 |
$links[] = array( |
1802 |
"href" => "".OM_ROUTE_TAB."&obj=om_sousetat", |
1803 |
"class" => "om_sousetat", |
1804 |
"title" => _("om_sousetat"), |
1805 |
"right" => array("om_sousetat", "om_sousetat_tab", ), |
1806 |
"open" => array("index.php|om_sousetat[module=tab]", "index.php|om_sousetat[module=form]", ), |
1807 |
); |
1808 |
// |
1809 |
$links[] = array( |
1810 |
"title" => "<hr/>", |
1811 |
"right" => array("om_requete", "om_requete_tab", ), |
1812 |
); |
1813 |
// |
1814 |
$links[] = array( |
1815 |
"href" => "".OM_ROUTE_TAB."&obj=om_requete", |
1816 |
"class" => "om_requete", |
1817 |
"title" => _("om_requete"), |
1818 |
"right" => array("om_requete", "om_requete_tab", ), |
1819 |
"open" => array("index.php|om_requete[module=tab]", "index.php|om_requete[module=form]", ), |
1820 |
); |
1821 |
// |
1822 |
$links[] = array( |
1823 |
"title" => "<hr/>", |
1824 |
"right" => array("import", ), |
1825 |
); |
1826 |
// |
1827 |
$links[] = array( |
1828 |
"href" => OM_ROUTE_MODULE_IMPORT, |
1829 |
"class" => "import", |
1830 |
"title" => _("Import"), |
1831 |
"right" => array("import", ), |
1832 |
"open" => array("import.php|", ), |
1833 |
); |
1834 |
// |
1835 |
$links[] = array( |
1836 |
"href" => "../app/import_specific.php", |
1837 |
"class" => "import_specific", |
1838 |
"title" => _("Import specifique"), |
1839 |
"right" => array("import", ), |
1840 |
"open" => array("import_specific.php|", ), |
1841 |
); |
1842 |
// |
1843 |
$links[] = array( |
1844 |
"title" => "<hr/>", |
1845 |
"right" => array("gen", ), |
1846 |
); |
1847 |
// |
1848 |
$links[] = array( |
1849 |
"title" => _("Generateur"), |
1850 |
"href" => OM_ROUTE_MODULE_GEN, |
1851 |
"class" => "generator", |
1852 |
"right" => array("gen", ), |
1853 |
"open" => array( |
1854 |
"gen.php|","genauto.php|", "gensup.php|", "genfull.php|", |
1855 |
"genetat.php|", "gensousetat.php|", "genlettretype.php|", |
1856 |
"genimport.php|", |
1857 |
), |
1858 |
); |
1859 |
// |
1860 |
$links[] = array( |
1861 |
"href" => "".OM_ROUTE_FORM."&obj=contrainte&action=100&idx=0", |
1862 |
"class" => "contrainte", |
1863 |
"title" => _("synchronisation des contraintes"), |
1864 |
"right" => array("contrainte", "contrainte_synchronisation", ), |
1865 |
"open" => array("index.php|contrainte[module=form][action=100]", ), |
1866 |
"parameters" => array( |
1867 |
"option_sig" => "sig_externe", |
1868 |
), |
1869 |
); |
1870 |
// |
1871 |
$links[] = array( |
1872 |
"href" => "".OM_ROUTE_FORM."&obj=dossier_instruction&action=126&idx=0", |
1873 |
"class" => "geocoder", |
1874 |
"title" => _("Géolocalisation des dossiers"), |
1875 |
"right" => array("dossier_instruction_geocoder", ), |
1876 |
"open" => array("index.php|dossier_instruction[module=form][action=126]", ), |
1877 |
"parameters" => array( |
1878 |
"option_sig" => "sig_externe", |
1879 |
), |
1880 |
); |
1881 |
// |
1882 |
$rubrik['links'] = $links; |
1883 |
// |
1884 |
$menu[] = $rubrik; |
1885 |
// }}} |
1886 |
|
1887 |
?> |