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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2327 - (hide annotations)
Fri Sep 20 11:56:47 2013 UTC (11 years, 4 months ago) by fmichon
File size: 44998 byte(s)
Mise à niveau openmairie_exemple 4.4.0

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26