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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4237 - (hide annotations)
Fri May 20 09:41:07 2016 UTC (8 years, 8 months ago) by fmichon
File size: 49641 byte(s)
* Déplacement de scripts du répertoire app/ vers des vues de la classe métier concernée. Les écrans sont : 'Suivi > Demandes D'avis > *'.

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26