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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 544 - (show annotations)
Mon Oct 29 16:25:36 2012 UTC (12 years, 3 months ago) by nhaye
File size: 23164 byte(s)
Création d'une classe "abstraite" virtual_dbform.class.php
création de la classe demande_encours (accessible aux services),
création de la classe consultation_retour_service (permettant un retour d'avis des services),
ajout d'une méthode d'affichage de dialog box (jquery-ui dialog), fonctionne de la même façon que ajaxIt,
correction des entrées de menu,
ajout des droits necessaires.


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26