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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4160 - (hide annotations)
Fri May 13 14:25:15 2016 UTC (8 years, 8 months ago) by fmichon
File size: 49560 byte(s)
* Le menu 'Administration > Tableaux de bord > Composition' ne restait pas ouvert
  depuis l'écran en question. C'est désormais le cas.

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26