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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 533 - (hide annotations)
Wed Oct 24 10:29:18 2012 UTC (12 years, 3 months ago) by nhaye
File size: 22110 byte(s)
Ajout d'une entrée de menu,
création du script de recherche de consultation,
modification de l'affichage du lien d'ajout de consultation multiple.

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    
13 fmichon 380 // {{{ Rubrique APPLICATION
14     //
15 fraynaud 3 $rubrik = array(
16 fmichon 380 "title" => _("instruction"),
17 fraynaud 3 "class" => "application",
18     "right" => "menu_application",
19     );
20 fmichon 380 //
21 fraynaud 3 $links = array();
22 fmichon 380 //
23     $links[] = array(
24     "href" => "../scr/tab.php?obj=PC",
25     "class" => "dossier",
26     "title" => _("PC"),
27     "right" => array("PC", "PC_tab", ),
28     "open" => array("tab.php|PC", "form.php|PC", ),
29     );
30     //
31     $links[] = array(
32     "href" => "../scr/tab.php?obj=DP",
33     "class" => "dossier",
34     "title" => _("DP"),
35     "right" => array("DP", "DP_tab", ),
36     "open" => array("tab.php|DP", "form.php|DP", ),
37     );
38     //
39     $links[] = array(
40     "href" => "../scr/tab.php?obj=PD",
41     "class" => "dossier",
42     "title" => _("PD"),
43     "right" => array("PD", "PD_tab", ),
44     "open" => array("tab.php|PD", "form.php|PD", ),
45     );
46     //
47     $links[] = array(
48     "href" => "../scr/tab.php?obj=PA",
49     "class" => "dossier",
50     "title" => _("PA"),
51     "right" => array("PA", "PA_tab", ),
52     "open" => array("tab.php|PA", "form.php|PA", ),
53     );
54     //
55     $links[] = array(
56     "title" => "<hr/>",
57     "right" => array(
58     "PC_accueil", "PC_accueil_tab", "DP_accueil", "DP_accueil_tab",
59     "PD_accueil", "PD_accueil_tab", "PA_accueil", "PA_accueil_tab",
60     ),
61     );
62     //
63     $links[] = array(
64     "href" => "../scr/tab.php?obj=PC_accueil",
65     "class" => "dossier",
66     "title" => _("PC - accueil"),
67     "right" => array("PC_accueil", "PC_accueil_tab", ),
68     "open" => array("tab.php|PC_accueil", "form.php|PC_accueil", ),
69     );
70     //
71     $links[] = array(
72     "href" => "../scr/tab.php?obj=DP_accueil",
73     "class" => "dossier",
74     "title" => _("DP - accueil"),
75     "right" => array("DP_accueil", "DP_accueil_tab", ),
76     "open" => array("tab.php|DP_accueil", "form.php|DP_accueil", ),
77     );
78     //
79     $links[] = array(
80     "href" => "../scr/tab.php?obj=PD_accueil",
81     "class" => "dossier",
82     "title" => _("PD - accueil"),
83     "right" => array("PD_accueil", "PD_accueil_tab", ),
84     "open" => array("tab.php|PD_accueil", "form.php|PD_accueil", ),
85     );
86     //
87     $links[] = array(
88     "href" => "../scr/tab.php?obj=PA_accueil",
89     "class" => "dossier",
90     "title" => _("PA - accueil"),
91     "right" => array("PA_accueil", "PA_accueil_tab", ),
92     "open" => array("tab.php|PA_accueil", "form.php|PA_accueil", ),
93     );
94     //
95     $links[] = array(
96     "title" => "<hr/>",
97     "right" => array("PC_modificatif", "PC_modificatif_tab", ),
98     );
99     //
100     $links[] = array(
101     "href" => "../scr/tab.php?obj=PC_modificatif",
102     "class" => "traitement",
103     "title" => _("modificatif transfert"),
104     "right" => array("PC_modificatif", "PC_modificatif_tab", ),
105     "open" => array("|PC_modificatif", "dossier_modificatif.php|", ),
106     );
107     //
108     $links[] = array(
109     "title" => "<hr/>",
110     "right" => array("recherchedossier", ),
111     );
112     //
113     $links[] = array(
114     "href" => "../app/recherchedossier.php",
115     "class" => "dossier",
116     "title" => _("Recherche dossier"),
117     "right" => "recherchedossier",
118     "open" => "recherchedossier.php|",
119     );
120 nhaye 496 $links[] = array(
121 nhaye 519 "class" => "category",
122 nhaye 496 "title" => _("Consultation"),
123 nhaye 533 "right" => array("consultation_mes_retours", "consultation_tous_retours","avis_code_barre"),
124 nhaye 496 );
125     $links[] = array(
126 nhaye 519 "title" => "<hr/>",
127 nhaye 533 "right" => array("consultation_mes_retours", "consultation_tous_retours","avis_code_barre"),
128 nhaye 519 );
129     $links[] = array(
130 nhaye 509 "href" => "../scr/tab.php?obj=consultation_mes_retours",
131     "class" => "consultation_mes_retours",
132     "title" => _("Mes retours"),
133     "right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ),
134     "open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ),
135 nhaye 496 );
136 nhaye 498 $links[] = array(
137 nhaye 509 "href" => "../scr/tab.php?obj=consultation_tous_retours",
138     "class" => "consultation_tous_retours",
139     "title" => _("Tous les retours"),
140     "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),
141     "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),
142 nhaye 498 );
143 nhaye 533 $links[] = array(
144     "href" => "../app/avis_code_barre.php",
145     "class" => "avis_code_barre",
146     "title" => _("Retour de consultation"),
147     "right" => array("avis_code_barre", ),
148     "open" => array("|avis_code_barre.php"),
149     );
150 fmichon 380 //
151 fraynaud 3 $rubrik['links'] = $links;
152 fmichon 380 //
153     $menu[] = $rubrik;
154     // }}}
155 fraynaud 3
156     // {{{ Rubrique EXPORT
157 fmichon 380 //
158 fraynaud 3 $rubrik = array(
159 fmichon 380 "title" => _("export"),
160 fraynaud 3 "class" => "edition",
161     "right" => "menu_export",
162     );
163 fmichon 380 //
164 fraynaud 3 $links = array();
165 fmichon 380 //
166     $links[] = array(
167     "href" => "../scr/edition.php",
168     "class" => "edition",
169     "title" => _("edition"),
170     "right" => "edition",
171     "open" => "edition.php|",
172     );
173     //
174     $links[] = array(
175     "href" => "../app/edition_p.php",
176     "class" => "edition",
177     "title" => _("edition date depot"),
178     "right" => "edition_p",
179     "open" => "edition_p.php|",
180     );
181     //
182     $links[] = array(
183     "href" => "../app/edition_d.php",
184     "class" => "edition",
185     "title" => _("edition date decision"),
186     "right" => "edition_d",
187     "open" => "edition_d.php|",
188     );
189     //
190     $links[] = array(
191     "title" => "<hr/>",
192     "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),
193     );
194     //
195     $links[] = array(
196     "href" => "../scr/reqmo.php",
197     "class" => "reqmo",
198     "title" => _("requetes memorisees"),
199     "right" => "reqmo",
200     "open" => array("reqmo.php|", "requeteur.php|", ),
201     );
202     //
203     $links[] = array(
204     "href" => "../app/export_pc.php",
205     "class" => "reqmo",
206     "title" => _("export PC Lascot"),
207     "right" => "export_pc",
208     "open" => "export_pc.php|",
209     );
210     //
211     $links[] = array(
212     "href" => "../app/export_dp.php",
213     "class" => "reqmo",
214     "title" => _("export DP Lascot"),
215     "right" => "export_dp",
216     "open" => "export_dp.php|",
217     );
218     //
219     $links[] = array(
220     "href" => "../app/sitadel.php",
221     "class" => "reqmo",
222     "title" => _("export sitadel")." 2",
223     "right" => "export_sitadel",
224     "open" => "sitadel.php|",
225     );
226     //
227 fraynaud 3 $rubrik['links'] = $links;
228 fmichon 380 //
229     $menu[] = $rubrik;
230 fraynaud 3 // }}}
231    
232 fmichon 380 // {{{ Rubrique PARAMETRAGE
233     //
234 fraynaud 3 $rubrik = array(
235 fmichon 380 "title" => _("parametrage"),
236 atreal 306 "class" => "parametrage",
237     "right" => "menu_parametrage",
238 fraynaud 3 );
239 fmichon 380 //
240 fraynaud 3 $links = array();
241 fmichon 380 //
242     // GENERAUX
243     $links[] = array(
244     "href" => "../scr/form.php?obj=dossier_numeromanuel",
245     "class" => "traitement",
246     "title" => _("numero manuel"),
247     "right" => "dossier_numeromanuel",
248     "open" => "|dossier_numeromanuel",
249     );
250     //
251     $links[] = array(
252     "href" => "../app/num_dossier.php",
253     "class" => "traitement",
254     "title" => _("remise a 0"),
255     "right" => "num_dossier",
256     "open" => "num_dossier.php|",
257     );
258     //
259     $links[] = array(
260     "title" => "<hr/>",
261     "right" => array(
262 vpihour 490 "architecte", "architecte_tab", "service", "service_tab", "service_categorie", "service_categorie_tab", "lien_service_service_categorie", "lien_service_service_categorie_tab",
263     "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",
264 fmichon 380 "destination", "destination_tab", "nature", "nature_tab", "rivoli",
265     "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",
266     ),
267     );
268     //
269     $links[] = array(
270     "href" => "../scr/tab.php?obj=architecte",
271     "class" => "architecte",
272     "title" => _("architecte"),
273     "right" => array("architecte", "architecte_tab", ),
274     "open" => array("tab.php|architecte", "form.php|architecte", ),
275     );
276     //
277     $links[] = array(
278     "href" => "../scr/tab.php?obj=service",
279     "class" => "service",
280     "title" => _("service"),
281     "right" => array("service", "service_tab", ),
282     "open" => array("tab.php|service", "form.php|service", ),
283     );
284 vpihour 490 $links[] = array(
285     "href" => "../scr/tab.php?obj=service_categorie",
286     "class" => "service_categorie",
287 vpihour 491 "title" => _("thematique des services"),
288 vpihour 490 "right" => array("service_categorie", "service_categorie_tab", ),
289     "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
290     );
291     $links[] = array(
292     "href" => "../scr/tab.php?obj=lien_service_service_categorie",
293     "class" => "lien_service_service_categorie",
294 vpihour 491 "title" => _("Lien service / thematique"),
295 vpihour 490 "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),
296     "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),
297     );
298 fmichon 380 //
299     $links[] = array(
300     "href" => "../scr/tab.php?obj=travaux",
301     "class" => "travaux",
302     "title" => _("travaux"),
303     "right" => array("travaux", "travaux_tab", ),
304     "open" => array("tab.php|travaux", "form.php|travaux", ),
305     );
306     //
307     $links[] = array(
308     "href" => "../scr/tab.php?obj=categorie_demandeur",
309     "class" => "categorie_demandeur",
310     "title" => _("categorie_demandeur"),
311     "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),
312     "open" => array(
313     "tab.php|categorie_demandeur", "form.php|categorie_demandeur",
314     ),
315     );
316     //
317     $links[] = array(
318     "href" => "../scr/tab.php?obj=destination",
319     "class" => "destination",
320     "title" => _("destination"),
321     "right" => array("destination", "destination_tab", ),
322     "open" => array("tab.php|destination", "form.php|destination", ),
323     );
324     //
325     $links[] = array(
326     "href" => "../scr/tab.php?obj=nature",
327     "class" => "nature",
328     "title" => _("nature"),
329     "right" => array("nature", "nature_tab", ),
330     "open" => array("tab.php|nature", "form.php|nature", ),
331     );
332     //
333     $links[] = array(
334     "href" => "../scr/tab.php?obj=rivoli",
335     "class" => "rivoli",
336     "title" => _("rivoli"),
337     "right" => array("rivoli", "rivoli_tab", ),
338     "open" => array("tab.php|rivoli", "form.php|rivoli", ),
339     );
340     //
341     $links[] = array(
342     "href" => "../scr/tab.php?obj=civilite",
343     "class" => "civilite",
344     "title" => _("civilite"),
345     "right" => array("civilite", "civilite_tab", ),
346     "open" => array("tab.php|civilite", "form.php|civilite", ),
347     );
348     //
349     $links[] = array(
350     "href" => "../scr/tab.php?obj=parametre",
351     "class" => "parametre",
352     "title" => _("parametre")." "._("statistique"),
353     "right" => array("parametre", "parametre_tab", ),
354     "open" => array("tab.php|parametre", "form.php|parametre", ),
355     );
356     //
357     $links[] = array(
358     "class" => "category",
359     "title" => _("workflows"),
360     "right" => array(
361     "action", "action_tab", "transition", "transition_tab", "etat",
362 vpihour 491 "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
363     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
364 fmichon 380 ),
365     );
366     //
367     $links[] = array(
368     "title" => "<hr/>",
369     "right" => array(
370     "action", "action_tab", "transition", "transition_tab", "etat",
371 vpihour 491 "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
372     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
373 fmichon 380 ),
374     );
375     //
376     $links[] = array(
377     "href" => "../scr/tab.php?obj=action",
378     "class" => "action",
379     "title" => _("action"),
380     "right" => array("action", "action_tab", ),
381     "open" => array("tab.php|action", "form.php|action", ),
382     );
383     //
384     $links[] = array(
385     "href" => "../scr/tab.php?obj=transition",
386     "class" => "transition",
387     "title" => _("transition"),
388     "right" => array("transition", "transition_tab", ),
389     "open" => array("tab.php|transition", "form.php|transition", ),
390     );
391     //
392     $links[] = array(
393     "href" => "../scr/tab.php?obj=etat",
394     "class" => "etat",
395     "title" => _("etat"),
396     "right" => array("etat", "etat_tab", ),
397     "open" => array("tab.php|etat", "form.php|etat", ),
398     );
399     //
400     $links[] = array(
401     "href" => "../scr/tab.php?obj=evenement",
402     "class" => "evenement",
403     "title" => _("evenement"),
404     "right" => array("evenement", "evenement_tab", ),
405     "open" => array("tab.php|evenement", "form.php|evenement", ),
406     );
407     //
408     $links[] = array(
409     "href" => "../scr/tab.php?obj=bible",
410     "class" => "bible",
411     "title" => _("bible"),
412     "right" => array("bible", "bible_tab", ),
413     "open" => array("tab.php|bible", "form.php|bible", ),
414     );
415     //
416     $links[] = array(
417 vpihour 491 "href" => "../scr/tab.php?obj=avis_decision",
418     "class" => "avis_decision",
419     "title" => _("avis decision"),
420     "right" => array("avis_decision", "avis_decision_tab", ),
421     "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
422 fmichon 380 );
423     //
424     $links[] = array(
425 vpihour 491 "href" => "../scr/tab.php?obj=avis_consultation",
426     "class" => "avis_consultation",
427     "title" => _("avis consultation"),
428     "right" => array("avis_consultation", "avis_consultation_tab", ),
429     "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
430     );
431     //
432     $links[] = array(
433 fmichon 380 "class" => "category",
434 nhaye 521 "title" => _("Organisation"),
435     "right" => array("direction", "division", "instructeur"),
436     );
437     $links[] = array(
438     "title" => "<hr/>",
439     "right" => array("direction", "division", "instructeur"),
440     );
441     //
442     $links[] = array(
443     "href" => "../scr/tab.php?obj=direction",
444     "class" => "direction",
445     "title" => _("direction"),
446     "right" => array("direction", "direction_tab", ),
447     "open" => array("tab.php|direction", "form.php|direction", ),
448     );
449     //
450     $links[] = array(
451     "href" => "../scr/tab.php?obj=division",
452     "class" => "division",
453     "title" => _("division"),
454     "right" => array("division", "division_tab", ),
455     "open" => array("tab.php|division", "form.php|division", ),
456     );
457     //
458     $links[] = array(
459     "href" => "../scr/tab.php?obj=instructeur",
460     "class" => "instructeur",
461     "title" => _("instructeur"),
462     "right" => array("instructeur", "instructeur_tab", ),
463     "open" => array("tab.php|instructeur", "form.php|instructeur", ),
464     );
465     //
466     $links[] = array(
467     "class" => "category",
468 fmichon 380 "title" => _("editions"),
469     "right" => array(
470     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
471     "om_lettretype", "om_lettretype_tab",
472     ),
473     );
474     //
475     $links[] = array(
476     "title" => "<hr/>",
477     "right" => array(
478     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
479     "om_lettretype", "om_lettretype_tab",
480     ),
481     );
482     //
483     $links[] = array(
484     "href" => "../scr/tab.php?obj=om_etat",
485     "class" => "etat",
486     "title" => _("om_etat"),
487     "right" => array("om_etat", "om_etat_tab", ),
488     "open" => array("tab.php|om_etat", "form.php|om_etat", ),
489     );
490     //
491     $links[] = array(
492     "href" => "../scr/tab.php?obj=om_sousetat",
493     "class" => "sousetat",
494     "title" => _("om_sousetat"),
495     "right" => array("om_sousetat", "om_sousetat_tab", ),
496     "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
497     );
498     //
499     $links[] = array(
500     "href" => "../scr/tab.php?obj=om_lettretype",
501     "class" => "lettretype",
502     "title" => _("om_lettretype"),
503     "right" => array("om_lettretype", "om_lettretype_tab"),
504     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
505     );
506     //
507 fraynaud 196 $rubrik['links'] = $links;
508 fmichon 380 //
509     $menu[] = $rubrik;
510     // }}}
511 fraynaud 196
512 fmichon 380 // {{{ Rubrique SIG
513     //
514 fraynaud 196 $rubrik = array(
515 fmichon 380 "title" => _("sig"),
516 fraynaud 196 "class" => "sig",
517     "right" => "menu_sig",
518     );
519 fmichon 380 //
520 fraynaud 196 $links = array();
521 fmichon 380 //
522     $links[] = array(
523     "href" => "../scr/tab.php?obj=parcelle",
524     "class" => "parcelle",
525     "title" => _("parcelle"),
526     "right" => array("parcelle", "parcelle_tab"),
527     "open" => array("tab.php|parcelle", "form.php|parcelle", ),
528     );
529     //
530     $links[] = array(
531     "href" => "../scr/tab.php?obj=proprietaire",
532     "class" => "proprietaire",
533     "title" => _("proprietaire"),
534     "right" => array("proprietaire", "proprietaire_tab"),
535     "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
536     );
537     //
538     $links[] = array(
539     "class" => "category",
540     "title" => _("servitudes"),
541     "right" => array(
542     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
543     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
544     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
545     ),
546     );
547     //
548     $links[] = array(
549     "title" => "<hr/>",
550     "right" => array(
551     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
552     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
553     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
554     ),
555     );
556     //
557     $links[] = array(
558     "href" => "../scr/tab.php?obj=pos",
559     "class" => "pos",
560     "title" => _("pos"),
561     "right" => array("pos", "pos_tab"),
562     "open" => array("tab.php|pos", "form.php|pos", ),
563     );
564     //
565     $links[] = array(
566     "href" => "../scr/tab.php?obj=servitude_surfacique",
567     "class" => "servitude_surfacique",
568     "title" => _("servitude_surfacique"),
569     "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
570     "open" => array(
571     "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
572     ),
573     );
574     //
575     $links[] = array(
576     "href" => "../scr/tab.php?obj=servitude_ligne",
577     "class" => "servitude_ligne",
578     "title" => _("servitude_ligne"),
579     "right" => array("servitude_ligne", "servitude_ligne_tab"),
580     "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
581     );
582     //
583     $links[] = array(
584     "href" => "../scr/tab.php?obj=servitude_point",
585     "class" => "servitude_point",
586     "title" => _("servitude_point"),
587     "right" => array("servitude_point", "servitude_point_tab"),
588     "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
589     );
590     //
591     $links[] = array(
592     "href" => "../scr/tab.php?obj=parcelle_lot",
593     "class" => "parcelle_lot",
594     "title" => _("parcelle_lot"),
595     "right" => array("parcelle_lot", "parcelle_lot_tab"),
596     "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
597     );
598     //
599 fraynaud 3 $rubrik['links'] = $links;
600 fmichon 380 //
601     $menu[] = $rubrik;
602     // }}}
603 fraynaud 3
604     // {{{ Rubrique ADMINISTRATION
605     //
606     $rubrik = array(
607 fmichon 380 "title" => _("administration"),
608 fraynaud 3 "class" => "administration",
609     "right" => "menu_administration",
610     );
611     //
612     $links = array();
613 fmichon 380 //
614     $links[] = array(
615     "href" => "../scr/tab.php?obj=om_collectivite",
616     "class" => "collectivite",
617     "title" => _("om_collectivite"),
618     "right" => array("om_collectivite", "om_collectivite_tab", ),
619     "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
620     );
621     //
622     $links[] = array(
623     "href" => "../scr/tab.php?obj=om_parametre",
624     "class" => "parametre",
625     "title" => _("om_parametre"),
626     "right" => array("om_parametre", "om_parametre_tab", ),
627     "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
628     );
629     //
630     $links[] = array(
631     "class" => "category",
632     "title" => _("gestion des utilisateurs"),
633     "right" => array(
634     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
635     "om_droit", "om_droit_tab", "directory",
636     ),
637     );
638     //
639     $links[] = array(
640     "title" => "<hr/>",
641     "right" => array(
642     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
643     "om_droit", "om_droit_tab",
644     ),
645     );
646     //
647     $links[] = array(
648     "href" => "../scr/tab.php?obj=om_profil",
649     "class" => "profil",
650     "title" => _("om_profil"),
651     "right" => array("om_profil", "om_profil_tab", ),
652     "open" => array("tab.php|om_profil", "form.php|om_profil", ),
653     );
654     //
655     $links[] = array(
656     "href" => "../scr/tab.php?obj=om_droit",
657     "class" => "droit",
658     "title" => _("om_droit"),
659     "right" => array("om_droit", "om_droit_tab", ),
660     "open" => array("tab.php|om_droit", "form.php|om_droit", ),
661     );
662     //
663     $links[] = array(
664     "href" => "../scr/tab.php?obj=om_utilisateur",
665     "class" => "utilisateur",
666     "title" => _("om_utilisateur"),
667     "right" => array("om_utilisateur", "om_utilisateur_tab", ),
668     "open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ),
669     );
670     //
671     $links[] = array(
672     "title" => "<hr/>",
673     "right" => array("directory", ),
674     "parameters" => array("isDirectoryOptionEnabled" => true, ),
675     );
676     //
677     $links[] = array(
678     "href" => "../scr/directory.php",
679     "class" => "directory",
680     "title" => _("annuaire"),
681     "right" => array("directory", ),
682     "open" => array("directory.php|", ),
683     "parameters" => array("isDirectoryOptionEnabled" => true, ),
684     );
685     //
686     $links[] = array(
687     "class" => "category",
688     "title" => _("tableaux de bord"),
689     "right" => array("om_widget", "om_widget_tab", ),
690     );
691     //
692     $links[] = array(
693     "title" => "<hr/>",
694     "right" => array("om_widget", "om_widget_tab", ),
695     );
696     //
697     $links[] = array(
698     "href" => "../scr/tab.php?obj=om_widget",
699     "class" => "om_widget",
700     "title" => _("widget"),
701     "right" => array("om_widget", "om_widget_tab", ),
702     "open" => array("tab.php|om_widget", "form.php|om_widget", ),
703     );
704     //
705     $links[] = array(
706     "class" => "category",
707     "title" => _("sig"),
708     "right" => array(
709     "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
710     ),
711     );
712     //
713     $links[] = array(
714     "title" => "<hr/>",
715     "right" => array(
716     "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
717     ),
718     );
719     //
720     $links[] = array(
721     "href" => "../scr/tab.php?obj=om_sig_map",
722     "class" => "om_sig_map",
723     "title" => _("om_sig_map"),
724     "right" => array("om_sig_map", "om_sig_map_tab", ),
725     "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
726     );
727     //
728     $links[] = array(
729     "href" => "../scr/tab.php?obj=om_sig_wms",
730     "class" => "om_sig_wms",
731     "title" => _("om_sig_wms"),
732     "right" => array("om_sig_wms", "om_sig_wms_tab", ),
733     "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
734     );
735     //
736     $links[] = array(
737     "class" => "category",
738     "title" => _("options avancees"),
739     "right" => array("import", "gen", ),
740     );
741     //
742     $links[] = array(
743     "title" => "<hr/>",
744     "right" => array("import", ),
745     );
746     //
747     $links[] = array(
748     "href" => "../scr/import.php",
749     "class" => "import",
750     "title" => _("Import"),
751     "right" => array("import", ),
752     "open" => array("import.php|", ),
753     );
754     //
755     $links[] = array(
756     "title" => "<hr/>",
757     "right" => array("gen", ),
758     );
759     //
760     $links[] = array(
761     "title" => _("Generateur"),
762     "href" => "../scr/gen.php",
763     "class" => "generator",
764     "right" => array("gen", ),
765     "open" => array(
766     "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
767     "genetat.php|", "gensousetat.php|", "genlettretype.php|",
768     "genimport.php|",
769     ),
770     );
771     //
772 fraynaud 3 $rubrik['links'] = $links;
773 fmichon 380 //
774     $menu[] = $rubrik;
775 fraynaud 3 // }}}
776    
777     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26