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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 853 - (show annotations)
Wed Nov 28 14:55:26 2012 UTC (12 years, 2 months ago) by fmichon
File size: 33605 byte(s)
Réorganisation du menu

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 $rubrik['links'] = $links;
24 //
25 $menu[] = $rubrik;
26 // }}}
27
28 // {{{ Rubrique GUICHET UNIQUE
29 //
30 $rubrik = array(
31 "title" => _("Guichet Unique"),
32 "class" => "guichet_unique",
33 "right" => "menu_guichet_unique",
34 );
35 //
36 $links = array();
37 //
38 $links[] = array(
39 "class" => "category",
40 "title" => _("demandes"),
41 "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
42 "demande_dossier_existant","demande_dossier_existant_tab",),
43 );
44 $links[] = array(
45 "title" => "<hr/>",
46 "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
47 "demande_dossier_existant","demande_dossier_existant_tab",),
48 );
49 $links[] = array(
50 "href" => "../scr/form.php?obj=demande&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
51 "class" => "demande",
52 "title" => _("nouveau dossier"),
53 "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),
54 "open" => array("form.php|demande"),
55 );
56 $links[] = array(
57 "href" => "../scr/tab.php?obj=dossier_autorisation",
58 "class" => "demande_dossier_existant",
59 "title" => _("dossier existant"),
60 "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),
61 "open" => array("tab.php|dossier_autorisation", "form.php|dossier_autorisation"),
62 );
63 //
64 $links[] = array(
65 "class" => "category",
66 "title" => _("Affichage des dossiers"),
67 "right" => array("edition_m","attestation_affichage","attestation_affichage_tab",),
68 );
69 $links[] = array(
70 "title" => "<hr/>",
71 "right" => array("edition", "attestation_affichage"),
72 );
73 $links[] = array(
74 "href" => "../app/edition_m.php",
75 "class" => "edition",
76 "title" => _("edition"),
77 "right" => "edition_m",
78 "open" => "edition_m.php|",
79 );
80 $links[] = array(
81 "href" => "../app/attestation_affichage.php",
82 "class" => "attestation_affichage",
83 "title" => _("attestation d'affichage"),
84 "right" => array("attestation_affichage", "attestation_affichage_tab", ),
85 "open" => array("tab.php|attestation_affichage", "form.php|attestation_affichage", ),
86 );
87 //
88 /*$links[] = array(
89 "class" => "category",
90 "title" => _("Qualification"),
91 "right" => array("qualification"),
92 );
93 $links[] = array(
94 "title" => "<hr/>",
95 "right" => array("qualification"),
96 );
97 $links[] = array(
98 "href" => "../scr/tab.php?obj=dossier",
99 "class" => "qualification",
100 "title" => _("A Qualifier"),
101 "right" => array("qualification", "qualification_tab", ),
102 "open" => array("tab.php|qualification", "form.php|qualification", ),
103 );*/
104 //
105 $rubrik['links'] = $links;
106 //
107 $menu[] = $rubrik;
108 // }}}
109
110 // {{{ Rubrique INSTRUCTION
111 //
112 $rubrik = array(
113 "title" => _("instruction"),
114 "class" => "instruction",
115 "right" => "menu_instruction",
116 );
117 //
118 $links = array();
119 // Catégorie DOSSIERS D'INSTRUCTION
120 $links[] = array(
121 "class" => "category",
122 "title" => _("dossiers d'instruction"),
123 "right" => array(
124 "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
125 "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
126 "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
127 "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
128 "dossier_instruction", "dossier_instruction_tab",
129 "PC_modificatif", "PC_modificatif_tab",
130 ),
131 );
132 $links[] = array(
133 "title" => "<hr/>",
134 "right" => array(
135 "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
136 "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
137 ),
138 );
139 //
140 $links[] = array(
141 "href" => "../scr/tab.php?obj=dossier_instruction_mes_encours",
142 "class" => "dossier_instruction_mes_encours",
143 "title" => _("mes encours"),
144 "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
145 "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ),
146 );
147 //
148 $links[] = array(
149 "href" => "../scr/tab.php?obj=dossier_instruction_tous_encours",
150 "class" => "dossier_instruction_tous_encours",
151 "title" => _("tous les encours"),
152 "right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ),
153 "open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ),
154 );
155 //
156 $links[] = array(
157 "title" => "<hr/>",
158 "right" => array(
159 "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
160 "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
161 ),
162 );
163 //
164 $links[] = array(
165 "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",
166 "class" => "dossier_instruction_mes_clotures",
167 "title" => _("mes clotures"),
168 "right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ),
169 "open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ),
170 );
171 //
172 $links[] = array(
173 "href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures",
174 "class" => "dossier_instruction_tous_clotures",
175 "title" => _("tous les clotures"),
176 "right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ),
177 "open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ),
178 );
179 //
180 $links[] = array(
181 "title" => "<hr/>",
182 "right" => array("PC_modificatif", "PC_modificatif_tab", ),
183 );
184 //
185 $links[] = array(
186 "href" => "../scr/tab.php?obj=PC_modificatif",
187 "class" => "traitement",
188 "title" => _("modificatif transfert"),
189 "right" => array("PC_modificatif", "PC_modificatif_tab", ),
190 "open" => array("|PC_modificatif", "dossier_modificatif.php|", ),
191 );
192 //
193 $links[] = array(
194 "title" => "<hr/>",
195 "right" => array(
196 "dossier_instruction", "dossier_instruction_tab",
197 ),
198 );
199 //
200 $links[] = array(
201 "href" => "../scr/tab.php?obj=dossier_instruction",
202 "class" => "dossier_instruction",
203 "title" => _("recherche"),
204 "right" => array("dossier_instruction", "dossier_instruction_tab", ),
205 "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
206 );
207 // Catégorie CONSULTATIONS
208 $links[] = array(
209 "class" => "category",
210 "title" => _("consultations"),
211 "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
212 );
213 $links[] = array(
214 "title" => "<hr/>",
215 "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
216 );
217 $links[] = array(
218 "href" => "../scr/tab.php?obj=consultation_mes_retours",
219 "class" => "consultation_mes_retours",
220 "title" => _("Mes retours"),
221 "right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ),
222 "open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ),
223 );
224 $links[] = array(
225 "href" => "../scr/tab.php?obj=consultation_tous_retours",
226 "class" => "consultation_tous_retours",
227 "title" => _("Tous les retours"),
228 "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),
229 "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),
230 );
231 // Catégorie MESSAGES
232 $links[] = array(
233 "class" => "category",
234 "title" => _("Messages"),
235 "right" => array("messages_mes_retours", "messages_tous_retours"),
236 );
237 //
238 $links[] = array(
239 "title" => "<hr/>",
240 "right" => array("messages_mes_retours", "messages_tous_retours"),
241 );
242 //
243 $links[] = array(
244 "href" => "../scr/tab.php?obj=messages_mes_retours",
245 "class" => "messages_mes_retours",
246 "title" => _("Mes messages"),
247 "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
248 "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
249 );
250 //
251 $links[] = array(
252 "href" => "../scr/tab.php?obj=messages_tous_retours",
253 "class" => "messages_tous_retours",
254 "title" => _("Tous les messages"),
255 "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
256 "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
257 );
258
259 //
260 $rubrik['links'] = $links;
261 //
262 $menu[] = $rubrik;
263 // }}}
264
265 // {{{ Rubrique SUIVI
266 //
267 $rubrik = array(
268 "title" => _("Suivi"),
269 "class" => "suivi",
270 "right" => "menu_suivi",
271 );
272 //
273 $links = array();
274 //
275 $links[] = array(
276 "href" => "../app/avis_code_barre.php",
277 "class" => "avis_code_barre",
278 "title" => _("Retour de consultation"),
279 "right" => array("avis_code_barre", ),
280 "open" => array("avis_code_barre.php|"),
281 );
282 //
283 $rubrik['links'] = $links;
284 //
285 $menu[] = $rubrik;
286 // }}}
287
288 // {{{ Rubrique DEMANDES D'AVIS
289 //
290 $rubrik = array(
291 "title" => _("Demandes d'avis"),
292 "class" => "demande_avis",
293 "right" => "menu_demande_avis",
294 );
295 //
296 $links = array();
297 //
298 $links[] = array(
299 "href" => "../scr/tab.php?obj=demande_avis_encours",
300 "class" => "demande_avis_encours",
301 "title" => _("Demandes en cours"),
302 "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
303 "open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ),
304 );
305
306 $links[] = array(
307 "href" => "../scr/tab.php?obj=demande_avis_passee",
308 "class" => "demande_avis_passee",
309 "title" => _("Demandes passees"),
310 "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
311 "open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ),
312 );
313
314 $links[] = array(
315 "href" => "../scr/tab.php?obj=demande_avis",
316 "class" => "demande_avis",
317 "title" => _("Exports"),
318 "right" => array("demande_avis", "demande_avis_tab", ),
319 "open" => array("tab.php|demande_avis", "form.php|demande_avis", ),
320 );
321
322 //
323 $rubrik['links'] = $links;
324 //
325 $menu[] = $rubrik;
326 // }}}
327
328
329
330 // {{{ Rubrique EXPORT
331 //
332 $rubrik = array(
333 "title" => _("export"),
334 "class" => "edition",
335 "right" => "menu_export",
336 );
337 //
338 $links = array();
339 //
340 $links[] = array(
341 "href" => "../scr/edition.php",
342 "class" => "edition",
343 "title" => _("edition"),
344 "right" => "edition",
345 "open" => "edition.php|",
346 );
347 //
348 $links[] = array(
349 "href" => "../app/edition_p.php",
350 "class" => "edition",
351 "title" => _("edition date depot"),
352 "right" => "edition_p",
353 "open" => "edition_p.php|",
354 );
355 //
356 $links[] = array(
357 "href" => "../app/edition_d.php",
358 "class" => "edition",
359 "title" => _("edition date decision"),
360 "right" => "edition_d",
361 "open" => "edition_d.php|",
362 );
363 //
364 $links[] = array(
365 "title" => "<hr/>",
366 "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),
367 );
368 //
369 $links[] = array(
370 "href" => "../scr/reqmo.php",
371 "class" => "reqmo",
372 "title" => _("requetes memorisees"),
373 "right" => "reqmo",
374 "open" => array("reqmo.php|", "requeteur.php|", ),
375 );
376 //
377 $links[] = array(
378 "href" => "../app/export_pc.php",
379 "class" => "reqmo",
380 "title" => _("export PC Lascot"),
381 "right" => "export_pc",
382 "open" => "export_pc.php|",
383 );
384 //
385 $links[] = array(
386 "href" => "../app/export_dp.php",
387 "class" => "reqmo",
388 "title" => _("export DP Lascot"),
389 "right" => "export_dp",
390 "open" => "export_dp.php|",
391 );
392 //
393 $links[] = array(
394 "href" => "../app/sitadel.php",
395 "class" => "reqmo",
396 "title" => _("export sitadel")." 2",
397 "right" => "export_sitadel",
398 "open" => "sitadel.php|",
399 );
400 //
401 $rubrik['links'] = $links;
402 //
403 $menu[] = $rubrik;
404 // }}}
405
406 // {{{ Rubrique PARAMETRAGE
407 //
408 $rubrik = array(
409 "title" => _("parametrage"),
410 "class" => "parametrage",
411 "right" => "menu_parametrage",
412 );
413 //
414 $links = array();
415 //
416 // GENERAUX
417 $links[] = array(
418 "href" => "../scr/form.php?obj=dossier_numeromanuel",
419 "class" => "traitement",
420 "title" => _("numero manuel"),
421 "right" => "dossier_numeromanuel",
422 "open" => "|dossier_numeromanuel",
423 );
424 //
425 $links[] = array(
426 "href" => "../app/num_dossier.php",
427 "class" => "traitement",
428 "title" => _("remise a 0"),
429 "right" => "num_dossier",
430 "open" => "num_dossier.php|",
431 );
432 //
433 $links[] = array(
434 "title" => "<hr/>",
435 "right" => array(
436 "architecte", "architecte_tab", "service", "service_tab", "instructeur",
437 "instructeur_tab", "service_categorie", "service_categorie_tab",
438 "lien_service_service_categorie", "lien_service_service_categorie_tab",
439 "lien_localisation_nature", "lien_localisation_nature_tab",
440 "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",
441 "destination", "destination_tab", "nature", "nature_tab", "rivoli",
442 "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",
443 "dossier_autorisation","dossier_autorisation_tab",
444 "dossier_autorisation_type","dossier_autorisation_type_tab",
445 "dossier_autorisation_type_detaille","dossier_autorisation_type_detaille_tab",
446 "dossier_instruction_type","dossier_instruction_type_tab",
447 "lien_evenement_dossier_instruction_type","lien_evenement_dossier_instruction_type_tab",
448 "autorite_competente","autorite_competente_tab",
449 ),
450 );
451 //
452 $links[] = array(
453 "href" => "../scr/tab.php?obj=architecte",
454 "class" => "architecte",
455 "title" => _("architecte"),
456 "right" => array("architecte", "architecte_tab", ),
457 "open" => array("tab.php|architecte", "form.php|architecte", ),
458 );
459 //
460 $links[] = array(
461 "href" => "../scr/tab.php?obj=service",
462 "class" => "service",
463 "title" => _("service"),
464 "right" => array("service", "service_tab", ),
465 "open" => array("tab.php|service", "form.php|service", ),
466 );
467 $links[] = array(
468 "href" => "../scr/tab.php?obj=service_categorie",
469 "class" => "service_categorie",
470 "title" => _("thematique des services"),
471 "right" => array("service_categorie", "service_categorie_tab", ),
472 "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
473 );
474 $links[] = array(
475 "href" => "../scr/tab.php?obj=lien_service_service_categorie",
476 "class" => "lien_service_service_categorie",
477 "title" => _("Lien service / thematique"),
478 "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),
479 "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),
480 );
481 //
482 $links[] = array(
483 "href" => "../scr/tab.php?obj=instructeur",
484 "class" => "instructeur",
485 "title" => _("instructeur"),
486 "right" => array("instructeur", "instructeur_tab", ),
487 "open" => array("tab.php|instructeur", "form.php|instructeur", ),
488 );
489 //
490 $links[] = array(
491 "href" => "../scr/tab.php?obj=lien_localisation_nature",
492 "class" => "lien_localisation_nature",
493 "title" => _("Lien instructeur / localisation / type de dossier"),
494 "right" => array("lien_localisation_nature", "lien_localisation_nature_tab", ),
495 "open" => array("tab.php|lien_localisation_nature", "form.php|lien_localisation_nature", ),
496 );
497 //
498 $links[] = array(
499 "href" => "../scr/tab.php?obj=travaux",
500 "class" => "travaux",
501 "title" => _("travaux"),
502 "right" => array("travaux", "travaux_tab", ),
503 "open" => array("tab.php|travaux", "form.php|travaux", ),
504 );
505 //
506 $links[] = array(
507 "href" => "../scr/tab.php?obj=categorie_demandeur",
508 "class" => "categorie_demandeur",
509 "title" => _("categorie_demandeur"),
510 "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),
511 "open" => array(
512 "tab.php|categorie_demandeur", "form.php|categorie_demandeur",
513 ),
514 );
515 //
516 $links[] = array(
517 "href" => "../scr/tab.php?obj=destination",
518 "class" => "destination",
519 "title" => _("destination"),
520 "right" => array("destination", "destination_tab", ),
521 "open" => array("tab.php|destination", "form.php|destination", ),
522 );
523 //
524 $links[] = array(
525 "href" => "../scr/tab.php?obj=nature",
526 "class" => "nature",
527 "title" => _("nature"),
528 "right" => array("nature", "nature_tab", ),
529 "open" => array("tab.php|nature", "form.php|nature", ),
530 );
531 //
532 $links[] = array(
533 "href" => "../scr/tab.php?obj=rivoli",
534 "class" => "rivoli",
535 "title" => _("rivoli"),
536 "right" => array("rivoli", "rivoli_tab", ),
537 "open" => array("tab.php|rivoli", "form.php|rivoli", ),
538 );
539 //
540 $links[] = array(
541 "href" => "../scr/tab.php?obj=civilite",
542 "class" => "civilite",
543 "title" => _("civilite"),
544 "right" => array("civilite", "civilite_tab", ),
545 "open" => array("tab.php|civilite", "form.php|civilite", ),
546 );
547 //
548 $links[] = array(
549 "href" => "../scr/tab.php?obj=parametre",
550 "class" => "parametre",
551 "title" => _("parametre")." "._("statistique"),
552 "right" => array("parametre", "parametre_tab", ),
553 "open" => array("tab.php|parametre", "form.php|parametre", ),
554 );
555 //
556 $links[] = array(
557 "href" => "../scr/tab.php?obj=dossier_autorisation",
558 "class" => "dossier_autorisation",
559 "title" => _("dossier")." ".("autorisation"),
560 "right" => array("dossier_autorisation", "dossier_autorisation_tab", ),
561 "open" => array("tab.php|dossier_autorisation", "form.php|dossier_autorisation", ),
562 );
563 //
564 $links[] = array(
565 "href" => "../scr/tab.php?obj=dossier_autorisation_type",
566 "class" => "dossier_autorisation_type",
567 "title" => _("dossier")." ".("autorisation")." "._("type"),
568 "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
569 "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
570 );
571 //
572 $links[] = array(
573 "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
574 "class" => "dossier_autorisation_type_detaille",
575 "title" => _("dossier")." ".("autorisation")." "._("type")." "._("detaille"),
576 "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
577 "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
578 );
579 //
580 $links[] = array(
581 "href" => "../scr/tab.php?obj=dossier_instruction_type",
582 "class" => "dossier_instruction_type",
583 "title" => _("dossier")." "._("instruction")." "._("type"),
584 "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
585 "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
586 );
587 //
588 $links[] = array(
589 "href" => "../scr/tab.php?obj=lien_evenement_dossier_autorisation_type",
590 "class" => "lien_evenement_dossier_autorisation_type",
591 "title" => _("lien")." "._("evenement")." "._("dossier")." "._("autorisation")." "._("type"),
592 "right" => array("lien_evenement_dossier_autorisation_type", "lien_evenement_dossier_autorisation_type_tab", ),
593 "open" => array("tab.php|lien_evenement_dossier_autorisation_type", "form.php|lien_evenement_dossier_autorisation_type", ),
594 );
595
596
597 //
598 $links[] = array(
599 "href" => "../scr/tab.php?obj=autorite_competente",
600 "class" => "autorite_competente",
601 "title" => _("autorite")." "._("competente"),
602 "right" => array("autorite_competente", "autorite_competente_tab", ),
603 "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
604 );
605 //
606 $links[] = array(
607 "class" => "category",
608 "title" => _("workflows"),
609 "right" => array(
610 "action", "action_tab", "transition", "transition_tab", "etat",
611 "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
612 "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
613 ),
614 );
615 //
616 $links[] = array(
617 "title" => "<hr/>",
618 "right" => array(
619 "action", "action_tab", "transition", "transition_tab", "etat",
620 "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
621 "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
622 ),
623 );
624 //
625 $links[] = array(
626 "href" => "../scr/tab.php?obj=action",
627 "class" => "action",
628 "title" => _("action"),
629 "right" => array("action", "action_tab", ),
630 "open" => array("tab.php|action", "form.php|action", ),
631 );
632 //
633 $links[] = array(
634 "href" => "../scr/tab.php?obj=transition",
635 "class" => "transition",
636 "title" => _("transition"),
637 "right" => array("transition", "transition_tab", ),
638 "open" => array("tab.php|transition", "form.php|transition", ),
639 );
640 //
641 $links[] = array(
642 "href" => "../scr/tab.php?obj=etat",
643 "class" => "etat",
644 "title" => _("etat"),
645 "right" => array("etat", "etat_tab", ),
646 "open" => array("tab.php|etat", "form.php|etat", ),
647 );
648 //
649 $links[] = array(
650 "href" => "../scr/tab.php?obj=evenement",
651 "class" => "evenement",
652 "title" => _("evenement"),
653 "right" => array("evenement", "evenement_tab", ),
654 "open" => array("tab.php|evenement", "form.php|evenement", ),
655 );
656 //
657 $links[] = array(
658 "href" => "../scr/tab.php?obj=bible",
659 "class" => "bible",
660 "title" => _("bible"),
661 "right" => array("bible", "bible_tab", ),
662 "open" => array("tab.php|bible", "form.php|bible", ),
663 );
664 //
665 $links[] = array(
666 "href" => "../scr/tab.php?obj=avis_decision",
667 "class" => "avis_decision",
668 "title" => _("avis decision"),
669 "right" => array("avis_decision", "avis_decision_tab", ),
670 "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
671 );
672 //
673 $links[] = array(
674 "href" => "../scr/tab.php?obj=avis_consultation",
675 "class" => "avis_consultation",
676 "title" => _("avis consultation"),
677 "right" => array("avis_consultation", "avis_consultation_tab", ),
678 "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
679 );
680 //
681 $links[] = array(
682 "class" => "category",
683 "title" => _("Organisation"),
684 "right" => array(
685 "direction", "direction_tab", "division", "division_tab", "instructeur",
686 "instructeur_tab", "groupe", "groupe_tab",
687 ),
688 );
689 $links[] = array(
690 "title" => "<hr/>",
691 "right" => array(
692 "direction", "direction_tab", "division", "division_tab", "instructeur",
693 "instructeur_tab", "groupe", "groupe_tab",
694 ),
695 );
696 //
697 $links[] = array(
698 "href" => "../scr/tab.php?obj=groupe",
699 "class" => "groupe",
700 "title" => _("groupe"),
701 "right" => array("groupe", "groupe_tab", ),
702 "open" => array("tab.php|groupe", "form.php|groupe", ),
703 );
704 //
705 $links[] = array(
706 "href" => "../scr/tab.php?obj=direction",
707 "class" => "direction",
708 "title" => _("direction"),
709 "right" => array("direction", "direction_tab", ),
710 "open" => array("tab.php|direction", "form.php|direction", ),
711 );
712 //
713 $links[] = array(
714 "href" => "../scr/tab.php?obj=division",
715 "class" => "division",
716 "title" => _("division"),
717 "right" => array("division", "division_tab", ),
718 "open" => array("tab.php|division", "form.php|division", ),
719 );
720 //
721 $links[] = array(
722 "href" => "../scr/tab.php?obj=instructeur",
723 "class" => "instructeur",
724 "title" => _("instructeur"),
725 "right" => array("instructeur", "instructeur_tab", ),
726 "open" => array("tab.php|instructeur", "form.php|instructeur", ),
727 );
728 //
729 $links[] = array(
730 "class" => "category",
731 "title" => _("guichet unique"),
732 "right" => array(
733 "demande_genre", "demande_genre_tab", "demande_type",
734 "demande_type_tab", "demande_nature", "demande_nature_tab",
735 ),
736 );
737 //
738 $links[] = array(
739 "title" => "<hr/>",
740 "right" => array(
741 "demande_genre", "demande_genre_tab", "demande_type",
742 "demande_type_tab", "demande_nature", "demande_nature_tab",
743 ),
744 );
745 //
746 $links[] = array(
747 "href" => "../scr/tab.php?obj=demande_nature",
748 "class" => "demande_nature",
749 "title" => _("nature de la demande"),
750 "right" => array("demande_nature", "demande_nature_tab", ),
751 "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
752 );
753 //
754 $links[] = array(
755 "href" => "../scr/tab.php?obj=demande_genre",
756 "class" => "demande_genre",
757 "title" => _("genre de la demande"),
758 "right" => array("demande_genre", "demande_genre_tab", ),
759 "open" => array("tab.php|demande_genre", "form.php|demande_genre", ),
760 );
761 //
762 $links[] = array(
763 "href" => "../scr/tab.php?obj=demande_type",
764 "class" => "demande_type",
765 "title" => _("type de la demande"),
766 "right" => array("demande_type", "demande_type_tab",),
767 "open" => array("tab.php|demande_type", "form.php|demande_type", ),
768 );
769 //
770 $links[] = array(
771 "class" => "category",
772 "title" => _("editions"),
773 "right" => array(
774 "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
775 "om_lettretype", "om_lettretype_tab",
776 ),
777 );
778 //
779 $links[] = array(
780 "title" => "<hr/>",
781 "right" => array(
782 "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
783 "om_lettretype", "om_lettretype_tab",
784 ),
785 );
786 //
787 $links[] = array(
788 "href" => "../scr/tab.php?obj=om_etat",
789 "class" => "etat",
790 "title" => _("om_etat"),
791 "right" => array("om_etat", "om_etat_tab", ),
792 "open" => array("tab.php|om_etat", "form.php|om_etat", ),
793 );
794 //
795 $links[] = array(
796 "href" => "../scr/tab.php?obj=om_sousetat",
797 "class" => "sousetat",
798 "title" => _("om_sousetat"),
799 "right" => array("om_sousetat", "om_sousetat_tab", ),
800 "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
801 );
802 //
803 $links[] = array(
804 "href" => "../scr/tab.php?obj=om_lettretype",
805 "class" => "lettretype",
806 "title" => _("om_lettretype"),
807 "right" => array("om_lettretype", "om_lettretype_tab"),
808 "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
809 );
810 //
811 $rubrik['links'] = $links;
812 //
813 $menu[] = $rubrik;
814 // }}}
815
816 // {{{ Rubrique SIG
817 //
818 $rubrik = array(
819 "title" => _("sig"),
820 "class" => "sig",
821 "right" => "menu_sig",
822 );
823 //
824 $links = array();
825 //
826 $links[] = array(
827 "href" => "../scr/tab.php?obj=parcelle",
828 "class" => "parcelle",
829 "title" => _("parcelle"),
830 "right" => array("parcelle", "parcelle_tab"),
831 "open" => array("tab.php|parcelle", "form.php|parcelle", ),
832 );
833 //
834 $links[] = array(
835 "href" => "../scr/tab.php?obj=proprietaire",
836 "class" => "proprietaire",
837 "title" => _("proprietaire"),
838 "right" => array("proprietaire", "proprietaire_tab"),
839 "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
840 );
841 //
842 $links[] = array(
843 "class" => "category",
844 "title" => _("servitudes"),
845 "right" => array(
846 "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
847 "servitude_ligne", "servitude_ligne_tab", "servitude_point",
848 "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
849 ),
850 );
851 //
852 $links[] = array(
853 "title" => "<hr/>",
854 "right" => array(
855 "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
856 "servitude_ligne", "servitude_ligne_tab", "servitude_point",
857 "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
858 ),
859 );
860 //
861 $links[] = array(
862 "href" => "../scr/tab.php?obj=pos",
863 "class" => "pos",
864 "title" => _("pos"),
865 "right" => array("pos", "pos_tab"),
866 "open" => array("tab.php|pos", "form.php|pos", ),
867 );
868 //
869 $links[] = array(
870 "href" => "../scr/tab.php?obj=servitude_surfacique",
871 "class" => "servitude_surfacique",
872 "title" => _("servitude_surfacique"),
873 "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
874 "open" => array(
875 "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
876 ),
877 );
878 //
879 $links[] = array(
880 "href" => "../scr/tab.php?obj=servitude_ligne",
881 "class" => "servitude_ligne",
882 "title" => _("servitude_ligne"),
883 "right" => array("servitude_ligne", "servitude_ligne_tab"),
884 "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
885 );
886 //
887 $links[] = array(
888 "href" => "../scr/tab.php?obj=servitude_point",
889 "class" => "servitude_point",
890 "title" => _("servitude_point"),
891 "right" => array("servitude_point", "servitude_point_tab"),
892 "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
893 );
894 //
895 $links[] = array(
896 "href" => "../scr/tab.php?obj=parcelle_lot",
897 "class" => "parcelle_lot",
898 "title" => _("parcelle_lot"),
899 "right" => array("parcelle_lot", "parcelle_lot_tab"),
900 "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
901 );
902 //
903 $rubrik['links'] = $links;
904 //
905 $menu[] = $rubrik;
906 // }}}
907
908 // {{{ Rubrique ADMINISTRATION
909 //
910 $rubrik = array(
911 "title" => _("administration"),
912 "class" => "administration",
913 "right" => "menu_administration",
914 );
915 //
916 $links = array();
917 //
918 $links[] = array(
919 "href" => "../scr/tab.php?obj=om_collectivite",
920 "class" => "collectivite",
921 "title" => _("om_collectivite"),
922 "right" => array("om_collectivite", "om_collectivite_tab", ),
923 "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
924 );
925 //
926 $links[] = array(
927 "href" => "../scr/tab.php?obj=om_parametre",
928 "class" => "parametre",
929 "title" => _("om_parametre"),
930 "right" => array("om_parametre", "om_parametre_tab", ),
931 "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
932 );
933 //
934 $links[] = array(
935 "class" => "category",
936 "title" => _("gestion des utilisateurs"),
937 "right" => array(
938 "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
939 "om_droit", "om_droit_tab", "directory",
940 ),
941 );
942 //
943 $links[] = array(
944 "title" => "<hr/>",
945 "right" => array(
946 "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
947 "om_droit", "om_droit_tab",
948 ),
949 );
950 //
951 $links[] = array(
952 "href" => "../scr/tab.php?obj=om_profil",
953 "class" => "profil",
954 "title" => _("om_profil"),
955 "right" => array("om_profil", "om_profil_tab", ),
956 "open" => array("tab.php|om_profil", "form.php|om_profil", ),
957 );
958 //
959 $links[] = array(
960 "href" => "../scr/tab.php?obj=om_droit",
961 "class" => "droit",
962 "title" => _("om_droit"),
963 "right" => array("om_droit", "om_droit_tab", ),
964 "open" => array("tab.php|om_droit", "form.php|om_droit", ),
965 );
966 //
967 $links[] = array(
968 "href" => "../scr/tab.php?obj=om_utilisateur",
969 "class" => "utilisateur",
970 "title" => _("om_utilisateur"),
971 "right" => array("om_utilisateur", "om_utilisateur_tab", ),
972 "open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ),
973 );
974 //
975 $links[] = array(
976 "title" => "<hr/>",
977 "right" => array("directory", ),
978 "parameters" => array("isDirectoryOptionEnabled" => true, ),
979 );
980 //
981 $links[] = array(
982 "href" => "../scr/directory.php",
983 "class" => "directory",
984 "title" => _("annuaire"),
985 "right" => array("directory", ),
986 "open" => array("directory.php|", ),
987 "parameters" => array("isDirectoryOptionEnabled" => true, ),
988 );
989 //
990 $links[] = array(
991 "class" => "category",
992 "title" => _("tableaux de bord"),
993 "right" => array(
994 "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
995 ),
996 );
997 //
998 $links[] = array(
999 "title" => "<hr/>",
1000 "right" => array(
1001 "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1002 ),
1003 );
1004 //
1005 $links[] = array(
1006 "href" => "../scr/tab.php?obj=om_widget",
1007 "class" => "om_widget",
1008 "title" => _("om_widget"),
1009 "right" => array("om_widget", "om_widget_tab", ),
1010 "open" => array("tab.php|om_widget", "form.php|om_widget", ),
1011 );
1012 //
1013 $links[] = array(
1014 "href" => "../scr/tab.php?obj=om_dashboard",
1015 "class" => "om_dashboard",
1016 "title" => _("om_dashboard"),
1017 "right" => array( ),
1018 "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),
1019 );
1020 //
1021 $links[] = array(
1022 "class" => "category",
1023 "title" => _("sig"),
1024 "right" => array(
1025 "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1026 ),
1027 );
1028 //
1029 $links[] = array(
1030 "title" => "<hr/>",
1031 "right" => array(
1032 "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1033 ),
1034 );
1035 //
1036 $links[] = array(
1037 "href" => "../scr/tab.php?obj=om_sig_map",
1038 "class" => "om_sig_map",
1039 "title" => _("om_sig_map"),
1040 "right" => array("om_sig_map", "om_sig_map_tab", ),
1041 "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1042 );
1043 //
1044 $links[] = array(
1045 "href" => "../scr/tab.php?obj=om_sig_wms",
1046 "class" => "om_sig_wms",
1047 "title" => _("om_sig_wms"),
1048 "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1049 "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1050 );
1051 //
1052 $links[] = array(
1053 "class" => "category",
1054 "title" => _("options avancees"),
1055 "right" => array("import", "gen", ),
1056 );
1057 //
1058 $links[] = array(
1059 "title" => "<hr/>",
1060 "right" => array("import", ),
1061 );
1062 //
1063 $links[] = array(
1064 "href" => "../scr/import.php",
1065 "class" => "import",
1066 "title" => _("Import"),
1067 "right" => array("import", ),
1068 "open" => array("import.php|", ),
1069 );
1070 //
1071 $links[] = array(
1072 "title" => "<hr/>",
1073 "right" => array("gen", ),
1074 );
1075 //
1076 $links[] = array(
1077 "title" => _("Generateur"),
1078 "href" => "../scr/gen.php",
1079 "class" => "generator",
1080 "right" => array("gen", ),
1081 "open" => array(
1082 "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1083 "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1084 "genimport.php|",
1085 ),
1086 );
1087 //
1088 $rubrik['links'] = $links;
1089 //
1090 $menu[] = $rubrik;
1091 // }}}
1092
1093 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26