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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1463 - (hide annotations)
Sun Mar 17 16:30:34 2013 UTC (11 years, 10 months ago) by fmichon
File size: 41490 byte(s)
Mise en cohérence du menu du guichet unique + Nettoyage des scripts qui concernent l'affichage réglementaire 

1 fraynaud 3 <?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 324 2010-12-06 16:06:21Z fraynaud $
8     */
9    
10 fmichon 380 //
11 fraynaud 3 $menu = array();
12 fmichon 647
13     // {{{ Rubrique AUTORISATION
14     //
15     $rubrik = array(
16 fmichon 1383 "title" => _("Autorisation"),
17 fmichon 647 "class" => "autorisation",
18     "right" => "menu_autorisation",
19     );
20     //
21     $links = array();
22 fmichon 1383
23     $links[] = array(
24     "href" => "../scr/tab.php?obj=dossier_autorisation",
25     "class" => "dossier_autorisation",
26     "title" => _("Dossiers d'autorisation"),
27     "right" => array("dossier_autorisation", "dossier_autorisation_tab", ),
28     "open" => array("tab.php|dossier_autorisation", "dossier_autorisation.php|", ),
29     );
30 fmichon 647 //
31     $rubrik['links'] = $links;
32     //
33     $menu[] = $rubrik;
34 vpihour 624 // }}}
35 fmichon 647
36     // {{{ Rubrique GUICHET UNIQUE
37 fmichon 380 //
38 fraynaud 3 $rubrik = array(
39 vpihour 624 "title" => _("Guichet Unique"),
40 fmichon 647 "class" => "guichet_unique",
41 vpihour 624 "right" => "menu_guichet_unique",
42     );
43     //
44     $links = array();
45     //
46     $links[] = array(
47 fmichon 1463 "href" => "../scr/dashboard.php",
48     "class" => "tableau-de-bord",
49     "title" => _("tableau de bord"),
50     "open" => array("dashboard.php|",),
51     );
52     //
53     $links[] = array(
54 vpihour 624 "class" => "category",
55 fmichon 1463 "title" => _("nouvelle demande"),
56     "right" => array(
57     "demande_nouveau_dossier_ajouter",
58     "demande_dossier_existant_ajouter", "demande_dossier_existant_tab",
59     "demande_consulter","demande_tab",
60     ),
61 vpihour 624 );
62     $links[] = array(
63     "title" => "<hr/>",
64 fmichon 1463 "right" => array(
65     "demande_nouveau_dossier_ajouter",
66     "demande_dossier_existant_ajouter", "demande_dossier_existant_tab",
67     ),
68 vpihour 624 );
69     $links[] = array(
70 nhaye 1100 "href" => "../scr/form.php?obj=demande_nouveau_dossier&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
71 fmichon 1463 "class" => "nouveau-dossier",
72 vpihour 635 "title" => _("nouveau dossier"),
73 fmichon 1463 "right" => array(
74     "demande_nouveau_dossier_ajouter",
75     ),
76 nhaye 1100 "open" => array("form.php|demande_nouveau_dossier",),
77 vpihour 624 );
78     $links[] = array(
79 nhaye 1100 "href" => "../scr/tab.php?obj=demande_dossier_existant",
80 fmichon 1463 "class" => "dossier-existant",
81 vpihour 635 "title" => _("dossier existant"),
82 fmichon 1463 "right" => array(
83     "demande_dossier_existant_ajouter","demande_dossier_existant_tab",
84     ),
85 nhaye 1100 "open" => array("tab.php|demande_dossier_existant", "form.php|demande_dossier_existant"),
86 vpihour 624 );
87 vpihour 1007 $links[] = array(
88 fmichon 1383 "title" => "<hr/>",
89 fmichon 1463 "right" => array(
90     "demande_consulter", "demande_tab"
91     ),
92 fmichon 1383 );
93     $links[] = array(
94 vpihour 1007 "href" => "../scr/tab.php?obj=demande",
95 fmichon 1383 "class" => "pdf",
96 fmichon 1463 "title" => _("recepisse"),
97     "right" => array(
98     "demande_consulter", "demande_tab"
99     ),
100 nhaye 1100 "open" => array("tab.php|demande","form.php|demande"),
101 vpihour 1007 );
102 vpihour 624 //
103     $links[] = array(
104     "class" => "category",
105 fmichon 1422 "title" => _("affichage reglementaire"),
106 fmichon 1463 "right" => array(
107     "affichage_reglementaire_registre",
108     "affichage_reglementaire_attestation",
109     ),
110 vpihour 624 );
111     $links[] = array(
112     "title" => "<hr/>",
113 fmichon 1463 "right" => array(
114     "affichage_reglementaire_registre",
115     "affichage_reglementaire_attestation",
116     ),
117 vpihour 624 );
118     $links[] = array(
119 fmichon 1463 "href" => "../app/affichage_reglementaire_registre.php",
120 vpihour 624 "class" => "edition",
121 fmichon 1463 "title" => _("registre"),
122     "right" => array(
123     "affichage_reglementaire_registre",
124     ),
125     "open" => "affichage_reglementaire_registre.php|",
126 vpihour 624 );
127     $links[] = array(
128 fmichon 1463 "href" => "../app/affichage_reglementaire_attestation.php",
129 fmichon 1422 "class" => "edition",
130 fmichon 1463 "title" => _("attestation"),
131     "right" => array(
132     "affichage_reglementaire_attestation",
133     ),
134     "open" => "affichage_reglementaire_attestation.php|",
135 vpihour 624 );
136     //
137     /*$links[] = array(
138     "class" => "category",
139     "title" => _("Qualification"),
140     "right" => array("qualification"),
141     );
142     $links[] = array(
143     "title" => "<hr/>",
144     "right" => array("qualification"),
145     );
146     $links[] = array(
147     "href" => "../scr/tab.php?obj=dossier",
148     "class" => "qualification",
149     "title" => _("A Qualifier"),
150     "right" => array("qualification", "qualification_tab", ),
151     "open" => array("tab.php|qualification", "form.php|qualification", ),
152     );*/
153 nhaye 1287
154 vpihour 624 //
155     $rubrik['links'] = $links;
156     //
157     $menu[] = $rubrik;
158     // }}}
159 fmichon 647
160     // {{{ Rubrique INSTRUCTION
161 vpihour 624 //
162     $rubrik = array(
163 fmichon 380 "title" => _("instruction"),
164 fmichon 566 "class" => "instruction",
165     "right" => "menu_instruction",
166 fraynaud 3 );
167 fmichon 380 //
168 fraynaud 3 $links = array();
169 fmichon 654 // Catégorie DOSSIERS D'INSTRUCTION
170 fmichon 380 $links[] = array(
171 fmichon 647 "class" => "category",
172     "title" => _("dossiers d'instruction"),
173     "right" => array(
174     "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
175     "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
176     "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
177     "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
178     "dossier_instruction", "dossier_instruction_tab",
179     "PC_modificatif", "PC_modificatif_tab",
180     ),
181 fmichon 380 );
182 fmichon 654 $links[] = array(
183     "title" => "<hr/>",
184     "right" => array(
185     "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
186     "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
187     ),
188     );
189 fmichon 380 //
190     $links[] = array(
191 fmichon 647 "href" => "../scr/tab.php?obj=dossier_instruction_mes_encours",
192     "class" => "dossier_instruction_mes_encours",
193     "title" => _("mes encours"),
194     "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
195 vpihour 1206 "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ),
196 fmichon 380 );
197     //
198     $links[] = array(
199 fmichon 647 "href" => "../scr/tab.php?obj=dossier_instruction_tous_encours",
200     "class" => "dossier_instruction_tous_encours",
201     "title" => _("tous les encours"),
202     "right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ),
203     "open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ),
204 fmichon 380 );
205     //
206     $links[] = array(
207     "title" => "<hr/>",
208     "right" => array(
209 fmichon 647 "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
210     "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
211 fmichon 380 ),
212     );
213     //
214     $links[] = array(
215 fmichon 647 "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",
216     "class" => "dossier_instruction_mes_clotures",
217     "title" => _("mes clotures"),
218     "right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ),
219     "open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ),
220 fmichon 380 );
221     //
222     $links[] = array(
223 fmichon 647 "href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures",
224     "class" => "dossier_instruction_tous_clotures",
225     "title" => _("tous les clotures"),
226     "right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ),
227     "open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ),
228 fmichon 380 );
229     //
230     $links[] = array(
231     "title" => "<hr/>",
232 fmichon 647 "right" => array(
233     "dossier_instruction", "dossier_instruction_tab",
234     ),
235 fmichon 380 );
236     //
237     $links[] = array(
238 fmichon 647 "href" => "../scr/tab.php?obj=dossier_instruction",
239     "class" => "dossier_instruction",
240     "title" => _("recherche"),
241     "right" => array("dossier_instruction", "dossier_instruction_tab", ),
242     "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
243 fmichon 380 );
244 vpihour 1276
245     // Catégorier Qualification
246     $links[] = array(
247     "class" => "category",
248     "title" => _("qualification"),
249     "right" => array("dossier_qualifier", ),
250     );
251     $links[] = array(
252     "title" => "<hr/>",
253     "right" => array("dossier_qualifier", ),
254     );
255     $links[] = array(
256     "href" => "../scr/tab.php?obj=dossier_qualifier",
257     "class" => "dossier_qualifier",
258     "title" => _("A qualifier"),
259     "right" => array("dossier_qualifier", "dossier_qualifier_tab", ),
260     "open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ),
261     );
262 fmichon 654 // Catégorie CONSULTATIONS
263 nhaye 496 $links[] = array(
264 nhaye 519 "class" => "category",
265 fmichon 647 "title" => _("consultations"),
266 fmichon 654 "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
267 nhaye 496 );
268     $links[] = array(
269 nhaye 519 "title" => "<hr/>",
270 fmichon 654 "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
271 nhaye 519 );
272     $links[] = array(
273 nhaye 509 "href" => "../scr/tab.php?obj=consultation_mes_retours",
274     "class" => "consultation_mes_retours",
275     "title" => _("Mes retours"),
276     "right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ),
277     "open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ),
278 nhaye 496 );
279 nhaye 498 $links[] = array(
280 nhaye 509 "href" => "../scr/tab.php?obj=consultation_tous_retours",
281     "class" => "consultation_tous_retours",
282     "title" => _("Tous les retours"),
283     "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),
284     "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),
285 nhaye 498 );
286 fmichon 654 // Catégorie MESSAGES
287 mlimic 599 $links[] = array(
288     "class" => "category",
289     "title" => _("Messages"),
290     "right" => array("messages_mes_retours", "messages_tous_retours"),
291 nhaye 946 "parameters" => array("option_ERP" => "true", ),
292 mlimic 599 );
293 fmichon 654 //
294 mlimic 599 $links[] = array(
295     "title" => "<hr/>",
296     "right" => array("messages_mes_retours", "messages_tous_retours"),
297 nhaye 946 "parameters" => array("option_ERP" => "true", ),
298 mlimic 599 );
299 fmichon 654 //
300 mlimic 599 $links[] = array(
301     "href" => "../scr/tab.php?obj=messages_mes_retours",
302     "class" => "messages_mes_retours",
303     "title" => _("Mes messages"),
304     "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
305     "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
306 nhaye 946 "parameters" => array("option_ERP" => "true", ),
307 mlimic 599 );
308 fmichon 654 //
309 mlimic 599 $links[] = array(
310     "href" => "../scr/tab.php?obj=messages_tous_retours",
311     "class" => "messages_tous_retours",
312     "title" => _("Tous les messages"),
313     "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
314     "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
315 nhaye 946 "parameters" => array("option_ERP" => "true", ),
316 mlimic 599 );
317 fmichon 1026 // Catégorie COMMISSIONS
318     $links[] = array(
319     "class" => "category",
320     "title" => _("commissions"),
321     "right" => array(
322 fmichon 1085 "commission_mes_retours", "commission_mes_retours_tab",
323     "commission_tous_retours", "commission_tous_retours_tab",
324 fmichon 1026 ),
325     );
326     $links[] = array(
327     "title" => "<hr/>",
328     "right" => array(
329 fmichon 1085 "commission_mes_retours", "commission_mes_retours_tab",
330     "commission_tous_retours", "commission_tous_retours_tab",
331 fmichon 1026 ),
332     );
333     $links[] = array(
334 fmichon 1085 "href" => "../scr/tab.php?obj=commission_mes_retours",
335     "class" => "commission_mes_retours",
336 fmichon 1026 "title" => _("Mes retours"),
337 fmichon 1085 "right" => array("commission_mes_retours", "commission_mes_retours_tab", ),
338     "open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ),
339 fmichon 1026 );
340     $links[] = array(
341 fmichon 1085 "href" => "../scr/tab.php?obj=commission_tous_retours",
342     "class" => "commission_tous_retours",
343 fmichon 1026 "title" => _("Tous les retours"),
344 fmichon 1085 "right" => array("commission_tous_retours", "commission_tous_retours_tab", ),
345     "open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ),
346 fmichon 1026 );
347 mlimic 599
348 nhaye 583 //
349     $rubrik['links'] = $links;
350     //
351     $menu[] = $rubrik;
352     // }}}
353 fmichon 654
354     // {{{ Rubrique SUIVI
355 nhaye 583 //
356     $rubrik = array(
357     "title" => _("Suivi"),
358     "class" => "suivi",
359     "right" => "menu_suivi",
360     );
361 vpihour 635 //
362 nhaye 583 $links = array();
363     //
364 nhaye 533 $links[] = array(
365     "href" => "../app/avis_code_barre.php",
366     "class" => "avis_code_barre",
367     "title" => _("Retour de consultation"),
368     "right" => array("avis_code_barre", ),
369 fmichon 957 "open" => array("avis_code_barre.php|", "form.php|consultation", ),
370 nhaye 533 );
371 fmichon 1332 //
372 nhaye 1208 $links[] = array(
373     "href" => "../app/maj_dates_suivi.php",
374     "class" => "maj_dates_suivi",
375     "title" => _("Mise a jour des dates"),
376     "right" => array("maj_dates_suivi", ),
377     "open" => array("maj_dates_suivi.php|"),
378     );
379 fmichon 1332 //
380 nhaye 1222 $links[] = array(
381     "href" => "../app/envoi_lettre_rar.php",
382     "class" => "envoi_lettre_rar",
383     "title" => _("Envoi lettre rar"),
384     "right" => array("envoi_lettre_rar", ),
385     "open" => array("envoi_lettre_rar.php|"),
386     );
387 fmichon 380 //
388 vpihour 1219 $links[] = array(
389     "href" => "../app/bordereaux_envoi.php",
390     "class" => "bordereaux_envoi",
391     "title" => _("Bordereaux"),
392     "right" => array("bordereaux_envoi", ),
393     "open" => array("bordereaux_envoi.php|"),
394     );
395 fmichon 1332 // Catégorie COMMISSIONS
396     $links[] = array(
397     "class" => "category",
398     "title" => _("commissions"),
399     "right" => array(
400     "commission", "commission_tab",
401     "commission_demandes_passage", "commission_demandes_passage_tab",
402     ),
403     );
404 vpihour 1219 //
405 fmichon 1332 $links[] = array(
406     "title" => "<hr/>",
407     "right" => array(
408     "commission", "commission_tab",
409     "commission_demandes_passage", "commission_demandes_passage_tab",
410     ),
411     );
412     //
413     $links[] = array(
414     "href" => "../scr/tab.php?obj=commission",
415     "class" => "commissions",
416     "title" => _("Gestion des commissions"),
417     "right" => array("commission", ),
418     "open" => array("tab.php|commission", "form.php|commission", ),
419     );
420     //
421     $links[] = array(
422     "href" => "../scr/tab.php?obj=commission_demandes_passage",
423     "class" => "commissions-demande-passage",
424     "title" => _("Demandes de passage"),
425     "right" => array("commission_demandes_passage", ),
426     "open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ),
427     );
428     //
429 fraynaud 3 $rubrik['links'] = $links;
430 fmichon 380 //
431     $menu[] = $rubrik;
432     // }}}
433 fmichon 647
434     // {{{ Rubrique DEMANDES D'AVIS
435 nhaye 538 //
436     $rubrik = array(
437     "title" => _("Demandes d'avis"),
438     "class" => "demande_avis",
439 fmichon 566 "right" => "menu_demande_avis",
440 nhaye 538 );
441     //
442     $links = array();
443     //
444     $links[] = array(
445 nhaye 571 "href" => "../scr/tab.php?obj=demande_avis_encours",
446     "class" => "demande_avis_encours",
447 nhaye 538 "title" => _("Demandes en cours"),
448 nhaye 571 "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
449     "open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ),
450 nhaye 538 );
451    
452     $links[] = array(
453 nhaye 571 "href" => "../scr/tab.php?obj=demande_avis_passee",
454     "class" => "demande_avis_passee",
455 nhaye 538 "title" => _("Demandes passees"),
456 nhaye 571 "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
457     "open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ),
458 nhaye 538 );
459    
460     $links[] = array(
461 nhaye 652 "href" => "../scr/tab.php?obj=demande_avis",
462     "class" => "demande_avis",
463 nhaye 538 "title" => _("Exports"),
464 nhaye 652 "right" => array("demande_avis", "demande_avis_tab", ),
465     "open" => array("tab.php|demande_avis", "form.php|demande_avis", ),
466 nhaye 538 );
467    
468     //
469     $rubrik['links'] = $links;
470     //
471     $menu[] = $rubrik;
472     // }}}
473    
474    
475    
476 fraynaud 3 // {{{ Rubrique EXPORT
477 fmichon 380 //
478 fraynaud 3 $rubrik = array(
479 fmichon 380 "title" => _("export"),
480 fraynaud 3 "class" => "edition",
481     "right" => "menu_export",
482     );
483 fmichon 380 //
484 fraynaud 3 $links = array();
485 fmichon 380 //
486     $links[] = array(
487     "href" => "../scr/edition.php",
488     "class" => "edition",
489     "title" => _("edition"),
490     "right" => "edition",
491     "open" => "edition.php|",
492     );
493     //
494     $links[] = array(
495     "href" => "../app/edition_p.php",
496     "class" => "edition",
497     "title" => _("edition date depot"),
498     "right" => "edition_p",
499     "open" => "edition_p.php|",
500     );
501     //
502     $links[] = array(
503     "href" => "../app/edition_d.php",
504     "class" => "edition",
505     "title" => _("edition date decision"),
506     "right" => "edition_d",
507     "open" => "edition_d.php|",
508     );
509     //
510     $links[] = array(
511     "title" => "<hr/>",
512     "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),
513     );
514     //
515     $links[] = array(
516     "href" => "../scr/reqmo.php",
517     "class" => "reqmo",
518     "title" => _("requetes memorisees"),
519     "right" => "reqmo",
520     "open" => array("reqmo.php|", "requeteur.php|", ),
521     );
522     //
523     $links[] = array(
524     "href" => "../app/export_pc.php",
525     "class" => "reqmo",
526     "title" => _("export PC Lascot"),
527     "right" => "export_pc",
528     "open" => "export_pc.php|",
529     );
530     //
531     $links[] = array(
532     "href" => "../app/export_dp.php",
533     "class" => "reqmo",
534     "title" => _("export DP Lascot"),
535     "right" => "export_dp",
536     "open" => "export_dp.php|",
537     );
538     //
539     $links[] = array(
540     "href" => "../app/sitadel.php",
541     "class" => "reqmo",
542     "title" => _("export sitadel")." 2",
543     "right" => "export_sitadel",
544     "open" => "sitadel.php|",
545     );
546     //
547 fraynaud 3 $rubrik['links'] = $links;
548 fmichon 380 //
549     $menu[] = $rubrik;
550 fraynaud 3 // }}}
551    
552 fmichon 1411
553 fmichon 380 // {{{ Rubrique PARAMETRAGE
554     //
555 fraynaud 3 $rubrik = array(
556 fmichon 1411 "title" => _("parametrage dossiers"),
557     "class" => "parametrage",
558     "right" => "menu_parametrage",
559     );
560     //
561     $links = array();
562     //
563     $links[] = array(
564     "class" => "category",
565 fmichon 1422 "title" => _("dossiers"),
566 fmichon 1411 "right" => array(
567     "dossier_autorisation_type", "dossier_autorisation_type_tab",
568     "dossier_autorisation_type_detaille",
569     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
570 fmichon 1422 "dossier_instruction_type_tab", "cerfa", "cerfa_tab",
571 fmichon 1411 ),
572     );
573     //
574     $links[] = array(
575     "title" => "<hr/>",
576     "right" => array(
577 fmichon 1422 "cerfa", "cerfa_tab",
578     ),
579     );
580     //
581     $links[] = array(
582     "href" => "../scr/tab.php?obj=cerfa",
583     "class" => "cerfa",
584     "title" => _("cerfa"),
585     "right" => array("cerfa", "cerfa_tab", ),
586     "open" => array("tab.php|cerfa", "form.php|cerfa", ),
587     );
588     //
589     $links[] = array(
590     "title" => "<hr/>",
591     "right" => array(
592 fmichon 1411 "dossier_autorisation_type", "dossier_autorisation_type_tab",
593     "dossier_autorisation_type_detaille",
594     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
595     "dossier_instruction_type_tab",
596     ),
597     );
598     //
599     $links[] = array(
600     "href" => "../scr/tab.php?obj=dossier_autorisation_type",
601     "class" => "dossier_autorisation_type",
602     "title" => _("type DA"),
603     "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
604     "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
605     );
606     //
607     $links[] = array(
608     "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
609     "class" => "dossier_autorisation_type_detaille",
610     "title" => _("type DA detaille"),
611     "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
612     "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
613     );
614     //
615     $links[] = array(
616     "href" => "../scr/tab.php?obj=dossier_instruction_type",
617     "class" => "dossier_instruction_type",
618     "title" => _("type DI"),
619     "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
620     "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
621     );
622     $links[] = array(
623     "class" => "category",
624 fmichon 1422 "title" => _("demandes"),
625 fmichon 1411 "right" => array(
626     "demande_type",
627     "demande_type_tab", "demande_nature", "demande_nature_tab",
628     ),
629     );
630     //
631     $links[] = array(
632     "title" => "<hr/>",
633     "right" => array(
634     "demande_type",
635     "demande_type_tab", "demande_nature", "demande_nature_tab",
636     ),
637     );
638     //
639     $links[] = array(
640     "href" => "../scr/tab.php?obj=demande_nature",
641     "class" => "demande_nature",
642     "title" => _("nature demande"),
643     "right" => array("demande_nature", "demande_nature_tab", ),
644     "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
645     );
646     //
647     $links[] = array(
648     "href" => "../scr/tab.php?obj=demande_type",
649     "class" => "demande_type",
650     "title" => _("type demande"),
651     "right" => array("demande_type", "demande_type_tab",),
652     "open" => array("tab.php|demande_type", "form.php|demande_type", ),
653     );
654     //
655     $links[] = array(
656     "class" => "category",
657     "title" => _("workflows"),
658     "right" => array(
659     "action", "action_tab", "etat",
660     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
661     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
662     ),
663     );
664     //
665     $links[] = array(
666     "title" => "<hr/>",
667     "right" => array(
668     "action", "action_tab", "etat",
669     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
670     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
671     ),
672     );
673     //
674     $links[] = array(
675     "href" => "../scr/tab.php?obj=etat",
676     "class" => "workflow-etat",
677     "title" => _("etat"),
678     "right" => array("etat", "etat_tab", ),
679     "open" => array("tab.php|etat", "form.php|etat", ),
680     );
681     //
682     $links[] = array(
683     "href" => "../scr/tab.php?obj=action",
684     "class" => "action",
685     "title" => _("action"),
686     "right" => array("action", "action_tab", ),
687     "open" => array("tab.php|action", "form.php|action", ),
688     );
689     //
690     $links[] = array(
691     "href" => "../scr/tab.php?obj=evenement",
692     "class" => "evenement",
693     "title" => _("evenement"),
694     "right" => array("evenement", "evenement_tab", ),
695     "open" => array("tab.php|evenement", "form.php|evenement", ),
696     );
697     //
698     $links[] = array(
699     "href" => "../scr/tab.php?obj=bible",
700     "class" => "bible",
701     "title" => _("bible"),
702     "right" => array("bible", "bible_tab", ),
703     "open" => array("tab.php|bible", "form.php|bible", ),
704     );
705     //
706     $links[] = array(
707     "href" => "../scr/tab.php?obj=avis_decision",
708     "class" => "avis_decision",
709     "title" => _("avis decision"),
710     "right" => array("avis_decision", "avis_decision_tab", ),
711     "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
712     );
713     //
714 fmichon 1427 $links[] = array(
715     "class" => "category",
716     "title" => _("editions"),
717     "right" => array(
718     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
719     "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
720     "om_logo", "om_logo_tab",
721     ),
722     );
723     //
724     $links[] = array(
725     "title" => "<hr/>",
726     "right" => array(
727     "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",
728     ),
729     );
730     //
731     $links[] = array(
732     "href" => "../scr/tab.php?obj=om_etat",
733     "class" => "om_etat",
734     "title" => _("om_etat"),
735     "right" => array("om_etat", "om_etat_tab", ),
736     "open" => array("tab.php|om_etat", "form.php|om_etat", ),
737     );
738     //
739     $links[] = array(
740     "href" => "../scr/tab.php?obj=om_lettretype",
741     "class" => "om_lettretype",
742     "title" => _("om_lettretype"),
743     "right" => array("om_lettretype", "om_lettretype_tab"),
744     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
745     );
746     //
747     $links[] = array(
748     "title" => "<hr/>",
749     "right" => array(
750     "om_logo", "om_logo_tab",
751     ),
752     );
753     //
754     $links[] = array(
755     "href" => "../scr/tab.php?obj=om_logo",
756     "class" => "om_logo",
757     "title" => _("om_logo"),
758     "right" => array("om_logo", "om_logo_tab", ),
759     "open" => array("tab.php|om_logo", "form.php|om_logo", ),
760     );
761     //
762 fmichon 1411 $rubrik['links'] = $links;
763     //
764     $menu[] = $rubrik;
765     // }}}
766    
767     // {{{ Rubrique PARAMETRAGE
768     //
769     $rubrik = array(
770 fmichon 380 "title" => _("parametrage"),
771 atreal 306 "class" => "parametrage",
772     "right" => "menu_parametrage",
773 fraynaud 3 );
774 fmichon 380 //
775 fraynaud 3 $links = array();
776 fmichon 380 //
777     // GENERAUX
778     $links[] = array(
779     "href" => "../scr/form.php?obj=dossier_numeromanuel",
780     "class" => "traitement",
781     "title" => _("numero manuel"),
782     "right" => "dossier_numeromanuel",
783     "open" => "|dossier_numeromanuel",
784     );
785     //
786     $links[] = array(
787     "href" => "../app/num_dossier.php",
788     "class" => "traitement",
789     "title" => _("remise a 0"),
790     "right" => "num_dossier",
791     "open" => "num_dossier.php|",
792     );
793     //
794     $links[] = array(
795     "title" => "<hr/>",
796     "right" => array(
797 fmichon 854 "architecte", "architecte_tab",
798 vpihour 490 "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",
799 fmichon 380 "destination", "destination_tab", "nature", "nature_tab", "rivoli",
800     "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",
801     ),
802     );
803     //
804     $links[] = array(
805     "href" => "../scr/tab.php?obj=architecte",
806     "class" => "architecte",
807     "title" => _("architecte"),
808     "right" => array("architecte", "architecte_tab", ),
809     "open" => array("tab.php|architecte", "form.php|architecte", ),
810     );
811 fmichon 955
812 fmichon 380 //
813     $links[] = array(
814     "href" => "../scr/tab.php?obj=travaux",
815     "class" => "travaux",
816     "title" => _("travaux"),
817     "right" => array("travaux", "travaux_tab", ),
818     "open" => array("tab.php|travaux", "form.php|travaux", ),
819     );
820     //
821     $links[] = array(
822     "href" => "../scr/tab.php?obj=categorie_demandeur",
823     "class" => "categorie_demandeur",
824     "title" => _("categorie_demandeur"),
825     "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),
826     "open" => array(
827     "tab.php|categorie_demandeur", "form.php|categorie_demandeur",
828     ),
829     );
830     //
831     $links[] = array(
832     "href" => "../scr/tab.php?obj=destination",
833     "class" => "destination",
834     "title" => _("destination"),
835     "right" => array("destination", "destination_tab", ),
836     "open" => array("tab.php|destination", "form.php|destination", ),
837     );
838     //
839     $links[] = array(
840     "href" => "../scr/tab.php?obj=rivoli",
841     "class" => "rivoli",
842     "title" => _("rivoli"),
843     "right" => array("rivoli", "rivoli_tab", ),
844     "open" => array("tab.php|rivoli", "form.php|rivoli", ),
845     );
846     //
847     $links[] = array(
848     "href" => "../scr/tab.php?obj=civilite",
849     "class" => "civilite",
850     "title" => _("civilite"),
851     "right" => array("civilite", "civilite_tab", ),
852     "open" => array("tab.php|civilite", "form.php|civilite", ),
853     );
854 vpihour 821 //
855     $links[] = array(
856 fmichon 380 "class" => "category",
857 nhaye 521 "title" => _("Organisation"),
858 fmichon 853 "right" => array(
859     "direction", "direction_tab", "division", "division_tab", "instructeur",
860 fmichon 955 "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
861 vpihour 1226 "signataire_arrete", "signataire_arrete_tab",
862 fmichon 853 ),
863 nhaye 521 );
864     $links[] = array(
865     "title" => "<hr/>",
866 fmichon 853 "right" => array(
867     "direction", "direction_tab", "division", "division_tab", "instructeur",
868 fmichon 955 "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
869 vpihour 1226 "signataire_arrete", "signataire_arrete_tab",
870 fmichon 853 ),
871 nhaye 521 );
872     //
873     $links[] = array(
874 fmichon 866 "href" => "../scr/tab.php?obj=genre",
875     "class" => "genre",
876     "title" => _("genre"),
877     "right" => array("genre", "genre_tab", ),
878     "open" => array("tab.php|genre", "form.php|genre", ),
879     );
880     //
881     $links[] = array(
882 fmichon 853 "href" => "../scr/tab.php?obj=groupe",
883     "class" => "groupe",
884     "title" => _("groupe"),
885     "right" => array("groupe", "groupe_tab", ),
886     "open" => array("tab.php|groupe", "form.php|groupe", ),
887     );
888     //
889     $links[] = array(
890 nhaye 521 "href" => "../scr/tab.php?obj=direction",
891     "class" => "direction",
892     "title" => _("direction"),
893     "right" => array("direction", "direction_tab", ),
894     "open" => array("tab.php|direction", "form.php|direction", ),
895     );
896     //
897     $links[] = array(
898     "href" => "../scr/tab.php?obj=division",
899     "class" => "division",
900     "title" => _("division"),
901     "right" => array("division", "division_tab", ),
902     "open" => array("tab.php|division", "form.php|division", ),
903     );
904     //
905     $links[] = array(
906     "href" => "../scr/tab.php?obj=instructeur",
907     "class" => "instructeur",
908     "title" => _("instructeur"),
909     "right" => array("instructeur", "instructeur_tab", ),
910     "open" => array("tab.php|instructeur", "form.php|instructeur", ),
911     );
912     //
913     $links[] = array(
914 vpihour 1226 "href" => "../scr/tab.php?obj=signataire_arrete",
915     "class" => "signataire_arrete",
916     "title" => _("signataire arrete"),
917     "right" => array("signataire_arrete", "signataire_arrete", ),
918     "open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ),
919     );
920     //
921     $links[] = array(
922 nhaye 521 "class" => "category",
923 fmichon 1026 "title" => _("gestion des commissions"),
924     "right" => array(
925     "comission_type", "comission_type_tab",
926     ),
927     );
928     //
929     $links[] = array(
930     "title" => "<hr/>",
931     "right" => array(
932     "comission_type", "comission_type_tab",
933     ),
934     );
935     //
936     $links[] = array(
937     "href" => "../scr/tab.php?obj=commission_type",
938     "class" => "commission-type",
939     "title" => _("commission_type"),
940     "right" => array("commission_type", "commission_type_tab", ),
941     "open" => array("tab.php|commission_type", "form.php|commission_type", ),
942     );
943     //
944     $links[] = array(
945     "class" => "category",
946 fmichon 854 "title" => _("gestion des consultations"),
947 fmichon 853 "right" => array(
948 fmichon 854 "avis_consultation", "avis_consultation_tab", "service", "service_tab",
949     "service_categorie", "service_categorie_tab",
950     "lien_service_service_categorie", "lien_service_service_categorie_tab",
951     ),
952     );
953     //
954     $links[] = array(
955     "title" => "<hr/>",
956     "right" => array(
957     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
958     "service_categorie", "service_categorie_tab",
959     "lien_service_service_categorie", "lien_service_service_categorie_tab",
960     ),
961     );
962     //
963     $links[] = array(
964     "href" => "../scr/tab.php?obj=avis_consultation",
965     "class" => "avis_consultation",
966     "title" => _("avis consultation"),
967     "right" => array("avis_consultation", "avis_consultation_tab", ),
968     "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
969     );
970     //
971     $links[] = array(
972     "href" => "../scr/tab.php?obj=service",
973     "class" => "service",
974     "title" => _("service"),
975     "right" => array("service", "service_tab", ),
976     "open" => array("tab.php|service", "form.php|service", ),
977     );
978     $links[] = array(
979     "href" => "../scr/tab.php?obj=service_categorie",
980     "class" => "service_categorie",
981     "title" => _("thematique des services"),
982     "right" => array("service_categorie", "service_categorie_tab", ),
983     "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
984     );
985     $links[] = array(
986     "href" => "../scr/tab.php?obj=lien_service_service_categorie",
987     "class" => "lien_service_service_categorie",
988     "title" => _("Lien service / thematique"),
989     "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),
990     "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),
991     );
992     //
993     $links[] = array(
994     "class" => "category",
995 fmichon 955 "title" => _("Gestion des dossiers"),
996     "right" => array(
997     "dossier_autorisation_type", "dossier_autorisation_type_tab",
998     "dossier_autorisation_type_detaille",
999     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1000     "dossier_instruction_type_tab",
1001     "lien_evenement_dossier_autorisation_type",
1002     "lien_evenement_dossier_autorisation_type_tab",
1003     "autorite_competente", "autorite_competente_tab",
1004     "affectation_automatique", "affectation_automatique_tab",
1005     ),
1006     );
1007     //
1008     $links[] = array(
1009     "title" => "<hr/>",
1010     "right" => array(
1011     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1012     "dossier_autorisation_type_detaille",
1013     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1014     "dossier_instruction_type_tab",
1015     "lien_evenement_dossier_autorisation_type",
1016     "lien_evenement_dossier_autorisation_type_tab",
1017     "autorite_competente", "autorite_competente_tab",
1018     "affectation_automatique", "affectation_automatique_tab",
1019    
1020     ),
1021     );
1022     //
1023     $links[] = array(
1024     "href" => "../scr/tab.php?obj=lien_evenement_dossier_autorisation_type",
1025     "class" => "lien_evenement_dossier_autorisation_type",
1026     "title" => _("lien")." "._("evenement")." "._("dossier")." "._("autorisation")." "._("type"),
1027     "right" => array("lien_evenement_dossier_autorisation_type", "lien_evenement_dossier_autorisation_type_tab", ),
1028     "open" => array("tab.php|lien_evenement_dossier_autorisation_type", "form.php|lien_evenement_dossier_autorisation_type", ),
1029     );
1030     //
1031     $links[] = array(
1032     "href" => "../scr/tab.php?obj=affectation_automatique",
1033     "class" => "affectation_automatique",
1034     "title" => _("affectation automatique"),
1035     "right" => array("affectation_automatique", "affectation_automatique_tab", ),
1036     "open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ),
1037     );
1038     //
1039     $links[] = array(
1040     "href" => "../scr/tab.php?obj=autorite_competente",
1041     "class" => "autorite_competente",
1042     "title" => _("autorite")." "._("competente"),
1043     "right" => array("autorite_competente", "autorite_competente_tab", ),
1044     "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
1045     );
1046 fmichon 1427
1047 fmichon 955 //
1048 fraynaud 196 $rubrik['links'] = $links;
1049 fmichon 380 //
1050     $menu[] = $rubrik;
1051     // }}}
1052 fraynaud 196
1053 fmichon 380 // {{{ Rubrique SIG
1054     //
1055 fraynaud 196 $rubrik = array(
1056 fmichon 380 "title" => _("sig"),
1057 fraynaud 196 "class" => "sig",
1058     "right" => "menu_sig",
1059 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1060 fraynaud 196 );
1061 fmichon 380 //
1062 fraynaud 196 $links = array();
1063 fmichon 380 //
1064     $links[] = array(
1065     "href" => "../scr/tab.php?obj=parcelle",
1066     "class" => "parcelle",
1067     "title" => _("parcelle"),
1068     "right" => array("parcelle", "parcelle_tab"),
1069     "open" => array("tab.php|parcelle", "form.php|parcelle", ),
1070 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1071 fmichon 380 );
1072     //
1073     $links[] = array(
1074     "href" => "../scr/tab.php?obj=proprietaire",
1075     "class" => "proprietaire",
1076     "title" => _("proprietaire"),
1077     "right" => array("proprietaire", "proprietaire_tab"),
1078     "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
1079 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1080 fmichon 380 );
1081     //
1082     $links[] = array(
1083     "class" => "category",
1084     "title" => _("servitudes"),
1085     "right" => array(
1086     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
1087     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1088     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1089     ),
1090 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1091 fmichon 380 );
1092     //
1093     $links[] = array(
1094     "title" => "<hr/>",
1095     "right" => array(
1096     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
1097     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1098     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1099     ),
1100 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1101 fmichon 380 );
1102     //
1103     $links[] = array(
1104     "href" => "../scr/tab.php?obj=pos",
1105     "class" => "pos",
1106     "title" => _("pos"),
1107     "right" => array("pos", "pos_tab"),
1108     "open" => array("tab.php|pos", "form.php|pos", ),
1109 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1110 fmichon 380 );
1111     //
1112     $links[] = array(
1113     "href" => "../scr/tab.php?obj=servitude_surfacique",
1114     "class" => "servitude_surfacique",
1115     "title" => _("servitude_surfacique"),
1116     "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
1117     "open" => array(
1118     "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
1119     ),
1120 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1121 fmichon 380 );
1122     //
1123     $links[] = array(
1124     "href" => "../scr/tab.php?obj=servitude_ligne",
1125     "class" => "servitude_ligne",
1126     "title" => _("servitude_ligne"),
1127     "right" => array("servitude_ligne", "servitude_ligne_tab"),
1128     "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
1129 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1130 fmichon 380 );
1131     //
1132     $links[] = array(
1133     "href" => "../scr/tab.php?obj=servitude_point",
1134     "class" => "servitude_point",
1135     "title" => _("servitude_point"),
1136     "right" => array("servitude_point", "servitude_point_tab"),
1137     "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
1138 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1139 fmichon 380 );
1140     //
1141     $links[] = array(
1142     "href" => "../scr/tab.php?obj=parcelle_lot",
1143     "class" => "parcelle_lot",
1144     "title" => _("parcelle_lot"),
1145     "right" => array("parcelle_lot", "parcelle_lot_tab"),
1146     "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1147 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1148 fmichon 380 );
1149     //
1150 fraynaud 3 $rubrik['links'] = $links;
1151 fmichon 380 //
1152     $menu[] = $rubrik;
1153     // }}}
1154 fraynaud 3
1155     // {{{ Rubrique ADMINISTRATION
1156     //
1157     $rubrik = array(
1158 fmichon 380 "title" => _("administration"),
1159 fraynaud 3 "class" => "administration",
1160     "right" => "menu_administration",
1161     );
1162     //
1163     $links = array();
1164 fmichon 380 //
1165     $links[] = array(
1166     "href" => "../scr/tab.php?obj=om_collectivite",
1167     "class" => "collectivite",
1168     "title" => _("om_collectivite"),
1169     "right" => array("om_collectivite", "om_collectivite_tab", ),
1170     "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
1171     );
1172     //
1173     $links[] = array(
1174     "href" => "../scr/tab.php?obj=om_parametre",
1175     "class" => "parametre",
1176     "title" => _("om_parametre"),
1177     "right" => array("om_parametre", "om_parametre_tab", ),
1178     "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
1179     );
1180     //
1181     $links[] = array(
1182     "class" => "category",
1183     "title" => _("gestion des utilisateurs"),
1184     "right" => array(
1185     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1186     "om_droit", "om_droit_tab", "directory",
1187     ),
1188     );
1189     //
1190     $links[] = array(
1191     "title" => "<hr/>",
1192     "right" => array(
1193     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1194     "om_droit", "om_droit_tab",
1195     ),
1196     );
1197     //
1198     $links[] = array(
1199     "href" => "../scr/tab.php?obj=om_profil",
1200     "class" => "profil",
1201     "title" => _("om_profil"),
1202     "right" => array("om_profil", "om_profil_tab", ),
1203     "open" => array("tab.php|om_profil", "form.php|om_profil", ),
1204     );
1205     //
1206     $links[] = array(
1207     "href" => "../scr/tab.php?obj=om_droit",
1208     "class" => "droit",
1209     "title" => _("om_droit"),
1210     "right" => array("om_droit", "om_droit_tab", ),
1211     "open" => array("tab.php|om_droit", "form.php|om_droit", ),
1212     );
1213     //
1214     $links[] = array(
1215     "href" => "../scr/tab.php?obj=om_utilisateur",
1216     "class" => "utilisateur",
1217     "title" => _("om_utilisateur"),
1218     "right" => array("om_utilisateur", "om_utilisateur_tab", ),
1219     "open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ),
1220     );
1221     //
1222     $links[] = array(
1223     "title" => "<hr/>",
1224     "right" => array("directory", ),
1225     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1226     );
1227     //
1228     $links[] = array(
1229     "href" => "../scr/directory.php",
1230     "class" => "directory",
1231     "title" => _("annuaire"),
1232     "right" => array("directory", ),
1233     "open" => array("directory.php|", ),
1234     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1235     );
1236     //
1237     $links[] = array(
1238     "class" => "category",
1239     "title" => _("tableaux de bord"),
1240 fmichon 656 "right" => array(
1241     "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1242     ),
1243 fmichon 380 );
1244     //
1245     $links[] = array(
1246     "title" => "<hr/>",
1247 fmichon 656 "right" => array(
1248     "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1249     ),
1250 fmichon 380 );
1251     //
1252     $links[] = array(
1253     "href" => "../scr/tab.php?obj=om_widget",
1254     "class" => "om_widget",
1255 fmichon 656 "title" => _("om_widget"),
1256 fmichon 380 "right" => array("om_widget", "om_widget_tab", ),
1257     "open" => array("tab.php|om_widget", "form.php|om_widget", ),
1258     );
1259     //
1260     $links[] = array(
1261 fmichon 656 "href" => "../scr/tab.php?obj=om_dashboard",
1262     "class" => "om_dashboard",
1263     "title" => _("om_dashboard"),
1264     "right" => array( ),
1265     "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),
1266     );
1267     //
1268     $links[] = array(
1269 fmichon 380 "class" => "category",
1270     "title" => _("sig"),
1271     "right" => array(
1272     "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1273     ),
1274 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1275 fmichon 380 );
1276     //
1277     $links[] = array(
1278     "title" => "<hr/>",
1279     "right" => array(
1280     "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1281     ),
1282 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1283 fmichon 380 );
1284     //
1285     $links[] = array(
1286     "href" => "../scr/tab.php?obj=om_sig_map",
1287     "class" => "om_sig_map",
1288     "title" => _("om_sig_map"),
1289     "right" => array("om_sig_map", "om_sig_map_tab", ),
1290     "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1291 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1292 fmichon 380 );
1293     //
1294     $links[] = array(
1295     "href" => "../scr/tab.php?obj=om_sig_wms",
1296     "class" => "om_sig_wms",
1297     "title" => _("om_sig_wms"),
1298     "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1299     "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1300 fmichon 1416 "parameters" => array("option_localisation" => "sig_interne", ),
1301 fmichon 380 );
1302     //
1303     $links[] = array(
1304     "class" => "category",
1305     "title" => _("options avancees"),
1306 fmichon 1427 "right" => array("import", "gen", "om_requete", "om_requete_tab",
1307     "om_sousetat", "om_sousetat_tab",),
1308 fmichon 380 );
1309     //
1310     $links[] = array(
1311     "title" => "<hr/>",
1312 fmichon 1427 "right" => array(
1313     "om_sousetat", "om_sousetat_tab",
1314     ),
1315     );
1316     //
1317     $links[] = array(
1318     "href" => "../scr/tab.php?obj=om_sousetat",
1319     "class" => "om_sousetat",
1320     "title" => _("om_sousetat"),
1321     "right" => array("om_sousetat", "om_sousetat_tab", ),
1322     "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
1323     );
1324     //
1325     $links[] = array(
1326     "title" => "<hr/>",
1327     "right" => array("om_requete", "om_requete_tab", ),
1328     );
1329     //
1330     $links[] = array(
1331     "href" => "../scr/tab.php?obj=om_requete",
1332     "class" => "om_requete",
1333     "title" => _("om_requete"),
1334     "right" => array("om_requete", "om_requete_tab", ),
1335     "open" => array("tab.php|om_requete", "form.php|om_requete", ),
1336     );
1337     //
1338     $links[] = array(
1339     "title" => "<hr/>",
1340 fmichon 380 "right" => array("import", ),
1341     );
1342     //
1343     $links[] = array(
1344     "href" => "../scr/import.php",
1345     "class" => "import",
1346     "title" => _("Import"),
1347     "right" => array("import", ),
1348     "open" => array("import.php|", ),
1349     );
1350     //
1351     $links[] = array(
1352     "title" => "<hr/>",
1353     "right" => array("gen", ),
1354     );
1355     //
1356     $links[] = array(
1357     "title" => _("Generateur"),
1358     "href" => "../scr/gen.php",
1359     "class" => "generator",
1360     "right" => array("gen", ),
1361     "open" => array(
1362     "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1363     "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1364     "genimport.php|",
1365     ),
1366     );
1367     //
1368 fraynaud 3 $rubrik['links'] = $links;
1369 fmichon 380 //
1370     $menu[] = $rubrik;
1371 fraynaud 3 // }}}
1372    
1373     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26