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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2735 - (hide annotations)
Thu Feb 13 18:45:04 2014 UTC (10 years, 11 months ago) by softime
File size: 47411 byte(s)
Vérification du paramètre sur les entrées Contrainte et Synchronisation des contraintes du menu

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26