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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4467 - (hide annotations)
Fri Jun 10 06:00:40 2016 UTC (8 years, 7 months ago) by fmichon
File size: 49821 byte(s)
* Tests : Réécriture d'un TestCase PHPUnitSelenium concernant la rubrique Suivi en RobotFramework.

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 fmichon 4467 "class" => "envoi_lettre_rar",
539 mbroquet 3730 "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 fmichon 4467 "class" => "bordereaux",
554 mbroquet 3730 "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 softime 4427 "open" => array(
816     "tab.php|contrainte",
817     "form.php|contrainte[action=0]",
818     "form.php|contrainte[action=1]",
819     "form.php|contrainte[action=2]",
820     "form.php|contrainte[action=3]",
821     ),
822 mbroquet 3730 );
823     //
824     $links[] = array(
825 softime 4427 "href" => "../scr/form.php?obj=contrainte&action=100&idx=0",
826 mbroquet 3730 "class" => "contrainte",
827     "title" => _("synchronisation des contraintes"),
828     "right" => array("contrainte", "contrainte_synchronisation", ),
829 softime 4427 "open" => array("form.php|contrainte[action=100]", ),
830 mbroquet 3730 "parameters" => array(
831     "option_sig" => "sig_externe",
832     ),
833     );
834     //
835     $links[] = array(
836     "class" => "category",
837     "title" => _("demandes"),
838     "right" => array(
839     "demande_type",
840     "demande_type_tab", "demande_nature", "demande_nature_tab",
841     ),
842     );
843     //
844     $links[] = array(
845     "title" => "<hr/>",
846     "right" => array(
847     "demande_type",
848     "demande_type_tab", "demande_nature", "demande_nature_tab",
849     ),
850     );
851     //
852     $links[] = array(
853     "href" => "../scr/tab.php?obj=demande_nature",
854     "class" => "demande_nature",
855     "title" => _("nature"),
856     "right" => array("demande_nature", "demande_nature_tab", ),
857     "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
858     );
859     //
860     $links[] = array(
861     "href" => "../scr/tab.php?obj=demande_type",
862     "class" => "demande_type",
863     "title" => _("type"),
864     "right" => array("demande_type", "demande_type_tab",),
865     "open" => array("tab.php|demande_type", "form.php|demande_type", ),
866     );
867     //
868     $links[] = array(
869     "class" => "category",
870     "title" => _("workflows"),
871     "right" => array(
872     "workflows",
873     "action", "action_tab", "etat",
874     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
875     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
876     ),
877     );
878     //
879     $links[] = array(
880     "title" => "<hr/>",
881     "right" => array(
882     "workflows",
883     "action", "action_tab", "etat",
884     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
885     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
886     ),
887     );
888     //
889     $links[] = array(
890     "href" => "../app/workflows.php",
891     "class" => "workflows",
892     "title" => _("workflows"),
893     "right" => array("workflows", ),
894     "open" => array("workflows.php|", ),
895     );
896     //
897     $links[] = array(
898     "title" => "<hr/>",
899     "right" => array(
900     "evenement", "evenement_tab",
901     ),
902     );
903     //
904     $links[] = array(
905     "href" => "../scr/tab.php?obj=evenement",
906     "class" => "evenement",
907     "title" => _("evenement"),
908     "right" => array("evenement", "evenement_tab", ),
909     "open" => array("tab.php|evenement", "form.php|evenement", ),
910     );
911     //
912     $links[] = array(
913     "title" => "<hr/>",
914     "right" => array(
915     "action", "action_tab", "etat",
916     "etat_tab", "avis_decision",
917     "avis_decision_tab",
918     ),
919     );
920     //
921     $links[] = array(
922     "href" => "../scr/tab.php?obj=etat",
923     "class" => "workflow-etat",
924     "title" => _("etat"),
925     "right" => array("etat", "etat_tab", ),
926     "open" => array("tab.php|etat", "form.php|etat", ),
927     );
928     //
929     $links[] = array(
930     "href" => "../scr/tab.php?obj=avis_decision",
931     "class" => "avis_decision",
932     "title" => _("avis decision"),
933     "right" => array("avis_decision", "avis_decision_tab", ),
934     "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
935     );
936     //
937     $links[] = array(
938     "href" => "../scr/tab.php?obj=action",
939     "class" => "action",
940     "title" => _("action"),
941     "right" => array("action", "action_tab", ),
942     "open" => array("tab.php|action", "form.php|action", ),
943     );
944     //
945     $links[] = array(
946     "title" => "<hr/>",
947     "right" => array(
948     "bible", "bible_tab",
949     ),
950     );
951     //
952     $links[] = array(
953     "href" => "../scr/tab.php?obj=bible",
954     "class" => "bible",
955     "title" => _("bible"),
956     "right" => array("bible", "bible_tab", ),
957     "open" => array("tab.php|bible", "form.php|bible", ),
958     );
959     //
960     $links[] = array(
961     "class" => "category",
962     "title" => _("editions"),
963     "right" => array(
964     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
965     "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
966     "om_logo", "om_logo_tab",
967     ),
968     );
969     //
970     $links[] = array(
971     "title" => "<hr/>",
972     "right" => array(
973     "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",
974     ),
975     );
976     //
977     $links[] = array(
978     "href" => "../scr/tab.php?obj=om_etat",
979     "class" => "om_etat",
980     "title" => _("om_etat"),
981     "right" => array("om_etat", "om_etat_tab", ),
982     "open" => array("tab.php|om_etat", "form.php|om_etat", ),
983     );
984     //
985     $links[] = array(
986     "href" => "../scr/tab.php?obj=om_lettretype",
987     "class" => "om_lettretype",
988     "title" => _("om_lettretype"),
989     "right" => array("om_lettretype", "om_lettretype_tab"),
990     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
991     );
992     //
993     $links[] = array(
994     "title" => "<hr/>",
995     "right" => array(
996     "om_logo", "om_logo_tab",
997     ),
998     );
999     //
1000     $links[] = array(
1001     "href" => "../scr/tab.php?obj=om_logo",
1002     "class" => "om_logo",
1003     "title" => _("om_logo"),
1004     "right" => array("om_logo", "om_logo_tab", ),
1005     "open" => array("tab.php|om_logo", "form.php|om_logo", ),
1006     );
1007     //
1008     $rubrik['links'] = $links;
1009     //
1010     $menu[] = $rubrik;
1011     // }}}
1012    
1013     // {{{ Rubrique PARAMETRAGE
1014     //
1015     $rubrik = array(
1016     "title" => _("parametrage"),
1017     "class" => "parametrage",
1018     "right" => "menu_parametrage",
1019     );
1020     //
1021     $links = array();
1022     //
1023     $links[] = array(
1024     "href" => "../scr/tab.php?obj=civilite",
1025     "class" => "civilite",
1026     "title" => _("civilite"),
1027     "right" => array("civilite", "civilite_tab", ),
1028     "open" => array("tab.php|civilite", "form.php|civilite", ),
1029     );
1030     //
1031     $links[] = array(
1032     "href" => "../scr/tab.php?obj=arrondissement",
1033     "class" => "arrondissement",
1034     "title" => _("arrondissement"),
1035     "right" => array("arrondissement", "arrondissement_tab", ),
1036     "open" => array("tab.php|arrondissement", "form.php|arrondissement", ),
1037     );
1038     //
1039     $links[] = array(
1040     "href" => "../scr/tab.php?obj=quartier",
1041     "class" => "quartier",
1042     "title" => _("quartier"),
1043     "right" => array("quartier", "quartier_tab", ),
1044     "open" => array("tab.php|quartier", "form.php|quartier", ),
1045     );
1046     //
1047     $links[] = array(
1048     "class" => "category",
1049     "title" => _("Organisation"),
1050     "right" => array(
1051     "direction", "direction_tab", "division", "division_tab", "instructeur",
1052     "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
1053     "signataire_arrete", "signataire_arrete_tab", "taxe_amenagement_tab", "taxe_amenagement",
1054     ),
1055     );
1056     $links[] = array(
1057     "title" => "<hr/>",
1058     "right" => array(
1059     "direction", "direction_tab", "division", "division_tab", "instructeur",
1060     "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
1061     "signataire_arrete", "signataire_arrete_tab", "taxe_amenagement_tab", "taxe_amenagement",
1062     ),
1063     );
1064     //
1065     $links[] = array(
1066     "href" => "../scr/tab.php?obj=genre",
1067     "class" => "genre",
1068     "title" => _("genre"),
1069     "right" => array("genre", "genre_tab", ),
1070     "open" => array("tab.php|genre", "form.php|genre", ),
1071     );
1072     //
1073     $links[] = array(
1074     "href" => "../scr/tab.php?obj=groupe",
1075     "class" => "groupe",
1076     "title" => _("groupe"),
1077     "right" => array("groupe", "groupe_tab", ),
1078     "open" => array("tab.php|groupe", "form.php|groupe", ),
1079     );
1080     //
1081     $links[] = array(
1082     "href" => "../scr/tab.php?obj=direction",
1083     "class" => "direction",
1084     "title" => _("direction"),
1085     "right" => array("direction", "direction_tab", ),
1086     "open" => array("tab.php|direction", "form.php|direction", ),
1087     );
1088     //
1089     $links[] = array(
1090     "href" => "../scr/tab.php?obj=division",
1091     "class" => "division",
1092     "title" => _("division"),
1093     "right" => array("division", "division_tab", ),
1094     "open" => array("tab.php|division", "form.php|division", ),
1095     );
1096     //
1097     $links[] = array(
1098     "href" => "../scr/tab.php?obj=instructeur",
1099     "class" => "instructeur",
1100     "title" => _("instructeur"),
1101     "right" => array("instructeur", "instructeur_tab", ),
1102     "open" => array("tab.php|instructeur", "form.php|instructeur", ),
1103     );
1104     //
1105     $links[] = array(
1106     "href" => "../scr/tab.php?obj=signataire_arrete",
1107     "class" => "signataire_arrete",
1108     "title" => _("signataire arrete"),
1109     "right" => array("signataire_arrete", "signataire_arrete", ),
1110     "open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ),
1111     );
1112     //
1113     $links[] = array(
1114     "href" => "../scr/tab.php?obj=taxe_amenagement",
1115     "class" => "taxe_amenagement",
1116     "title" => _("taxe d'amenagement"),
1117     "right" => array("taxe_amenagement", "taxe_amenagement", ),
1118     "open" => array("tab.php|taxe_amenagement", "form.php|taxe_amenagement", ),
1119     );
1120     //
1121     $links[] = array(
1122     "class" => "category",
1123     "title" => _("gestion des commissions"),
1124     "right" => array(
1125     "commission_type", "commission_type_tab",
1126     ),
1127     );
1128     //
1129     $links[] = array(
1130     "title" => "<hr/>",
1131     "right" => array(
1132     "commission_type", "commission_type_tab",
1133     ),
1134     );
1135     //
1136     $links[] = array(
1137     "href" => "../scr/tab.php?obj=commission_type",
1138     "class" => "commission-type",
1139     "title" => _("commission_type"),
1140     "right" => array("commission_type", "commission_type_tab", ),
1141     "open" => array("tab.php|commission_type", "form.php|commission_type", ),
1142     );
1143     //
1144     $links[] = array(
1145     "class" => "category",
1146     "title" => _("gestion des consultations"),
1147     "right" => array(
1148     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1149     "service_categorie", "service_categorie_tab",
1150     "lien_service_service_categorie", "lien_service_service_categorie_tab",
1151     ),
1152     );
1153     //
1154     $links[] = array(
1155     "title" => "<hr/>",
1156     "right" => array(
1157     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1158     "service_categorie", "service_categorie_tab",
1159     "lien_service_service_categorie", "lien_service_service_categorie_tab",
1160     ),
1161     );
1162     //
1163     $links[] = array(
1164     "href" => "../scr/tab.php?obj=avis_consultation",
1165     "class" => "avis_consultation",
1166     "title" => _("avis consultation"),
1167     "right" => array("avis_consultation", "avis_consultation_tab", ),
1168     "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
1169     );
1170     //
1171     $links[] = array(
1172     "href" => "../scr/tab.php?obj=service",
1173     "class" => "service",
1174     "title" => _("service"),
1175     "right" => array("service", "service_tab", ),
1176     "open" => array("tab.php|service", "form.php|service", ),
1177     );
1178     $links[] = array(
1179     "href" => "../scr/tab.php?obj=service_categorie",
1180     "class" => "service_categorie",
1181     "title" => _("thematique des services"),
1182     "right" => array("service_categorie", "service_categorie_tab", ),
1183     "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
1184     );
1185     //
1186     $links[] = array(
1187     "class" => "category",
1188     "title" => _("Gestion des dossiers"),
1189     "right" => array(
1190     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1191     "dossier_autorisation_type_detaille",
1192     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1193     "dossier_instruction_type_tab",
1194     "autorite_competente", "autorite_competente_tab",
1195     "affectation_automatique", "affectation_automatique_tab",
1196     ),
1197     );
1198     //
1199     $links[] = array(
1200     "title" => "<hr/>",
1201     "right" => array(
1202     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1203     "dossier_autorisation_type_detaille",
1204     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1205     "dossier_instruction_type_tab",
1206     "autorite_competente", "autorite_competente_tab",
1207     "affectation_automatique", "affectation_automatique_tab",
1208    
1209     ),
1210     );
1211     //
1212     $links[] = array(
1213     "href" => "../scr/tab.php?obj=etat_dossier_autorisation",
1214     "class" => "etat_dossier_autorisation",
1215     "title" => _("etat dossiers autorisations"),
1216     "right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ),
1217     "open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ),
1218     );
1219     //
1220     $links[] = array(
1221     "href" => "../scr/tab.php?obj=affectation_automatique",
1222     "class" => "affectation_automatique",
1223     "title" => _("affectation automatique"),
1224     "right" => array("affectation_automatique", "affectation_automatique_tab", ),
1225     "open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ),
1226     );
1227     //
1228     $links[] = array(
1229     "href" => "../scr/tab.php?obj=autorite_competente",
1230     "class" => "autorite_competente",
1231     "title" => _("autorite")." "._("competente"),
1232     "right" => array("autorite_competente", "autorite_competente_tab", ),
1233     "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
1234     );
1235 softime 3834 //
1236     $links[] = array(
1237     "href" => "../scr/tab.php?obj=phase",
1238     "class" => "phase",
1239     "title" => _("phase"),
1240     "right" => array("phase", "phase_tab", ),
1241     "open" => array("tab.php|phase", "form.php|phase", ),
1242     );
1243 mbroquet 3730
1244     //
1245     $rubrik['links'] = $links;
1246     //
1247     $menu[] = $rubrik;
1248     // }}}
1249    
1250     // {{{ Rubrique SIG
1251     //
1252     $rubrik = array(
1253     "title" => _("sig"),
1254     "class" => "sig",
1255     "right" => "menu_sig",
1256     "parameters" => array("option_localisation" => "sig_interne", ),
1257     );
1258     //
1259     $links = array();
1260     //
1261     $links[] = array(
1262     "href" => "../scr/tab.php?obj=parcelle",
1263     "class" => "parcelle",
1264     "title" => _("parcelle"),
1265     "right" => array("parcelle", "parcelle_tab"),
1266     "open" => array("tab.php|parcelle", "form.php|parcelle", ),
1267     "parameters" => array("option_localisation" => "sig_interne", ),
1268     );
1269     //
1270     $links[] = array(
1271     "href" => "../scr/tab.php?obj=proprietaire",
1272     "class" => "proprietaire",
1273     "title" => _("proprietaire"),
1274     "right" => array("proprietaire", "proprietaire_tab"),
1275     "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
1276     "parameters" => array("option_localisation" => "sig_interne", ),
1277     );
1278     //
1279     $links[] = array(
1280     "class" => "category",
1281     "title" => _("servitudes"),
1282     "right" => array(
1283     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
1284     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1285     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1286     ),
1287     "parameters" => array("option_localisation" => "sig_interne", ),
1288     );
1289     //
1290     $links[] = array(
1291     "title" => "<hr/>",
1292     "right" => array(
1293     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
1294     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1295     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1296     ),
1297     "parameters" => array("option_localisation" => "sig_interne", ),
1298     );
1299     //
1300     $links[] = array(
1301     "href" => "../scr/tab.php?obj=pos",
1302     "class" => "pos",
1303     "title" => _("pos"),
1304     "right" => array("pos", "pos_tab"),
1305     "open" => array("tab.php|pos", "form.php|pos", ),
1306     "parameters" => array("option_localisation" => "sig_interne", ),
1307     );
1308     //
1309     $links[] = array(
1310     "href" => "../scr/tab.php?obj=servitude_surfacique",
1311     "class" => "servitude_surfacique",
1312     "title" => _("servitude_surfacique"),
1313     "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
1314     "open" => array(
1315     "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
1316     ),
1317     "parameters" => array("option_localisation" => "sig_interne", ),
1318     );
1319     //
1320     $links[] = array(
1321     "href" => "../scr/tab.php?obj=servitude_ligne",
1322     "class" => "servitude_ligne",
1323     "title" => _("servitude_ligne"),
1324     "right" => array("servitude_ligne", "servitude_ligne_tab"),
1325     "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
1326     "parameters" => array("option_localisation" => "sig_interne", ),
1327     );
1328     //
1329     $links[] = array(
1330     "href" => "../scr/tab.php?obj=servitude_point",
1331     "class" => "servitude_point",
1332     "title" => _("servitude_point"),
1333     "right" => array("servitude_point", "servitude_point_tab"),
1334     "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
1335     "parameters" => array("option_localisation" => "sig_interne", ),
1336     );
1337     //
1338     $links[] = array(
1339     "href" => "../scr/tab.php?obj=parcelle_lot",
1340     "class" => "parcelle_lot",
1341     "title" => _("parcelle_lot"),
1342     "right" => array("parcelle_lot", "parcelle_lot_tab"),
1343     "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1344     "parameters" => array("option_localisation" => "sig_interne", ),
1345     );
1346     //
1347     $rubrik['links'] = $links;
1348     //
1349     $menu[] = $rubrik;
1350     // }}}
1351    
1352     // {{{ Rubrique ADMINISTRATION
1353     //
1354     $rubrik = array(
1355     "title" => _("administration"),
1356     "class" => "administration",
1357     "right" => "menu_administration",
1358     );
1359     //
1360     $links = array();
1361     //
1362     $links[] = array(
1363     "href" => "../scr/tab.php?obj=om_collectivite",
1364     "class" => "collectivite",
1365     "title" => _("om_collectivite"),
1366     "right" => array("om_collectivite", "om_collectivite_tab", ),
1367     "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
1368     );
1369     //
1370     $links[] = array(
1371     "href" => "../scr/tab.php?obj=om_parametre",
1372     "class" => "parametre",
1373     "title" => _("om_parametre"),
1374     "right" => array("om_parametre", "om_parametre_tab", ),
1375     "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
1376     );
1377     //
1378     $links[] = array(
1379     "class" => "category",
1380     "title" => _("gestion des utilisateurs"),
1381     "right" => array(
1382     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1383     "om_droit", "om_droit_tab", "directory",
1384     ),
1385     );
1386     //
1387     $links[] = array(
1388     "title" => "<hr/>",
1389     "right" => array(
1390     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1391     "om_droit", "om_droit_tab",
1392     ),
1393     );
1394     //
1395     $links[] = array(
1396     "href" => "../scr/tab.php?obj=om_profil",
1397     "class" => "profil",
1398     "title" => _("om_profil"),
1399     "right" => array("om_profil", "om_profil_tab", ),
1400     "open" => array("tab.php|om_profil", "form.php|om_profil", ),
1401     );
1402     //
1403     $links[] = array(
1404     "href" => "../scr/tab.php?obj=om_droit",
1405     "class" => "droit",
1406     "title" => _("om_droit"),
1407     "right" => array("om_droit", "om_droit_tab", ),
1408     "open" => array("tab.php|om_droit", "form.php|om_droit", ),
1409     );
1410     //
1411     $links[] = array(
1412     "href" => "../scr/tab.php?obj=om_utilisateur",
1413     "class" => "utilisateur",
1414     "title" => _("om_utilisateur"),
1415     "right" => array("om_utilisateur", "om_utilisateur_tab", ),
1416     "open" => array(
1417     "tab.php|om_utilisateur",
1418     "form.php|om_utilisateur[action=0]",
1419     "form.php|om_utilisateur[action=1]",
1420     "form.php|om_utilisateur[action=2]",
1421     "form.php|om_utilisateur[action=3]",
1422     ),
1423     );
1424     //
1425     $links[] = array(
1426     "title" => "<hr/>",
1427     "right" => array("om_utilisateur", "om_utilisateur_synchroniser", ),
1428     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1429     );
1430     //
1431     $links[] = array(
1432     "href" => "../scr/form.php?obj=om_utilisateur&idx=0&action=11",
1433     "class" => "annuaire",
1434     "title" => _("annuaire"),
1435     "right" => array("om_utilisateur", "om_utilisateur_synchroniser", ),
1436     "open" => array("form.php|om_utilisateur[action=11]", ),
1437     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1438     );
1439     //
1440     $links[] = array(
1441     "class" => "category",
1442     "title" => _("tableaux de bord"),
1443     "right" => array(
1444     "om_widget", "om_widget_tab", "om_dashboard",
1445     ),
1446     );
1447     //
1448     $links[] = array(
1449     "title" => "<hr/>",
1450     "right" => array(
1451     "om_widget", "om_widget_tab", "om_dashboard",
1452     ),
1453     );
1454     //
1455     $links[] = array(
1456     "href" => "../scr/tab.php?obj=om_widget",
1457     "class" => "om_widget",
1458     "title" => _("om_widget"),
1459     "right" => array("om_widget", "om_widget_tab", ),
1460     "open" => array("tab.php|om_widget", "form.php|om_widget", ),
1461     );
1462     //
1463     $links[] = array(
1464 fmichon 4160 "href" => "../scr/form.php?obj=om_dashboard&amp;idx=0&amp;action=4",
1465 mbroquet 3730 "class" => "om_dashboard",
1466     "title" => _("composition"),
1467     "right" => array("om_dashboard", ),
1468 fmichon 4160 "open" => array("form.php|om_dashboard[action=4]", ),
1469 mbroquet 3730 );
1470     //
1471     $links[] = array(
1472     "class" => "category",
1473     "title" => _("sig"),
1474     "right" => array(
1475     "om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab",
1476     ),
1477     "parameters" => array("option_localisation" => "sig_interne", ),
1478     );
1479     //
1480     $links[] = array(
1481     "title" => "<hr/>",
1482     "right" => array(
1483     "om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab",
1484     ),
1485     "parameters" => array("option_localisation" => "sig_interne", ),
1486     );
1487     //
1488     $links[] = array(
1489     "href" => "../scr/tab.php?obj=om_sig_extent",
1490     "class" => "om_sig_extent",
1491     "title" => _("om_sig_extent"),
1492     "right" => array("om_sig_extent", "om_sig_extent_tab", ),
1493     "open" => array("tab.php|om_sig_extent", "form.php|om_sig_extent", ),
1494     "parameters" => array("option_localisation" => "sig_interne", ),
1495     );
1496     //
1497     $links[] = array(
1498     "href" => "../scr/tab.php?obj=om_sig_map",
1499     "class" => "om_sig_map",
1500     "title" => _("om_sig_map"),
1501     "right" => array("om_sig_map", "om_sig_map_tab", ),
1502     "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1503     "parameters" => array("option_localisation" => "sig_interne", ),
1504     );
1505     //
1506     $links[] = array(
1507     "href" => "../scr/tab.php?obj=om_sig_flux",
1508     "class" => "om_sig_flux",
1509     "title" => _("om_sig_flux"),
1510     "right" => array("om_sig_flux", "om_sig_flux_tab", ),
1511     "open" => array("tab.php|om_sig_flux", "form.php|om_sig_flux", ),
1512     "parameters" => array("option_localisation" => "sig_interne", ),
1513     );
1514     //
1515     $links[] = array(
1516     "class" => "category",
1517     "title" => _("options avancees"),
1518     "right" => array("import", "gen", "om_requete", "om_requete_tab",
1519     "om_sousetat", "om_sousetat_tab",),
1520     );
1521     //
1522     $links[] = array(
1523     "title" => "<hr/>",
1524     "right" => array(
1525     "om_sousetat", "om_sousetat_tab",
1526     ),
1527     );
1528     //
1529     $links[] = array(
1530     "href" => "../scr/tab.php?obj=om_sousetat",
1531     "class" => "om_sousetat",
1532     "title" => _("om_sousetat"),
1533     "right" => array("om_sousetat", "om_sousetat_tab", ),
1534     "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
1535     );
1536     //
1537     $links[] = array(
1538     "title" => "<hr/>",
1539     "right" => array("om_requete", "om_requete_tab", ),
1540     );
1541     //
1542     $links[] = array(
1543     "href" => "../scr/tab.php?obj=om_requete",
1544     "class" => "om_requete",
1545     "title" => _("om_requete"),
1546     "right" => array("om_requete", "om_requete_tab", ),
1547     "open" => array("tab.php|om_requete", "form.php|om_requete", ),
1548     );
1549     //
1550     $links[] = array(
1551     "title" => "<hr/>",
1552     "right" => array("import", ),
1553     );
1554     //
1555     $links[] = array(
1556     "href" => "../scr/import.php",
1557     "class" => "import",
1558     "title" => _("Import"),
1559     "right" => array("import", ),
1560     "open" => array("import.php|", ),
1561     );
1562     //
1563     $links[] = array(
1564     "href" => "../app/import_specific.php",
1565     "class" => "import_specific",
1566     "title" => _("Import specifique"),
1567     "right" => array("import", ),
1568     "open" => array("import_specific.php|", ),
1569     );
1570     //
1571     $links[] = array(
1572     "title" => "<hr/>",
1573     "right" => array("gen", ),
1574     );
1575     //
1576     $links[] = array(
1577     "title" => _("Generateur"),
1578     "href" => "../scr/gen.php",
1579     "class" => "generator",
1580     "right" => array("gen", ),
1581     "open" => array(
1582     "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1583     "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1584     "genimport.php|",
1585     ),
1586     );
1587     //
1588     $rubrik['links'] = $links;
1589     //
1590     $menu[] = $rubrik;
1591     // }}}
1592    
1593     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26