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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 521 - (show annotations)
Thu Oct 18 15:53:35 2012 UTC (12 years, 3 months ago) by nhaye
File size: 21794 byte(s)
Deplacement des menus de la catégorie "Organisation"

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26