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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 496 - (hide annotations)
Thu Oct 11 16:29:53 2012 UTC (12 years, 3 months ago) by nhaye
File size: 20254 byte(s)
Ajout de la catégorie consultation dans le menu,
ajout de la recherche avancée sur le tableau des consultations,

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     "class" => "subtitle",
122     "title" => _("Consultation"),
123     "right" => "consultation"
124     );
125     $links[] = array(
126     "href" => "../scr/tab.php?obj=consultation",
127     "class" => "consultation",
128     "title" => _("Toutes mes consultations"),
129     "right" => array("consultation", "consultation_tab", ),
130     "open" => array("tab.php|consultation", "form.php|consultation", ),
131     );
132 fmichon 380 //
133 fraynaud 3 $rubrik['links'] = $links;
134 fmichon 380 //
135     $menu[] = $rubrik;
136     // }}}
137 fraynaud 3
138     // {{{ Rubrique EXPORT
139 fmichon 380 //
140 fraynaud 3 $rubrik = array(
141 fmichon 380 "title" => _("export"),
142 fraynaud 3 "class" => "edition",
143     "right" => "menu_export",
144     );
145 fmichon 380 //
146 fraynaud 3 $links = array();
147 fmichon 380 //
148     $links[] = array(
149     "href" => "../scr/edition.php",
150     "class" => "edition",
151     "title" => _("edition"),
152     "right" => "edition",
153     "open" => "edition.php|",
154     );
155     //
156     $links[] = array(
157     "href" => "../app/edition_p.php",
158     "class" => "edition",
159     "title" => _("edition date depot"),
160     "right" => "edition_p",
161     "open" => "edition_p.php|",
162     );
163     //
164     $links[] = array(
165     "href" => "../app/edition_d.php",
166     "class" => "edition",
167     "title" => _("edition date decision"),
168     "right" => "edition_d",
169     "open" => "edition_d.php|",
170     );
171     //
172     $links[] = array(
173     "title" => "<hr/>",
174     "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),
175     );
176     //
177     $links[] = array(
178     "href" => "../scr/reqmo.php",
179     "class" => "reqmo",
180     "title" => _("requetes memorisees"),
181     "right" => "reqmo",
182     "open" => array("reqmo.php|", "requeteur.php|", ),
183     );
184     //
185     $links[] = array(
186     "href" => "../app/export_pc.php",
187     "class" => "reqmo",
188     "title" => _("export PC Lascot"),
189     "right" => "export_pc",
190     "open" => "export_pc.php|",
191     );
192     //
193     $links[] = array(
194     "href" => "../app/export_dp.php",
195     "class" => "reqmo",
196     "title" => _("export DP Lascot"),
197     "right" => "export_dp",
198     "open" => "export_dp.php|",
199     );
200     //
201     $links[] = array(
202     "href" => "../app/sitadel.php",
203     "class" => "reqmo",
204     "title" => _("export sitadel")." 2",
205     "right" => "export_sitadel",
206     "open" => "sitadel.php|",
207     );
208     //
209 fraynaud 3 $rubrik['links'] = $links;
210 fmichon 380 //
211     $menu[] = $rubrik;
212 fraynaud 3 // }}}
213    
214 fmichon 380 // {{{ Rubrique PARAMETRAGE
215     //
216 fraynaud 3 $rubrik = array(
217 fmichon 380 "title" => _("parametrage"),
218 atreal 306 "class" => "parametrage",
219     "right" => "menu_parametrage",
220 fraynaud 3 );
221 fmichon 380 //
222 fraynaud 3 $links = array();
223 fmichon 380 //
224     // GENERAUX
225     $links[] = array(
226     "href" => "../scr/form.php?obj=dossier_numeromanuel",
227     "class" => "traitement",
228     "title" => _("numero manuel"),
229     "right" => "dossier_numeromanuel",
230     "open" => "|dossier_numeromanuel",
231     );
232     //
233     $links[] = array(
234     "href" => "../app/num_dossier.php",
235     "class" => "traitement",
236     "title" => _("remise a 0"),
237     "right" => "num_dossier",
238     "open" => "num_dossier.php|",
239     );
240     //
241     $links[] = array(
242     "title" => "<hr/>",
243     "right" => array(
244 vpihour 490 "architecte", "architecte_tab", "service", "service_tab", "service_categorie", "service_categorie_tab", "lien_service_service_categorie", "lien_service_service_categorie_tab",
245     "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",
246 fmichon 380 "destination", "destination_tab", "nature", "nature_tab", "rivoli",
247     "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",
248     ),
249     );
250     //
251     $links[] = array(
252     "href" => "../scr/tab.php?obj=architecte",
253     "class" => "architecte",
254     "title" => _("architecte"),
255     "right" => array("architecte", "architecte_tab", ),
256     "open" => array("tab.php|architecte", "form.php|architecte", ),
257     );
258     //
259     $links[] = array(
260     "href" => "../scr/tab.php?obj=service",
261     "class" => "service",
262     "title" => _("service"),
263     "right" => array("service", "service_tab", ),
264     "open" => array("tab.php|service", "form.php|service", ),
265     );
266 vpihour 490 $links[] = array(
267     "href" => "../scr/tab.php?obj=service_categorie",
268     "class" => "service_categorie",
269 vpihour 491 "title" => _("thematique des services"),
270 vpihour 490 "right" => array("service_categorie", "service_categorie_tab", ),
271     "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
272     );
273     $links[] = array(
274     "href" => "../scr/tab.php?obj=lien_service_service_categorie",
275     "class" => "lien_service_service_categorie",
276 vpihour 491 "title" => _("Lien service / thematique"),
277 vpihour 490 "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),
278     "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),
279     );
280 fmichon 380 //
281     $links[] = array(
282     "href" => "../scr/tab.php?obj=travaux",
283     "class" => "travaux",
284     "title" => _("travaux"),
285     "right" => array("travaux", "travaux_tab", ),
286     "open" => array("tab.php|travaux", "form.php|travaux", ),
287     );
288     //
289     $links[] = array(
290     "href" => "../scr/tab.php?obj=categorie_demandeur",
291     "class" => "categorie_demandeur",
292     "title" => _("categorie_demandeur"),
293     "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),
294     "open" => array(
295     "tab.php|categorie_demandeur", "form.php|categorie_demandeur",
296     ),
297     );
298     //
299     $links[] = array(
300     "href" => "../scr/tab.php?obj=destination",
301     "class" => "destination",
302     "title" => _("destination"),
303     "right" => array("destination", "destination_tab", ),
304     "open" => array("tab.php|destination", "form.php|destination", ),
305     );
306     //
307     $links[] = array(
308     "href" => "../scr/tab.php?obj=nature",
309     "class" => "nature",
310     "title" => _("nature"),
311     "right" => array("nature", "nature_tab", ),
312     "open" => array("tab.php|nature", "form.php|nature", ),
313     );
314     //
315     $links[] = array(
316     "href" => "../scr/tab.php?obj=rivoli",
317     "class" => "rivoli",
318     "title" => _("rivoli"),
319     "right" => array("rivoli", "rivoli_tab", ),
320     "open" => array("tab.php|rivoli", "form.php|rivoli", ),
321     );
322     //
323     $links[] = array(
324     "href" => "../scr/tab.php?obj=civilite",
325     "class" => "civilite",
326     "title" => _("civilite"),
327     "right" => array("civilite", "civilite_tab", ),
328     "open" => array("tab.php|civilite", "form.php|civilite", ),
329     );
330     //
331     $links[] = array(
332     "href" => "../scr/tab.php?obj=parametre",
333     "class" => "parametre",
334     "title" => _("parametre")." "._("statistique"),
335     "right" => array("parametre", "parametre_tab", ),
336     "open" => array("tab.php|parametre", "form.php|parametre", ),
337     );
338     //
339     $links[] = array(
340     "class" => "category",
341     "title" => _("workflows"),
342     "right" => array(
343     "action", "action_tab", "transition", "transition_tab", "etat",
344 vpihour 491 "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
345     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
346 fmichon 380 ),
347     );
348     //
349     $links[] = array(
350     "title" => "<hr/>",
351     "right" => array(
352     "action", "action_tab", "transition", "transition_tab", "etat",
353 vpihour 491 "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
354     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
355 fmichon 380 ),
356     );
357     //
358     $links[] = array(
359     "href" => "../scr/tab.php?obj=action",
360     "class" => "action",
361     "title" => _("action"),
362     "right" => array("action", "action_tab", ),
363     "open" => array("tab.php|action", "form.php|action", ),
364     );
365     //
366     $links[] = array(
367     "href" => "../scr/tab.php?obj=transition",
368     "class" => "transition",
369     "title" => _("transition"),
370     "right" => array("transition", "transition_tab", ),
371     "open" => array("tab.php|transition", "form.php|transition", ),
372     );
373     //
374     $links[] = array(
375     "href" => "../scr/tab.php?obj=etat",
376     "class" => "etat",
377     "title" => _("etat"),
378     "right" => array("etat", "etat_tab", ),
379     "open" => array("tab.php|etat", "form.php|etat", ),
380     );
381     //
382     $links[] = array(
383     "href" => "../scr/tab.php?obj=evenement",
384     "class" => "evenement",
385     "title" => _("evenement"),
386     "right" => array("evenement", "evenement_tab", ),
387     "open" => array("tab.php|evenement", "form.php|evenement", ),
388     );
389     //
390     $links[] = array(
391     "href" => "../scr/tab.php?obj=bible",
392     "class" => "bible",
393     "title" => _("bible"),
394     "right" => array("bible", "bible_tab", ),
395     "open" => array("tab.php|bible", "form.php|bible", ),
396     );
397     //
398     $links[] = array(
399 vpihour 491 "href" => "../scr/tab.php?obj=avis_decision",
400     "class" => "avis_decision",
401     "title" => _("avis decision"),
402     "right" => array("avis_decision", "avis_decision_tab", ),
403     "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
404 fmichon 380 );
405     //
406     $links[] = array(
407 vpihour 491 "href" => "../scr/tab.php?obj=avis_consultation",
408     "class" => "avis_consultation",
409     "title" => _("avis consultation"),
410     "right" => array("avis_consultation", "avis_consultation_tab", ),
411     "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
412     );
413     //
414     $links[] = array(
415 fmichon 380 "class" => "category",
416     "title" => _("editions"),
417     "right" => array(
418     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
419     "om_lettretype", "om_lettretype_tab",
420     ),
421     );
422     //
423     $links[] = array(
424     "title" => "<hr/>",
425     "right" => array(
426     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
427     "om_lettretype", "om_lettretype_tab",
428     ),
429     );
430     //
431     $links[] = array(
432     "href" => "../scr/tab.php?obj=om_etat",
433     "class" => "etat",
434     "title" => _("om_etat"),
435     "right" => array("om_etat", "om_etat_tab", ),
436     "open" => array("tab.php|om_etat", "form.php|om_etat", ),
437     );
438     //
439     $links[] = array(
440     "href" => "../scr/tab.php?obj=om_sousetat",
441     "class" => "sousetat",
442     "title" => _("om_sousetat"),
443     "right" => array("om_sousetat", "om_sousetat_tab", ),
444     "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
445     );
446     //
447     $links[] = array(
448     "href" => "../scr/tab.php?obj=om_lettretype",
449     "class" => "lettretype",
450     "title" => _("om_lettretype"),
451     "right" => array("om_lettretype", "om_lettretype_tab"),
452     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
453     );
454     //
455 fraynaud 196 $rubrik['links'] = $links;
456 fmichon 380 //
457     $menu[] = $rubrik;
458     // }}}
459 fraynaud 196
460 fmichon 380 // {{{ Rubrique SIG
461     //
462 fraynaud 196 $rubrik = array(
463 fmichon 380 "title" => _("sig"),
464 fraynaud 196 "class" => "sig",
465     "right" => "menu_sig",
466     );
467 fmichon 380 //
468 fraynaud 196 $links = array();
469 fmichon 380 //
470     $links[] = array(
471     "href" => "../scr/tab.php?obj=parcelle",
472     "class" => "parcelle",
473     "title" => _("parcelle"),
474     "right" => array("parcelle", "parcelle_tab"),
475     "open" => array("tab.php|parcelle", "form.php|parcelle", ),
476     );
477     //
478     $links[] = array(
479     "href" => "../scr/tab.php?obj=proprietaire",
480     "class" => "proprietaire",
481     "title" => _("proprietaire"),
482     "right" => array("proprietaire", "proprietaire_tab"),
483     "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
484     );
485     //
486     $links[] = array(
487     "class" => "category",
488     "title" => _("servitudes"),
489     "right" => array(
490     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
491     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
492     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
493     ),
494     );
495     //
496     $links[] = array(
497     "title" => "<hr/>",
498     "right" => array(
499     "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
500     "servitude_ligne", "servitude_ligne_tab", "servitude_point",
501     "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
502     ),
503     );
504     //
505     $links[] = array(
506     "href" => "../scr/tab.php?obj=pos",
507     "class" => "pos",
508     "title" => _("pos"),
509     "right" => array("pos", "pos_tab"),
510     "open" => array("tab.php|pos", "form.php|pos", ),
511     );
512     //
513     $links[] = array(
514     "href" => "../scr/tab.php?obj=servitude_surfacique",
515     "class" => "servitude_surfacique",
516     "title" => _("servitude_surfacique"),
517     "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
518     "open" => array(
519     "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
520     ),
521     );
522     //
523     $links[] = array(
524     "href" => "../scr/tab.php?obj=servitude_ligne",
525     "class" => "servitude_ligne",
526     "title" => _("servitude_ligne"),
527     "right" => array("servitude_ligne", "servitude_ligne_tab"),
528     "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
529     );
530     //
531     $links[] = array(
532     "href" => "../scr/tab.php?obj=servitude_point",
533     "class" => "servitude_point",
534     "title" => _("servitude_point"),
535     "right" => array("servitude_point", "servitude_point_tab"),
536     "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
537     );
538     //
539     $links[] = array(
540     "href" => "../scr/tab.php?obj=parcelle_lot",
541     "class" => "parcelle_lot",
542     "title" => _("parcelle_lot"),
543     "right" => array("parcelle_lot", "parcelle_lot_tab"),
544     "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
545     );
546     //
547 fraynaud 3 $rubrik['links'] = $links;
548 fmichon 380 //
549     $menu[] = $rubrik;
550     // }}}
551 fraynaud 3
552     // {{{ Rubrique ADMINISTRATION
553     //
554     $rubrik = array(
555 fmichon 380 "title" => _("administration"),
556 fraynaud 3 "class" => "administration",
557     "right" => "menu_administration",
558     );
559     //
560     $links = array();
561 fmichon 380 //
562     $links[] = array(
563     "href" => "../scr/tab.php?obj=om_collectivite",
564     "class" => "collectivite",
565     "title" => _("om_collectivite"),
566     "right" => array("om_collectivite", "om_collectivite_tab", ),
567     "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
568     );
569     //
570     $links[] = array(
571     "href" => "../scr/tab.php?obj=om_parametre",
572     "class" => "parametre",
573     "title" => _("om_parametre"),
574     "right" => array("om_parametre", "om_parametre_tab", ),
575     "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
576     );
577     //
578     $links[] = array(
579     "class" => "category",
580     "title" => _("gestion des utilisateurs"),
581     "right" => array(
582     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
583     "om_droit", "om_droit_tab", "directory",
584     ),
585     );
586     //
587     $links[] = array(
588     "title" => "<hr/>",
589     "right" => array(
590     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
591     "om_droit", "om_droit_tab",
592     ),
593     );
594     //
595     $links[] = array(
596     "href" => "../scr/tab.php?obj=om_profil",
597     "class" => "profil",
598     "title" => _("om_profil"),
599     "right" => array("om_profil", "om_profil_tab", ),
600     "open" => array("tab.php|om_profil", "form.php|om_profil", ),
601     );
602     //
603     $links[] = array(
604     "href" => "../scr/tab.php?obj=om_droit",
605     "class" => "droit",
606     "title" => _("om_droit"),
607     "right" => array("om_droit", "om_droit_tab", ),
608     "open" => array("tab.php|om_droit", "form.php|om_droit", ),
609     );
610     //
611     $links[] = array(
612     "href" => "../scr/tab.php?obj=om_utilisateur",
613     "class" => "utilisateur",
614     "title" => _("om_utilisateur"),
615     "right" => array("om_utilisateur", "om_utilisateur_tab", ),
616     "open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ),
617     );
618     //
619     $links[] = array(
620     "title" => "<hr/>",
621     "right" => array("directory", ),
622     "parameters" => array("isDirectoryOptionEnabled" => true, ),
623     );
624     //
625     $links[] = array(
626     "href" => "../scr/directory.php",
627     "class" => "directory",
628     "title" => _("annuaire"),
629     "right" => array("directory", ),
630     "open" => array("directory.php|", ),
631     "parameters" => array("isDirectoryOptionEnabled" => true, ),
632     );
633     //
634     $links[] = array(
635     "class" => "category",
636     "title" => _("tableaux de bord"),
637     "right" => array("om_widget", "om_widget_tab", ),
638     );
639     //
640     $links[] = array(
641     "title" => "<hr/>",
642     "right" => array("om_widget", "om_widget_tab", ),
643     );
644     //
645     $links[] = array(
646     "href" => "../scr/tab.php?obj=om_widget",
647     "class" => "om_widget",
648     "title" => _("widget"),
649     "right" => array("om_widget", "om_widget_tab", ),
650     "open" => array("tab.php|om_widget", "form.php|om_widget", ),
651     );
652     //
653     $links[] = array(
654     "class" => "category",
655     "title" => _("sig"),
656     "right" => array(
657     "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
658     ),
659     );
660     //
661     $links[] = array(
662     "title" => "<hr/>",
663     "right" => array(
664     "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
665     ),
666     );
667     //
668     $links[] = array(
669     "href" => "../scr/tab.php?obj=om_sig_map",
670     "class" => "om_sig_map",
671     "title" => _("om_sig_map"),
672     "right" => array("om_sig_map", "om_sig_map_tab", ),
673     "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
674     );
675     //
676     $links[] = array(
677     "href" => "../scr/tab.php?obj=om_sig_wms",
678     "class" => "om_sig_wms",
679     "title" => _("om_sig_wms"),
680     "right" => array("om_sig_wms", "om_sig_wms_tab", ),
681     "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
682     );
683     //
684     $links[] = array(
685     "class" => "category",
686     "title" => _("options avancees"),
687     "right" => array("import", "gen", ),
688     );
689     //
690     $links[] = array(
691     "title" => "<hr/>",
692     "right" => array("import", ),
693     );
694     //
695     $links[] = array(
696     "href" => "../scr/import.php",
697     "class" => "import",
698     "title" => _("Import"),
699     "right" => array("import", ),
700     "open" => array("import.php|", ),
701     );
702     //
703     $links[] = array(
704     "title" => "<hr/>",
705     "right" => array("gen", ),
706     );
707     //
708     $links[] = array(
709     "title" => _("Generateur"),
710     "href" => "../scr/gen.php",
711     "class" => "generator",
712     "right" => array("gen", ),
713     "open" => array(
714     "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
715     "genetat.php|", "gensousetat.php|", "genlettretype.php|",
716     "genimport.php|",
717     ),
718     );
719     //
720 fraynaud 3 $rubrik['links'] = $links;
721 fmichon 380 //
722     $menu[] = $rubrik;
723 fraynaud 3 // }}}
724    
725     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26