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

Annotation of /trunk/dyn/menu.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6565 - (hide annotations)
Fri Apr 21 16:14:15 2017 UTC (7 years, 9 months ago) by softime
File size: 58121 byte(s)
Merge de la version 4.0.0

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26