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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1226 - (hide annotations)
Wed Jan 16 09:37:40 2013 UTC (12 years ago) by vpihour
File size: 36760 byte(s)
Ajout d'une nouvelle table "signataire_arrete", ajout d'une clé étrangère dans "instruction" et ajout d'une entrée de menu dans le paramétrage pour "signataire_arrete"

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26