/[openfoncier]/branches/3.14.x/dyn/menu.inc.php
ViewVC logotype

Contents of /branches/3.14.x/dyn/menu.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1483 - (show annotations)
Sun Mar 17 23:27:48 2013 UTC (11 years, 10 months ago) by fmichon
Original Path: trunk/dyn/menu.inc.php
File size: 42828 byte(s)
modification du popupit et de l'overlay

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26