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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4667 - (hide annotations)
Wed Jun 29 16:50:16 2016 UTC (8 years, 7 months ago) by softime
File size: 50765 byte(s)
* Amélioration - Ajout d'un profil "Administrateur technique et fonctionnel"
  possédant tous les droits.
  Ticket #8400.

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     "open" => array("tab.php|dossier_autorisation", "dossier_autorisation.php|", ),
67     );
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 mbroquet 3730 "open" => array("tab.php|dossier_autorisation_avis", "dossier_autorisation_avis.php|", ),
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" => "../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",
505     "commission_mes_retours",
506     "commission_mes_retours_tab",
507     "commission_tous_retours",
508     "commission_tous_retours_tab",
509 mbroquet 3730 ),
510     );
511     $links[] = array(
512     "title" => "<hr/>",
513     "right" => array(
514 softime 4667 "commission",
515     "commission_mes_retours",
516     "commission_mes_retours_tab",
517     "commission_tous_retours",
518     "commission_tous_retours_tab",
519 mbroquet 3730 ),
520     );
521     $links[] = array(
522     "href" => "../scr/tab.php?obj=commission_mes_retours",
523     "class" => "commission_mes_retours",
524     "title" => _("Mes retours"),
525 softime 4667 "right" => array(
526     "commission",
527     "commission_mes_retours",
528     "commission_mes_retours_tab",
529     ),
530 mbroquet 3730 "open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ),
531     );
532     $links[] = array(
533     "href" => "../scr/tab.php?obj=commission_tous_retours",
534     "class" => "commission_tous_retours",
535     "title" => _("Tous les retours"),
536 softime 4667 "right" => array(
537     "commission",
538     "commission_tous_retours",
539     "commission_tous_retours_tab",
540     ),
541 mbroquet 3730 "open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ),
542     );
543    
544     //
545     $rubrik['links'] = $links;
546     //
547     $menu[] = $rubrik;
548     // }}}
549    
550     // {{{ Rubrique SUIVI
551     //
552     $rubrik = array(
553     "title" => _("Suivi"),
554     "class" => "suivi",
555     "right" => "menu_suivi",
556     );
557     //
558     $links = array();
559     //
560     $links[] = array(
561     "href" => "../scr/dashboard.php",
562     "class" => "tableau-de-bord",
563     "title" => _("tableau de bord"),
564     "right" => "menu_suivi_dashboard",
565     "open" => array("dashboard.php|",),
566     );
567     $links[] = array(
568     "class" => "category",
569     "title" => _("suivi des pieces"),
570     "right" => array(
571     "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
572     "suivi_envoi_lettre_rar", "suivi_bordereaux",
573     ),
574     );
575     //
576     $links[] = array(
577     "title" => "<hr/>",
578     "right" => array(
579     "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
580     "suivi_envoi_lettre_rar", "suivi_bordereaux",
581     ),
582     );
583     //
584     $links[] = array(
585     "title" => "<hr/>",
586     "right" => array(
587     "suivi_mise_a_jour_des_dates",
588     ),
589     );
590     //
591     $links[] = array(
592     "href" => "../scr/form.php?obj=instruction_suivi_mise_a_jour_des_dates&action=170&idx=0",
593     "class" => "suivi_mise_a_jour_des_dates",
594     "title" => _("Mise a jour des dates"),
595     "right" => array("instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", ),
596     "open" => array("tab.php|instruction_suivi_mise_a_jour_des_dates", "form.php|instruction_suivi_mise_a_jour_des_dates"),
597     );
598     //
599     $links[] = array(
600     "title" => "<hr/>",
601     "right" => array(
602     "suivi_envoi_lettre_rar",
603     ),
604     );
605     //
606     $links[] = array(
607     "href" => "../scr/form.php?obj=instruction_suivi_envoi_lettre_rar&action=160&idx=0",
608 fmichon 4467 "class" => "envoi_lettre_rar",
609 mbroquet 3730 "title" => _("envoi lettre RAR"),
610     "right" => array("instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", ),
611     "open" => array("tab.php|instruction_suivi_envoi_lettre_rar", "form.php|instruction_suivi_envoi_lettre_rar"),
612     );
613     //
614     $links[] = array(
615     "title" => "<hr/>",
616     "right" => array(
617     "suivi_bordereaux",
618     ),
619     );
620     //
621     $links[] = array(
622     "href" => "../scr/form.php?obj=instruction_suivi_bordereaux&action=150&idx=0",
623 fmichon 4467 "class" => "bordereaux",
624 mbroquet 3730 "title" => _("Bordereaux"),
625     "right" => array("instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", ),
626     "open" => array("tab.php|instruction_suivi_bordereaux", "form.php|instruction_suivi_bordereaux"),
627     );
628     //
629     $links[] = array(
630     "href" => "../scr/form.php?obj=bordereau_envoi_maire&action=190&idx=0",
631     "class" => "bordereau_envoi_maire",
632     "title" => _("Bordereau d'envoi au maire"),
633 softime 4667 "right" => array("instruction_bordereau_envoi_maire","bordereau_envoi_maire"),
634 mbroquet 3730 "open" => array("form.php|bordereau_envoi_maire",),
635     );
636     //
637     $links[] = array(
638     "class" => "category",
639     "title" => _("Demandes d'avis"),
640     "right" => array(
641 fmichon 4237 "consultation_suivi_mise_a_jour_des_dates",
642     "consultation_suivi_retours_de_consultation",
643 mbroquet 3730 ),
644     );
645     //
646     $links[] = array(
647 fmichon 4237 "href" => "../scr/form.php?obj=consultation&idx=0&action=110",
648 mbroquet 3730 "class" => "demandes_avis_mise_a_jour_des_dates",
649     "title" => _("Mise a jour des dates"),
650 fmichon 4237 "right" => array("consultation_suivi_mise_a_jour_des_dates", ),
651     "open" => array("form.php|consultation[action=110]"),
652 mbroquet 3730 );
653     //
654     $links[] = array(
655 fmichon 4237 "href" => "../scr/form.php?obj=consultation&idx=0&action=120",
656 mbroquet 3730 "class" => "consultation-retour",
657     "title" => _("retours de consultation"),
658 fmichon 4237 "right" => array("consultation_suivi_retours_de_consultation", ),
659     "open" => array("form.php|consultation[action=120]", "form.php|consultation[action=100]", ),
660 mbroquet 3730 );
661     // Catégorie COMMISSIONS
662     $links[] = array(
663     "class" => "category",
664     "title" => _("commissions"),
665     "right" => array(
666 softime 4667 "commission",
667     "commission_tab",
668     "commission_demandes_passage",
669     "commission_demandes_passage_tab",
670 mbroquet 3730 ),
671     );
672     //
673     $links[] = array(
674     "title" => "<hr/>",
675     "right" => array(
676 softime 4667 "commission",
677     "commission_tab",
678     "commission_demandes_passage",
679     "commission_demandes_passage_tab",
680 mbroquet 3730 ),
681     );
682     //
683     $links[] = array(
684     "href" => "../scr/tab.php?obj=commission",
685     "class" => "commissions",
686     "title" => _("gestion"),
687 softime 4667 "right" => array(
688     "commission",
689     ),
690 mbroquet 3730 "open" => array("tab.php|commission", "form.php|commission", ),
691     );
692     //
693     $links[] = array(
694     "href" => "../scr/tab.php?obj=commission_demandes_passage",
695     "class" => "commissions-demande-passage",
696     "title" => _("demandes"),
697 softime 4667 "right" => array(
698     "commission",
699     "commission_demandes_passage",
700     ),
701 mbroquet 3730 "open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ),
702     );
703     //
704     $rubrik['links'] = $links;
705     //
706     $menu[] = $rubrik;
707     // }}}
708    
709     // {{{ Rubrique DEMANDES D'AVIS
710     //
711     $rubrik = array(
712     "title" => _("Demandes d'avis"),
713     "class" => "demande_avis",
714     "right" => "menu_demande_avis",
715     );
716     //
717     $links = array();
718     //
719     $links[] = array(
720     "href" => "../scr/dashboard.php",
721     "class" => "tableau-de-bord",
722     "title" => _("tableau de bord"),
723     "right" => "menu_demande_avis_dashboard",
724     "open" => array("dashboard.php|",),
725     );
726     //
727     $links[] = array(
728     "title" => "<hr/>",
729     "right" => array(
730     "demande_avis_encours", "demande_avis_encours_tab",
731     "demande_avis_passee", "demande_avis_passee_tab",
732     "demande_avis", "demande_avis_tab",
733     ),
734     );
735     //
736     $links[] = array(
737     "href" => "../scr/tab.php?obj=demande_avis_encours",
738     "class" => "demande_avis_encours",
739     "title" => _("Demandes en cours"),
740     "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
741     "open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ),
742     );
743    
744     $links[] = array(
745     "href" => "../scr/tab.php?obj=demande_avis_passee",
746     "class" => "demande_avis_passee",
747     "title" => _("Demandes passees"),
748     "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
749     "open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ),
750     );
751    
752     $links[] = array(
753     "href" => "../scr/tab.php?obj=demande_avis",
754     "class" => "demande_avis",
755     "title" => _("Exports"),
756     "right" => array("demande_avis", "demande_avis_tab", ),
757     "open" => array("tab.php|demande_avis", "form.php|demande_avis", ),
758     );
759    
760     //
761     $rubrik['links'] = $links;
762     //
763     $menu[] = $rubrik;
764     // }}}
765    
766    
767     // Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle
768     // dans cette version
769     // {{{ Rubrique EXPORT
770     //
771     $rubrik = array(
772     "title" => _("export / import"),
773     "class" => "edition",
774     "right" => "menu_export",
775     );
776     //
777     $links = array();
778    
779     //
780     $links[] = array(
781     "href" => "../scr/form.php?obj=sitadel&action=6&idx=0",
782     "class" => "sitadel",
783     "title" => _("export sitadel"),
784     "right" => "export_sitadel",
785     "open" => "form.php|sitadel",
786     );
787     //
788     $links[] = array(
789     "href" => "../app/versement_archives.php",
790     "class" => "versement_archives",
791     "title" => _("versement aux archives"),
792     "right" => "versement_archives",
793     "open" => "versement_archives.php|",
794     );
795     //
796     $links[] = array(
797     "href" => "../app/reqmo_pilot.php",
798     "class" => "reqmo",
799     "title" => _("statistiques a la demande"),
800     "right" => "reqmo_pilot",
801     "open" => "reqmo_pilot.php|",
802     );
803     //
804     $rubrik['links'] = $links;
805     //
806     $menu[] = $rubrik;
807     // }}}
808    
809    
810     // {{{ Rubrique PARAMETRAGE
811     //
812     $rubrik = array(
813     "title" => _("parametrage dossiers"),
814     "class" => "parametrage-dossier",
815     "right" => "menu_parametrage",
816     );
817     //
818     $links = array();
819     //
820     $links[] = array(
821     "class" => "category",
822     "title" => _("dossiers"),
823     "right" => array(
824     "dossier_autorisation_type", "dossier_autorisation_type_tab",
825     "dossier_autorisation_type_detaille",
826     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
827     "dossier_instruction_type_tab", "cerfa", "cerfa_tab",
828     ),
829     );
830     //
831     $links[] = array(
832     "title" => "<hr/>",
833     "right" => array(
834     "cerfa", "cerfa_tab",
835     ),
836     );
837     //
838     $links[] = array(
839     "href" => "../scr/tab.php?obj=cerfa",
840     "class" => "cerfa",
841     "title" => _("cerfa"),
842     "right" => array("cerfa", "cerfa_tab", ),
843     "open" => array("tab.php|cerfa", "form.php|cerfa", ),
844     );
845     //
846     $links[] = array(
847     "title" => "<hr/>",
848     "right" => array(
849     "dossier_autorisation_type", "dossier_autorisation_type_tab",
850     "dossier_autorisation_type_detaille",
851     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
852     "dossier_instruction_type_tab",
853     ),
854     );
855     //
856     $links[] = array(
857     "href" => "../scr/tab.php?obj=dossier_autorisation_type",
858     "class" => "dossier_autorisation_type",
859     "title" => _("type DA"),
860     "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
861     "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
862     );
863     //
864     $links[] = array(
865     "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
866     "class" => "dossier_autorisation_type_detaille",
867     "title" => _("type DA detaille"),
868     "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
869     "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
870     );
871     //
872     $links[] = array(
873     "href" => "../scr/tab.php?obj=dossier_instruction_type",
874     "class" => "dossier_instruction_type",
875     "title" => _("type DI"),
876     "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
877     "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
878     );
879     //
880     $links[] = array(
881     "title" => "<hr/>",
882     "right" => array(
883     "contrainte", "contrainte_tab",
884     "contrainte_souscategorie", "contrainte_souscategorie_tab",
885     "contrainte_categorie", "contrainte_categorie_tab"
886     ),
887     );
888     //
889     $links[] = array(
890     "href" => "../scr/tab.php?obj=contrainte",
891     "class" => "contrainte",
892     "title" => _("contrainte"),
893     "right" => array("contrainte", "contrainte_tab", ),
894 softime 4427 "open" => array(
895     "tab.php|contrainte",
896     "form.php|contrainte[action=0]",
897     "form.php|contrainte[action=1]",
898     "form.php|contrainte[action=2]",
899     "form.php|contrainte[action=3]",
900     ),
901 mbroquet 3730 );
902     //
903     $links[] = array(
904 softime 4427 "href" => "../scr/form.php?obj=contrainte&action=100&idx=0",
905 mbroquet 3730 "class" => "contrainte",
906     "title" => _("synchronisation des contraintes"),
907     "right" => array("contrainte", "contrainte_synchronisation", ),
908 softime 4427 "open" => array("form.php|contrainte[action=100]", ),
909 mbroquet 3730 "parameters" => array(
910     "option_sig" => "sig_externe",
911     ),
912     );
913     //
914     $links[] = array(
915     "class" => "category",
916     "title" => _("demandes"),
917     "right" => array(
918     "demande_type",
919     "demande_type_tab", "demande_nature", "demande_nature_tab",
920     ),
921     );
922     //
923     $links[] = array(
924     "title" => "<hr/>",
925     "right" => array(
926     "demande_type",
927     "demande_type_tab", "demande_nature", "demande_nature_tab",
928     ),
929     );
930     //
931     $links[] = array(
932     "href" => "../scr/tab.php?obj=demande_nature",
933     "class" => "demande_nature",
934     "title" => _("nature"),
935     "right" => array("demande_nature", "demande_nature_tab", ),
936     "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
937     );
938     //
939     $links[] = array(
940     "href" => "../scr/tab.php?obj=demande_type",
941     "class" => "demande_type",
942     "title" => _("type"),
943     "right" => array("demande_type", "demande_type_tab",),
944     "open" => array("tab.php|demande_type", "form.php|demande_type", ),
945     );
946     //
947     $links[] = array(
948     "class" => "category",
949     "title" => _("workflows"),
950     "right" => array(
951     "workflows",
952     "action", "action_tab", "etat",
953     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
954     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
955     ),
956     );
957     //
958     $links[] = array(
959     "title" => "<hr/>",
960     "right" => array(
961     "workflows",
962     "action", "action_tab", "etat",
963     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
964     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
965     ),
966     );
967     //
968     $links[] = array(
969     "href" => "../app/workflows.php",
970     "class" => "workflows",
971     "title" => _("workflows"),
972     "right" => array("workflows", ),
973     "open" => array("workflows.php|", ),
974     );
975     //
976     $links[] = array(
977     "title" => "<hr/>",
978     "right" => array(
979     "evenement", "evenement_tab",
980     ),
981     );
982     //
983     $links[] = array(
984     "href" => "../scr/tab.php?obj=evenement",
985     "class" => "evenement",
986     "title" => _("evenement"),
987     "right" => array("evenement", "evenement_tab", ),
988     "open" => array("tab.php|evenement", "form.php|evenement", ),
989     );
990     //
991     $links[] = array(
992     "title" => "<hr/>",
993     "right" => array(
994     "action", "action_tab", "etat",
995     "etat_tab", "avis_decision",
996     "avis_decision_tab",
997     ),
998     );
999     //
1000     $links[] = array(
1001     "href" => "../scr/tab.php?obj=etat",
1002     "class" => "workflow-etat",
1003     "title" => _("etat"),
1004     "right" => array("etat", "etat_tab", ),
1005     "open" => array("tab.php|etat", "form.php|etat", ),
1006     );
1007     //
1008     $links[] = array(
1009     "href" => "../scr/tab.php?obj=avis_decision",
1010     "class" => "avis_decision",
1011     "title" => _("avis decision"),
1012     "right" => array("avis_decision", "avis_decision_tab", ),
1013     "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
1014     );
1015     //
1016     $links[] = array(
1017     "href" => "../scr/tab.php?obj=action",
1018     "class" => "action",
1019     "title" => _("action"),
1020     "right" => array("action", "action_tab", ),
1021     "open" => array("tab.php|action", "form.php|action", ),
1022     );
1023     //
1024     $links[] = array(
1025     "title" => "<hr/>",
1026     "right" => array(
1027     "bible", "bible_tab",
1028     ),
1029     );
1030     //
1031     $links[] = array(
1032     "href" => "../scr/tab.php?obj=bible",
1033     "class" => "bible",
1034     "title" => _("bible"),
1035     "right" => array("bible", "bible_tab", ),
1036     "open" => array("tab.php|bible", "form.php|bible", ),
1037     );
1038     //
1039     $links[] = array(
1040     "class" => "category",
1041     "title" => _("editions"),
1042     "right" => array(
1043     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
1044     "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
1045     "om_logo", "om_logo_tab",
1046     ),
1047     );
1048     //
1049     $links[] = array(
1050     "title" => "<hr/>",
1051     "right" => array(
1052     "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",
1053     ),
1054     );
1055     //
1056     $links[] = array(
1057     "href" => "../scr/tab.php?obj=om_etat",
1058     "class" => "om_etat",
1059     "title" => _("om_etat"),
1060     "right" => array("om_etat", "om_etat_tab", ),
1061     "open" => array("tab.php|om_etat", "form.php|om_etat", ),
1062     );
1063     //
1064     $links[] = array(
1065     "href" => "../scr/tab.php?obj=om_lettretype",
1066     "class" => "om_lettretype",
1067     "title" => _("om_lettretype"),
1068     "right" => array("om_lettretype", "om_lettretype_tab"),
1069     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
1070     );
1071     //
1072     $links[] = array(
1073     "title" => "<hr/>",
1074     "right" => array(
1075     "om_logo", "om_logo_tab",
1076     ),
1077     );
1078     //
1079     $links[] = array(
1080     "href" => "../scr/tab.php?obj=om_logo",
1081     "class" => "om_logo",
1082     "title" => _("om_logo"),
1083     "right" => array("om_logo", "om_logo_tab", ),
1084     "open" => array("tab.php|om_logo", "form.php|om_logo", ),
1085     );
1086     //
1087     $rubrik['links'] = $links;
1088     //
1089     $menu[] = $rubrik;
1090     // }}}
1091    
1092     // {{{ Rubrique PARAMETRAGE
1093     //
1094     $rubrik = array(
1095     "title" => _("parametrage"),
1096     "class" => "parametrage",
1097     "right" => "menu_parametrage",
1098     );
1099     //
1100     $links = array();
1101     //
1102     $links[] = array(
1103     "href" => "../scr/tab.php?obj=civilite",
1104     "class" => "civilite",
1105     "title" => _("civilite"),
1106     "right" => array("civilite", "civilite_tab", ),
1107     "open" => array("tab.php|civilite", "form.php|civilite", ),
1108     );
1109     //
1110     $links[] = array(
1111     "href" => "../scr/tab.php?obj=arrondissement",
1112     "class" => "arrondissement",
1113     "title" => _("arrondissement"),
1114     "right" => array("arrondissement", "arrondissement_tab", ),
1115     "open" => array("tab.php|arrondissement", "form.php|arrondissement", ),
1116     );
1117     //
1118     $links[] = array(
1119     "href" => "../scr/tab.php?obj=quartier",
1120     "class" => "quartier",
1121     "title" => _("quartier"),
1122     "right" => array("quartier", "quartier_tab", ),
1123     "open" => array("tab.php|quartier", "form.php|quartier", ),
1124     );
1125     //
1126     $links[] = array(
1127     "class" => "category",
1128     "title" => _("Organisation"),
1129     "right" => array(
1130     "direction", "direction_tab", "division", "division_tab", "instructeur",
1131     "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
1132     "signataire_arrete", "signataire_arrete_tab", "taxe_amenagement_tab", "taxe_amenagement",
1133     ),
1134     );
1135     $links[] = array(
1136     "title" => "<hr/>",
1137     "right" => array(
1138     "direction", "direction_tab", "division", "division_tab", "instructeur",
1139     "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
1140     "signataire_arrete", "signataire_arrete_tab", "taxe_amenagement_tab", "taxe_amenagement",
1141     ),
1142     );
1143     //
1144     $links[] = array(
1145     "href" => "../scr/tab.php?obj=genre",
1146     "class" => "genre",
1147     "title" => _("genre"),
1148     "right" => array("genre", "genre_tab", ),
1149     "open" => array("tab.php|genre", "form.php|genre", ),
1150     );
1151     //
1152     $links[] = array(
1153     "href" => "../scr/tab.php?obj=groupe",
1154     "class" => "groupe",
1155     "title" => _("groupe"),
1156     "right" => array("groupe", "groupe_tab", ),
1157     "open" => array("tab.php|groupe", "form.php|groupe", ),
1158     );
1159     //
1160     $links[] = array(
1161     "href" => "../scr/tab.php?obj=direction",
1162     "class" => "direction",
1163     "title" => _("direction"),
1164     "right" => array("direction", "direction_tab", ),
1165     "open" => array("tab.php|direction", "form.php|direction", ),
1166     );
1167     //
1168     $links[] = array(
1169     "href" => "../scr/tab.php?obj=division",
1170     "class" => "division",
1171     "title" => _("division"),
1172     "right" => array("division", "division_tab", ),
1173     "open" => array("tab.php|division", "form.php|division", ),
1174     );
1175     //
1176     $links[] = array(
1177     "href" => "../scr/tab.php?obj=instructeur",
1178     "class" => "instructeur",
1179     "title" => _("instructeur"),
1180     "right" => array("instructeur", "instructeur_tab", ),
1181     "open" => array("tab.php|instructeur", "form.php|instructeur", ),
1182     );
1183     //
1184     $links[] = array(
1185     "href" => "../scr/tab.php?obj=signataire_arrete",
1186     "class" => "signataire_arrete",
1187     "title" => _("signataire arrete"),
1188     "right" => array("signataire_arrete", "signataire_arrete", ),
1189     "open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ),
1190     );
1191     //
1192     $links[] = array(
1193     "href" => "../scr/tab.php?obj=taxe_amenagement",
1194     "class" => "taxe_amenagement",
1195     "title" => _("taxe d'amenagement"),
1196     "right" => array("taxe_amenagement", "taxe_amenagement", ),
1197     "open" => array("tab.php|taxe_amenagement", "form.php|taxe_amenagement", ),
1198     );
1199     //
1200     $links[] = array(
1201     "class" => "category",
1202     "title" => _("gestion des commissions"),
1203     "right" => array(
1204     "commission_type", "commission_type_tab",
1205     ),
1206     );
1207     //
1208     $links[] = array(
1209     "title" => "<hr/>",
1210     "right" => array(
1211     "commission_type", "commission_type_tab",
1212     ),
1213     );
1214     //
1215     $links[] = array(
1216     "href" => "../scr/tab.php?obj=commission_type",
1217     "class" => "commission-type",
1218     "title" => _("commission_type"),
1219     "right" => array("commission_type", "commission_type_tab", ),
1220     "open" => array("tab.php|commission_type", "form.php|commission_type", ),
1221     );
1222     //
1223     $links[] = array(
1224     "class" => "category",
1225     "title" => _("gestion des consultations"),
1226     "right" => array(
1227     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1228     "service_categorie", "service_categorie_tab",
1229     "lien_service_service_categorie", "lien_service_service_categorie_tab",
1230     ),
1231     );
1232     //
1233     $links[] = array(
1234     "title" => "<hr/>",
1235     "right" => array(
1236     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1237     "service_categorie", "service_categorie_tab",
1238     "lien_service_service_categorie", "lien_service_service_categorie_tab",
1239     ),
1240     );
1241     //
1242     $links[] = array(
1243     "href" => "../scr/tab.php?obj=avis_consultation",
1244     "class" => "avis_consultation",
1245     "title" => _("avis consultation"),
1246     "right" => array("avis_consultation", "avis_consultation_tab", ),
1247     "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
1248     );
1249     //
1250     $links[] = array(
1251     "href" => "../scr/tab.php?obj=service",
1252     "class" => "service",
1253     "title" => _("service"),
1254     "right" => array("service", "service_tab", ),
1255     "open" => array("tab.php|service", "form.php|service", ),
1256     );
1257     $links[] = array(
1258     "href" => "../scr/tab.php?obj=service_categorie",
1259     "class" => "service_categorie",
1260     "title" => _("thematique des services"),
1261     "right" => array("service_categorie", "service_categorie_tab", ),
1262     "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
1263     );
1264     //
1265     $links[] = array(
1266     "class" => "category",
1267     "title" => _("Gestion des dossiers"),
1268     "right" => array(
1269     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1270     "dossier_autorisation_type_detaille",
1271     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1272     "dossier_instruction_type_tab",
1273     "autorite_competente", "autorite_competente_tab",
1274     "affectation_automatique", "affectation_automatique_tab",
1275     ),
1276     );
1277     //
1278     $links[] = array(
1279     "title" => "<hr/>",
1280     "right" => array(
1281     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1282     "dossier_autorisation_type_detaille",
1283     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1284     "dossier_instruction_type_tab",
1285     "autorite_competente", "autorite_competente_tab",
1286     "affectation_automatique", "affectation_automatique_tab",
1287    
1288     ),
1289     );
1290     //
1291     $links[] = array(
1292     "href" => "../scr/tab.php?obj=etat_dossier_autorisation",
1293     "class" => "etat_dossier_autorisation",
1294     "title" => _("etat dossiers autorisations"),
1295     "right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ),
1296     "open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ),
1297     );
1298     //
1299     $links[] = array(
1300     "href" => "../scr/tab.php?obj=affectation_automatique",
1301     "class" => "affectation_automatique",
1302     "title" => _("affectation automatique"),
1303     "right" => array("affectation_automatique", "affectation_automatique_tab", ),
1304     "open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ),
1305     );
1306     //
1307     $links[] = array(
1308     "href" => "../scr/tab.php?obj=autorite_competente",
1309     "class" => "autorite_competente",
1310     "title" => _("autorite")." "._("competente"),
1311     "right" => array("autorite_competente", "autorite_competente_tab", ),
1312     "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
1313     );
1314 softime 3834 //
1315     $links[] = array(
1316     "href" => "../scr/tab.php?obj=phase",
1317     "class" => "phase",
1318     "title" => _("phase"),
1319     "right" => array("phase", "phase_tab", ),
1320     "open" => array("tab.php|phase", "form.php|phase", ),
1321     );
1322 mbroquet 3730
1323     //
1324     $rubrik['links'] = $links;
1325     //
1326     $menu[] = $rubrik;
1327     // }}}
1328    
1329     // {{{ Rubrique SIG
1330     //
1331     $rubrik = array(
1332     "title" => _("sig"),
1333     "class" => "sig",
1334     "right" => "menu_sig",
1335     "parameters" => array("option_localisation" => "sig_interne", ),
1336     );
1337     //
1338     $links = array();
1339     //
1340     $links[] = array(
1341     "href" => "../scr/tab.php?obj=parcelle",
1342     "class" => "parcelle",
1343     "title" => _("parcelle"),
1344     "right" => array("parcelle", "parcelle_tab"),
1345     "open" => array("tab.php|parcelle", "form.php|parcelle", ),
1346     "parameters" => array("option_localisation" => "sig_interne", ),
1347     );
1348     //
1349     $links[] = array(
1350     "href" => "../scr/tab.php?obj=proprietaire",
1351     "class" => "proprietaire",
1352     "title" => _("proprietaire"),
1353     "right" => array("proprietaire", "proprietaire_tab"),
1354     "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
1355     "parameters" => array("option_localisation" => "sig_interne", ),
1356     );
1357     //
1358     $links[] = array(
1359     "class" => "category",
1360     "title" => _("servitudes"),
1361     "right" => array(
1362     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
1363     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1364     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1365     ),
1366     "parameters" => array("option_localisation" => "sig_interne", ),
1367     );
1368     //
1369     $links[] = array(
1370     "title" => "<hr/>",
1371     "right" => array(
1372     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
1373     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1374     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1375     ),
1376     "parameters" => array("option_localisation" => "sig_interne", ),
1377     );
1378     //
1379     $links[] = array(
1380     "href" => "../scr/tab.php?obj=pos",
1381     "class" => "pos",
1382     "title" => _("pos"),
1383     "right" => array("pos", "pos_tab"),
1384     "open" => array("tab.php|pos", "form.php|pos", ),
1385     "parameters" => array("option_localisation" => "sig_interne", ),
1386     );
1387     //
1388     $links[] = array(
1389     "href" => "../scr/tab.php?obj=servitude_surfacique",
1390     "class" => "servitude_surfacique",
1391     "title" => _("servitude_surfacique"),
1392     "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
1393     "open" => array(
1394     "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
1395     ),
1396     "parameters" => array("option_localisation" => "sig_interne", ),
1397     );
1398     //
1399     $links[] = array(
1400     "href" => "../scr/tab.php?obj=servitude_ligne",
1401     "class" => "servitude_ligne",
1402     "title" => _("servitude_ligne"),
1403     "right" => array("servitude_ligne", "servitude_ligne_tab"),
1404     "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
1405     "parameters" => array("option_localisation" => "sig_interne", ),
1406     );
1407     //
1408     $links[] = array(
1409     "href" => "../scr/tab.php?obj=servitude_point",
1410     "class" => "servitude_point",
1411     "title" => _("servitude_point"),
1412     "right" => array("servitude_point", "servitude_point_tab"),
1413     "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
1414     "parameters" => array("option_localisation" => "sig_interne", ),
1415     );
1416     //
1417     $links[] = array(
1418     "href" => "../scr/tab.php?obj=parcelle_lot",
1419     "class" => "parcelle_lot",
1420     "title" => _("parcelle_lot"),
1421     "right" => array("parcelle_lot", "parcelle_lot_tab"),
1422     "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1423     "parameters" => array("option_localisation" => "sig_interne", ),
1424     );
1425     //
1426     $rubrik['links'] = $links;
1427     //
1428     $menu[] = $rubrik;
1429     // }}}
1430    
1431     // {{{ Rubrique ADMINISTRATION
1432     //
1433     $rubrik = array(
1434     "title" => _("administration"),
1435     "class" => "administration",
1436     "right" => "menu_administration",
1437     );
1438     //
1439     $links = array();
1440     //
1441     $links[] = array(
1442     "href" => "../scr/tab.php?obj=om_collectivite",
1443     "class" => "collectivite",
1444     "title" => _("om_collectivite"),
1445     "right" => array("om_collectivite", "om_collectivite_tab", ),
1446     "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
1447     );
1448     //
1449     $links[] = array(
1450     "href" => "../scr/tab.php?obj=om_parametre",
1451     "class" => "parametre",
1452     "title" => _("om_parametre"),
1453     "right" => array("om_parametre", "om_parametre_tab", ),
1454     "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
1455     );
1456     //
1457     $links[] = array(
1458     "class" => "category",
1459     "title" => _("gestion des utilisateurs"),
1460     "right" => array(
1461     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1462     "om_droit", "om_droit_tab", "directory",
1463     ),
1464     );
1465     //
1466     $links[] = array(
1467     "title" => "<hr/>",
1468     "right" => array(
1469     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1470     "om_droit", "om_droit_tab",
1471     ),
1472     );
1473     //
1474     $links[] = array(
1475     "href" => "../scr/tab.php?obj=om_profil",
1476     "class" => "profil",
1477     "title" => _("om_profil"),
1478     "right" => array("om_profil", "om_profil_tab", ),
1479     "open" => array("tab.php|om_profil", "form.php|om_profil", ),
1480     );
1481     //
1482     $links[] = array(
1483     "href" => "../scr/tab.php?obj=om_droit",
1484     "class" => "droit",
1485     "title" => _("om_droit"),
1486     "right" => array("om_droit", "om_droit_tab", ),
1487     "open" => array("tab.php|om_droit", "form.php|om_droit", ),
1488     );
1489     //
1490     $links[] = array(
1491     "href" => "../scr/tab.php?obj=om_utilisateur",
1492     "class" => "utilisateur",
1493     "title" => _("om_utilisateur"),
1494     "right" => array("om_utilisateur", "om_utilisateur_tab", ),
1495     "open" => array(
1496     "tab.php|om_utilisateur",
1497     "form.php|om_utilisateur[action=0]",
1498     "form.php|om_utilisateur[action=1]",
1499     "form.php|om_utilisateur[action=2]",
1500     "form.php|om_utilisateur[action=3]",
1501     ),
1502     );
1503     //
1504     $links[] = array(
1505     "title" => "<hr/>",
1506     "right" => array("om_utilisateur", "om_utilisateur_synchroniser", ),
1507     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1508     );
1509     //
1510     $links[] = array(
1511     "href" => "../scr/form.php?obj=om_utilisateur&idx=0&action=11",
1512     "class" => "annuaire",
1513     "title" => _("annuaire"),
1514     "right" => array("om_utilisateur", "om_utilisateur_synchroniser", ),
1515     "open" => array("form.php|om_utilisateur[action=11]", ),
1516     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1517     );
1518     //
1519     $links[] = array(
1520     "class" => "category",
1521     "title" => _("tableaux de bord"),
1522     "right" => array(
1523     "om_widget", "om_widget_tab", "om_dashboard",
1524     ),
1525     );
1526     //
1527     $links[] = array(
1528     "title" => "<hr/>",
1529     "right" => array(
1530     "om_widget", "om_widget_tab", "om_dashboard",
1531     ),
1532     );
1533     //
1534     $links[] = array(
1535     "href" => "../scr/tab.php?obj=om_widget",
1536     "class" => "om_widget",
1537     "title" => _("om_widget"),
1538     "right" => array("om_widget", "om_widget_tab", ),
1539     "open" => array("tab.php|om_widget", "form.php|om_widget", ),
1540     );
1541     //
1542     $links[] = array(
1543 fmichon 4160 "href" => "../scr/form.php?obj=om_dashboard&amp;idx=0&amp;action=4",
1544 mbroquet 3730 "class" => "om_dashboard",
1545     "title" => _("composition"),
1546     "right" => array("om_dashboard", ),
1547 fmichon 4160 "open" => array("form.php|om_dashboard[action=4]", ),
1548 mbroquet 3730 );
1549     //
1550     $links[] = array(
1551     "class" => "category",
1552     "title" => _("sig"),
1553     "right" => array(
1554     "om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab",
1555     ),
1556     "parameters" => array("option_localisation" => "sig_interne", ),
1557     );
1558     //
1559     $links[] = array(
1560     "title" => "<hr/>",
1561     "right" => array(
1562     "om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab",
1563     ),
1564     "parameters" => array("option_localisation" => "sig_interne", ),
1565     );
1566     //
1567     $links[] = array(
1568     "href" => "../scr/tab.php?obj=om_sig_extent",
1569     "class" => "om_sig_extent",
1570     "title" => _("om_sig_extent"),
1571     "right" => array("om_sig_extent", "om_sig_extent_tab", ),
1572     "open" => array("tab.php|om_sig_extent", "form.php|om_sig_extent", ),
1573     "parameters" => array("option_localisation" => "sig_interne", ),
1574     );
1575     //
1576     $links[] = array(
1577     "href" => "../scr/tab.php?obj=om_sig_map",
1578     "class" => "om_sig_map",
1579     "title" => _("om_sig_map"),
1580     "right" => array("om_sig_map", "om_sig_map_tab", ),
1581     "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1582     "parameters" => array("option_localisation" => "sig_interne", ),
1583     );
1584     //
1585     $links[] = array(
1586     "href" => "../scr/tab.php?obj=om_sig_flux",
1587     "class" => "om_sig_flux",
1588     "title" => _("om_sig_flux"),
1589     "right" => array("om_sig_flux", "om_sig_flux_tab", ),
1590     "open" => array("tab.php|om_sig_flux", "form.php|om_sig_flux", ),
1591     "parameters" => array("option_localisation" => "sig_interne", ),
1592     );
1593     //
1594     $links[] = array(
1595     "class" => "category",
1596     "title" => _("options avancees"),
1597     "right" => array("import", "gen", "om_requete", "om_requete_tab",
1598     "om_sousetat", "om_sousetat_tab",),
1599     );
1600     //
1601     $links[] = array(
1602     "title" => "<hr/>",
1603     "right" => array(
1604     "om_sousetat", "om_sousetat_tab",
1605     ),
1606     );
1607     //
1608     $links[] = array(
1609     "href" => "../scr/tab.php?obj=om_sousetat",
1610     "class" => "om_sousetat",
1611     "title" => _("om_sousetat"),
1612     "right" => array("om_sousetat", "om_sousetat_tab", ),
1613     "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
1614     );
1615     //
1616     $links[] = array(
1617     "title" => "<hr/>",
1618     "right" => array("om_requete", "om_requete_tab", ),
1619     );
1620     //
1621     $links[] = array(
1622     "href" => "../scr/tab.php?obj=om_requete",
1623     "class" => "om_requete",
1624     "title" => _("om_requete"),
1625     "right" => array("om_requete", "om_requete_tab", ),
1626     "open" => array("tab.php|om_requete", "form.php|om_requete", ),
1627     );
1628     //
1629     $links[] = array(
1630     "title" => "<hr/>",
1631     "right" => array("import", ),
1632     );
1633     //
1634     $links[] = array(
1635     "href" => "../scr/import.php",
1636     "class" => "import",
1637     "title" => _("Import"),
1638     "right" => array("import", ),
1639     "open" => array("import.php|", ),
1640     );
1641     //
1642     $links[] = array(
1643     "href" => "../app/import_specific.php",
1644     "class" => "import_specific",
1645     "title" => _("Import specifique"),
1646     "right" => array("import", ),
1647     "open" => array("import_specific.php|", ),
1648     );
1649     //
1650     $links[] = array(
1651     "title" => "<hr/>",
1652     "right" => array("gen", ),
1653     );
1654     //
1655     $links[] = array(
1656     "title" => _("Generateur"),
1657     "href" => "../scr/gen.php",
1658     "class" => "generator",
1659     "right" => array("gen", ),
1660     "open" => array(
1661     "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1662     "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1663     "genimport.php|",
1664     ),
1665     );
1666     //
1667     $rubrik['links'] = $links;
1668     //
1669     $menu[] = $rubrik;
1670     // }}}
1671    
1672     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26