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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26