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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7996 - (hide annotations)
Fri Jul 20 17:12:33 2018 UTC (6 years, 6 months ago) by softime
File size: 62275 byte(s)
* Merge de la branche d'intégration 4.7.0 vers le trunk

1 mbroquet 3730 <?php
2     /**
3     * Ce fichier permet de configurer quelles actions vont etre disponibles
4     * dans le menu.
5     *
6     * @package openmairie_exemple
7     * @version SVN : $Id: menu.inc.php 5935 2016-02-15 08:16:02Z fmichon $
8     */
9    
10     /**
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 softime 7996 * open => array("index.php|users[module=tab]", "index.php|users[module=form]"),
45 mbroquet 3730 * open => "|users"
46     * open => "script.php|"
47     */
48     //
49     $menu = array();
50    
51     // {{{ Rubrique AUTORISATION
52     //
53     $rubrik = array(
54     "title" => _("Autorisation"),
55     "class" => "autorisation",
56     "right" => "menu_autorisation",
57     );
58     //
59     $links = array();
60    
61     $links[] = array(
62 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation",
63 mbroquet 3730 "class" => "dossier_autorisation",
64     "title" => _("Dossiers d'autorisation"),
65     "right" => array("dossier_autorisation", "dossier_autorisation_tab", ),
66 softime 7996 "open" => array("index.php|dossier_autorisation[module=tab]", "index.php|dossier_autorisation[module=form]", ),
67 mbroquet 3730 );
68    
69     // Lien vers les dossiers d'autorisations qui ont une demande d'avis
70     $links[] = array(
71 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_avis",
72 mbroquet 3730 "class" => "dossier_autorisation",
73     "title" => _("Dossiers d'autorisation"),
74 softime 4667 "right" => array(
75     "dossier_autorisation_avis",
76     "dossier_autorisation_avis_tab",
77     ),
78 softime 7996 "open" => array("index.php|dossier_autorisation_avis[module=tab]", "index.php|dossier_autorisation[module=form]", ),
79 mbroquet 3730 );
80    
81     //
82     $rubrik['links'] = $links;
83     //
84     $menu[] = $rubrik;
85     // }}}
86    
87     // {{{ Rubrique GUICHET UNIQUE
88     //
89     $rubrik = array(
90     "title" => _("Guichet Unique"),
91     "class" => "guichet_unique",
92     "right" => "menu_guichet_unique",
93     );
94     //
95     $links = array();
96     //
97     $links[] = array(
98 softime 7996 "href" => OM_ROUTE_DASHBOARD,
99 mbroquet 3730 "class" => "tableau-de-bord",
100     "title" => _("tableau de bord"),
101     "right" => "menu_guichet_unique_dashboard",
102 softime 7996 "open" => array("index.php|[module=dashboard]",),
103 mbroquet 3730 );
104     //
105     $links[] = array(
106     "class" => "category",
107     "title" => _("nouvelle demande"),
108     "right" => array(
109 softime 4667 "demande",
110 mbroquet 3730 "demande_nouveau_dossier_ajouter",
111     "demande_dossier_encours_ajouter", "demande_dossier_encours_tab",
112     "demande_autre_dossier_ajouter", "demande_autre_dossier_tab",
113     "demande_consulter","demande_tab",
114     ),
115     );
116     $links[] = array(
117     "title" => "<hr/>",
118     "right" => array(
119 softime 4667 "demande",
120 mbroquet 3730 "demande_dossier_encours_ajouter",
121     "demande_dossier_encours_ajouter", "demande_dossier_encours_tab",
122     ),
123     );
124     $links[] = array(
125 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
126 mbroquet 3730 "class" => "nouveau-dossier",
127     "title" => _("nouveau dossier"),
128     "right" => array(
129 softime 4667 "demande",
130 mbroquet 3730 "demande_nouveau_dossier_ajouter",
131     ),
132 softime 7996 "open" => array("index.php|demande_nouveau_dossier[module=form]",),
133 mbroquet 3730 );
134     $links[] = array(
135 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_dossier_encours",
136 mbroquet 3730 "class" => "dossier-existant",
137     "title" => _("dossier en cours"),
138     "right" => array(
139 softime 4667 "demande",
140     "demande_dossier_encours_ajouter",
141     "demande_dossier_encours_tab",
142 mbroquet 3730 ),
143 softime 7996 "open" => array("index.php|demande_dossier_encours[module=tab]", "index.php|demande_dossier_encours[module=form]"),
144 mbroquet 3730 );
145     $links[] = array(
146 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_autre_dossier",
147 mbroquet 3730 "class" => "autre-dossier",
148     "title" => _("autre dossier"),
149     "right" => array(
150 softime 4667 "demande",
151     "demande_autre_dossier_ajouter",
152     "demande_autre_dossier_tab",
153 mbroquet 3730 ),
154 softime 7996 "open" => array("index.php|demande_autre_dossier[module=tab]", "index.php|demande_autre_dossier[module=form]"),
155 mbroquet 3730 );
156     $links[] = array(
157     "title" => "<hr/>",
158     "right" => array(
159 softime 4667 "demande",
160     "demande_consulter",
161     "demande_tab"
162 mbroquet 3730 ),
163     );
164     $links[] = array(
165 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande",
166 mbroquet 3730 "class" => "pdf",
167     "title" => _("recepisse"),
168     "right" => array(
169 softime 4667 "demande",
170     "demande_consulter",
171     "demande_tab"
172 mbroquet 3730 ),
173 softime 7996 "open" => array("index.php|demande[module=tab]","index.php|demande[module=form]"),
174 mbroquet 3730 );
175     $links[] = array(
176     "title" => "<hr/>",
177     "right" => array(
178 softime 4667 "petitionnaire_frequent",
179     "petitionnaire_frequent_consulter",
180     "petitionnaire_frequent_tab"
181 mbroquet 3730 ),
182     );
183     $links[] = array(
184 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=petitionnaire_frequent",
185 mbroquet 3730 "class" => "petitionnaire_frequent",
186     "title" => _("petitionnaire_frequent"),
187     "right" => array(
188 softime 4667 "petitionnaire_frequent",
189     "petitionnaire_frequent_consulter",
190     "petitionnaire_frequent_tab"
191 mbroquet 3730 ),
192 softime 7996 "open" => array("index.php|petitionnaire_frequent[module=tab]","index.php|petitionnaire_frequent[module=form]"),
193 mbroquet 3730 );
194     //
195     $links[] = array(
196     "class" => "category",
197     "title" => _("affichage reglementaire"),
198     "right" => array(
199     "affichage_reglementaire_registre",
200     "affichage_reglementaire_attestation",
201     ),
202     );
203     $links[] = array(
204     "title" => "<hr/>",
205     "right" => array(
206     "affichage_reglementaire_registre",
207     "affichage_reglementaire_attestation",
208     ),
209     );
210     $links[] = array(
211 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_registre&action=110&idx=0",
212 jymadier 4102 "class" => "affichage_reglementaire_registre",
213 mbroquet 3730 "title" => _("registre"),
214     "right" => array(
215     "affichage_reglementaire_registre",
216     ),
217 softime 7996 "open" => array("index.php|demande_affichage_reglementaire_registre[module=tab]", "index.php|demande_affichage_reglementaire_registre[module=form]"),
218 mbroquet 3730 );
219     $links[] = array(
220 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_attestation&action=120&idx=0",
221 jymadier 4102 "class" => "affichage_reglementaire_attestation",
222 mbroquet 3730 "title" => _("attestation"),
223     "right" => array(
224     "affichage_reglementaire_attestation",
225     ),
226 softime 7996 "open" => array("index.php|demande_affichage_reglementaire_attestation[module=tab]", "index.php|demande_affichage_reglementaire_attestation[module=form]"),
227 mbroquet 3730 );
228     //
229     $rubrik['links'] = $links;
230     //
231     $menu[] = $rubrik;
232     // }}}
233    
234     // {{{ Rubrique QUALIFICATION
235     //
236     $rubrik = array(
237     "title" => _("Qualification"),
238     "class" => "qualification",
239     "right" => "qualification_menu",
240     );
241     //
242     $links = array();
243     //
244     $links[] = array(
245 softime 7996 "href" => OM_ROUTE_DASHBOARD,
246 mbroquet 3730 "class" => "tableau-de-bord",
247     "title" => _("tableau de bord"),
248     "right" => "menu_qualification_dashboard",
249 softime 7996 "open" => array("index.php|[module=dashboard]",),
250 mbroquet 3730 );
251    
252     //
253     $links[] = array(
254 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier_qualificateur",
255 mbroquet 3730 "class" => "dossier_qualifier_qualificateur",
256     "title" => _("dossiers a qualifier"),
257 softime 4667 "right" => array(
258     "dossier_qualifier_qualificateur",
259     "dossier_qualifier_qualificateur_tab",
260     ),
261 softime 7996 "open" => array("index.php|dossier_qualifier_qualificateur[module=tab]", "index.php|dossier_instruction[module=form]", ),
262 mbroquet 3730 );
263    
264     //
265     $rubrik['links'] = $links;
266     //
267     $menu[] = $rubrik;
268     // }}}
269    
270     // {{{ Rubrique INSTRUCTION
271     //
272     $rubrik = array(
273     "title" => _("instruction"),
274     "class" => "instruction",
275     "right" => "menu_instruction",
276     );
277     //
278     $links = array();
279     //
280     $links[] = array(
281 softime 7996 "href" => OM_ROUTE_DASHBOARD,
282 mbroquet 3730 "class" => "tableau-de-bord",
283     "title" => _("tableau de bord"),
284     "right" => "menu_instruction_dashboard",
285 softime 7996 "open" => array("index.php|[module=dashboard]",),
286 mbroquet 3730 );
287     // Catégorie DOSSIERS D'INSTRUCTION
288     $links[] = array(
289     "class" => "category",
290     "title" => _("dossiers d'instruction"),
291     "right" => array(
292     "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
293     "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
294     "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
295     "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
296     "dossier_instruction", "dossier_instruction_tab",
297     "PC_modificatif", "PC_modificatif_tab",
298     ),
299     );
300     $links[] = array(
301     "title" => "<hr/>",
302     "right" => array(
303     "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
304     "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
305     ),
306     );
307     //
308     $links[] = array(
309 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_encours",
310 mbroquet 3730 "class" => "dossier_instruction_mes_encours",
311     "title" => _("mes encours"),
312     "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
313 softime 7996 "open" => array("index.php|dossier_instruction_mes_encours[module=tab]", "index.php|dossier_instruction_mes_encours[module=form]", ),
314 mbroquet 3730 );
315     //
316     $links[] = array(
317 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_encours",
318 mbroquet 3730 "class" => "dossier_instruction_tous_encours",
319     "title" => _("tous les encours"),
320     "right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ),
321 softime 7996 "open" => array("index.php|dossier_instruction_tous_encours[module=tab]", "index.php|dossier_instruction_tous_encours[module=form]", ),
322 mbroquet 3730 );
323     //
324     $links[] = array(
325     "title" => "<hr/>",
326     "right" => array(
327     "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
328     "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
329     ),
330     );
331     //
332     $links[] = array(
333 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_clotures",
334 mbroquet 3730 "class" => "dossier_instruction_mes_clotures",
335     "title" => _("mes clotures"),
336     "right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ),
337 softime 7996 "open" => array("index.php|dossier_instruction_mes_clotures[module=tab]", "index.php|dossier_instruction_mes_clotures[module=form]", ),
338 mbroquet 3730 );
339     //
340     $links[] = array(
341 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_clotures",
342 mbroquet 3730 "class" => "dossier_instruction_tous_clotures",
343     "title" => _("tous les clotures"),
344     "right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ),
345 softime 7996 "open" => array("index.php|dossier_instruction_tous_clotures[module=tab]", "index.php|dossier_instruction_tous_clotures[module=form]", ),
346 mbroquet 3730 );
347     //
348     $links[] = array(
349     "title" => "<hr/>",
350     "right" => array(
351     "dossier_instruction", "dossier_instruction_tab",
352     ),
353     );
354     //
355     $links[] = array(
356 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_instruction",
357 mbroquet 3730 "class" => "dossier_instruction_recherche",
358     "title" => _("recherche"),
359     "right" => array("dossier_instruction", "dossier_instruction_tab", ),
360 softime 7996 "open" => array("index.php|dossier_instruction[module=tab]", "index.php|dossier_instruction[module=form]", ),
361 mbroquet 3730 );
362    
363     // Catégorier Qualification
364     $links[] = array(
365     "class" => "category",
366     "title" => _("qualification"),
367     "right" => array("dossier_qualifier", "architecte_frequent",),
368     );
369     //
370     $links[] = array(
371     "title" => "<hr/>",
372     "right" => array("dossier_qualifier", "architecte_frequent", ),
373     );
374     //
375     $links[] = array(
376 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier",
377 mbroquet 3730 "class" => "dossier_qualifier",
378     "title" => _("dossiers a qualifier"),
379     "right" => array("dossier_qualifier", "dossier_qualifier_tab", ),
380 softime 7996 "open" => array("index.php|dossier_qualifier[module=tab]", "index.php|dossier_qualifier[module=form]", ),
381 mbroquet 3730 );
382     //
383     $links[] = array(
384 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=architecte_frequent",
385 mbroquet 3730 "class" => "architecte_frequent",
386     "title" => _("architecte_frequent"),
387     "right" => array("architecte_frequent", "architecte_frequent_tab", ),
388 softime 7996 "open" => array("index.php|architecte_frequent[module=tab]", "index.php|architecte_frequent[module=form]", ),
389 mbroquet 3730 );
390     // Catégorie CONSULTATIONS
391     $links[] = array(
392     "class" => "category",
393     "title" => _("consultations"),
394 jymadier 4132 "right" => array(
395 softime 4667 "consultation",
396     "consultation_mes_retours",
397     "consultation_retours_ma_division",
398     "consultation_tous_retours",
399 jymadier 4132 ),
400 mbroquet 3730 );
401     $links[] = array(
402     "title" => "<hr/>",
403 jymadier 4132 "right" => array(
404 softime 4667 "consultation",
405     "consultation_mes_retours",
406     "consultation_retours_ma_division",
407     "consultation_tous_retours",
408 jymadier 4132 ),
409 mbroquet 3730 );
410     $links[] = array(
411 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=consultation_mes_retours",
412 mbroquet 3730 "class" => "consultation_mes_retours",
413     "title" => _("Mes retours"),
414 softime 4667 "right" => array(
415     "consultation",
416     "consultation_mes_retours",
417     "consultation_mes_retours_tab",
418     ),
419 softime 7996 "open" => array("index.php|consultation_mes_retours[module=tab]", "index.php|consultation_mes_retours[module=form]", ),
420 mbroquet 3730 );
421     $links[] = array(
422 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=consultation_retours_ma_division",
423 jymadier 4132 "class" => "consultation_retours_ma_division",
424     "title" => _("Retours de ma division"),
425 softime 4667 "right" => array(
426     "consultation",
427     "consultation_retours_ma_division",
428     "consultation_retours_ma_division_tab",
429     ),
430 softime 7996 "open" => array("index.php|consultation_retours_ma_division[module=tab]", "index.php|consultation_retours_ma_division[module=form]", ),
431 jymadier 4132 );
432     $links[] = array(
433 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=consultation_tous_retours",
434 mbroquet 3730 "class" => "consultation_tous_retours",
435     "title" => _("Tous les retours"),
436 softime 4667 "right" => array(
437     "consultation_tous_retours",
438     "consultation_tous_retours_tab",
439     ),
440 softime 7996 "open" => array("index.php|consultation_tous_retours[module=tab]", "index.php|consultation_tous_retours[module=form]", ),
441 mbroquet 3730 );
442     // Catégorie MESSAGES
443     $links[] = array(
444     "class" => "category",
445     "title" => _("Messages"),
446 fmichon 4138 "right" => array(
447 softime 4667 "messages",
448     "messages_mes_retours",
449     "messages_retours_ma_division",
450     "messages_tous_retours",
451 fmichon 4138 ),
452 mbroquet 3730 );
453     //
454     $links[] = array(
455     "title" => "<hr/>",
456 fmichon 4138 "right" => array(
457 softime 4667 "messages",
458     "messages_mes_retours",
459     "messages_retours_ma_division",
460     "messages_tous_retours",
461 fmichon 4138 ),
462 mbroquet 3730 );
463     //
464     $links[] = array(
465 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=messages_mes_retours",
466 mbroquet 3730 "class" => "messages_mes_retours",
467     "title" => _("Mes messages"),
468 softime 4667 "right" => array(
469     "messages",
470     "messages_mes_retours",
471     "messages_mes_retours_tab",
472     ),
473 softime 7996 "open" => array("index.php|messages_mes_retours[module=tab]", "index.php|messages_mes_retours[module=form]", ),
474 mbroquet 3730 );
475     //
476     $links[] = array(
477 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=messages_retours_ma_division",
478 fmichon 4138 "class" => "messages_retours_ma_division",
479     "title" => _("Messages de ma division"),
480 softime 4667 "right" => array(
481     "messages",
482     "messages_retours_ma_division",
483     "messages_retours_ma_division_tab",
484     ),
485 softime 7996 "open" => array("index.php|messages_retours_ma_division[module=tab]", "index.php|messages_retours_ma_division[module=form]", ),
486 fmichon 4138 );
487     //
488     $links[] = array(
489 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=messages_tous_retours",
490 mbroquet 3730 "class" => "messages_tous_retours",
491     "title" => _("Tous les messages"),
492 softime 4667 "right" => array(
493     "messages",
494     "messages_tous_retours",
495     "messages_tous_retours_tab",
496     ),
497 softime 7996 "open" => array("index.php|messages_tous_retours[module=tab]", "index.php|messages_tous_retours[module=form]", ),
498 mbroquet 3730 );
499     // Catégorie COMMISSIONS
500     $links[] = array(
501     "class" => "category",
502     "title" => _("commissions"),
503     "right" => array(
504 softime 4667 "commission_mes_retours",
505     "commission_mes_retours_tab",
506 softime 6702 "commission_retours_ma_division",
507     "commission_retours_ma_division_tab",
508 softime 4667 "commission_tous_retours",
509     "commission_tous_retours_tab",
510 mbroquet 3730 ),
511     );
512     $links[] = array(
513     "title" => "<hr/>",
514     "right" => array(
515 softime 4667 "commission_mes_retours",
516     "commission_mes_retours_tab",
517 softime 6702 "commission_retours_ma_division",
518     "commission_retours_ma_division_tab",
519 softime 4667 "commission_tous_retours",
520     "commission_tous_retours_tab",
521 mbroquet 3730 ),
522     );
523     $links[] = array(
524 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=commission_mes_retours",
525 mbroquet 3730 "class" => "commission_mes_retours",
526     "title" => _("Mes retours"),
527 softime 4667 "right" => array(
528     "commission_mes_retours",
529     "commission_mes_retours_tab",
530     ),
531 softime 7996 "open" => array("index.php|commission_mes_retours[module=tab]", "index.php|commission_mes_retours[module=form]", ),
532 mbroquet 3730 );
533     $links[] = array(
534 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=commission_retours_ma_division",
535 softime 6702 "class" => "commission_retours_ma_division",
536     "title" => _("Retours de ma division"),
537     "right" => array(
538     "commission_retours_ma_division",
539     "commission_retours_ma_division_tab",
540     ),
541 softime 7996 "open" => array("index.php|commission_retours_ma_division[module=tab]", "index.php|commission_retours_ma_division[module=form]", ),
542 softime 6702 );
543     $links[] = array(
544 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=commission_tous_retours",
545 mbroquet 3730 "class" => "commission_tous_retours",
546     "title" => _("Tous les retours"),
547 softime 4667 "right" => array(
548     "commission_tous_retours",
549     "commission_tous_retours_tab",
550     ),
551 softime 7996 "open" => array("index.php|commission_tous_retours[module=tab]", "index.php|commission_tous_retours[module=form]", ),
552 mbroquet 3730 );
553    
554     //
555     $rubrik['links'] = $links;
556     //
557     $menu[] = $rubrik;
558     // }}}
559    
560 softime 6565 // {{{ Rubrique Contentieux
561     //
562     $rubrik = array(
563     "title" => _("Contentieux"),
564     "class" => "contentieux",
565     "right" => "menu_contentieux",
566     );
567     //
568     $links = array();
569     //
570     $links[] = array(
571 softime 7996 "href" => OM_ROUTE_DASHBOARD,
572 softime 6565 "class" => "tableau-de-bord",
573     "title" => _("tableau de bord"),
574     "right" => "menu_contentieux_dashboard",
575 softime 7996 "open" => array("index.php|[module=dashboard]", "index.php|dossier_contentieux_contradictoire[module=tab]", "index.php|dossier_contentieux_ait[module=tab]", "index.php|dossier_contentieux_audience[module=tab]", "index.php|dossier_contentieux_clotures[module=tab]", "index.php|dossier_contentieux_inaffectes[module=tab]", "index.php|dossier_contentieux_alerte_visite[module=tab]", "index.php|dossier_contentieux_alerte_parquet[module=tab]", ),
576 softime 6565 );
577     // Catégorie Nouvelle demande
578     $links[] = array(
579     "class" => "category",
580     "title" => _("Nouvelle demande"),
581     "right" => array(
582     "demande_nouveau_dossier_contentieux_ajouter",
583     ),
584     );
585     $links[] = array(
586 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier_contentieux&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
587 softime 6565 "class" => "nouveau-dossier",
588     "title" => _("nouveau dossier"),
589     "right" => array(
590     "demande_nouveau_dossier_contentieux_ajouter",
591     ),
592 softime 7996 "open" => array("index.php|demande_nouveau_dossier_contentieux[module=form]",),
593 softime 6565 );
594     // Catégorie Recours
595     $links[] = array(
596     "class" => "category",
597     "title" => _("Recours"),
598     "right" => array(
599     "dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab",
600     "dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab",
601     ),
602     );
603     //
604     $links[] = array(
605 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_recours",
606 softime 6565 "class" => "dossier_contentieux_mes_recours",
607     "title" => _("Mes recours"),
608     "right" => array("dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", ),
609 softime 7996 "open" => array("index.php|dossier_contentieux_mes_recours[module=tab]", "index.php|dossier_contentieux_mes_recours[module=form]", ),
610 softime 6565 );
611     $links[] = array(
612 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_tous_recours",
613 softime 6565 "class" => "dossier_contentieux_tous_recours",
614     "title" => _("Tous les recours"),
615     "right" => array("dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", ),
616 softime 7996 "open" => array("index.php|dossier_contentieux_tous_recours[module=tab]", "index.php|dossier_contentieux_tous_recours[module=form]", ),
617 softime 6565 );
618     // Catégorie Infractions
619     $links[] = array(
620     "class" => "category",
621     "title" => _("Infractions"),
622     "right" => array(
623     "dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab",
624     "dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab",
625     ),
626     );
627     //
628     $links[] = array(
629 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_infractions",
630 softime 6565 "class" => "dossier_contentieux_mes_infractions",
631     "title" => _("Mes infractions"),
632     "right" => array("dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", ),
633 softime 7996 "open" => array("index.php|dossier_contentieux_mes_infractions[module=tab]", "index.php|dossier_contentieux_mes_infractions[module=form]", ),
634 softime 6565 );
635     //
636     $links[] = array(
637 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_toutes_infractions",
638 softime 6565 "class" => "dossier_contentieux_toutes_infractions",
639     "title" => _("Toutes les infractions"),
640     "right" => array("dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", ),
641 softime 7996 "open" => array("index.php|dossier_contentieux_toutes_infractions[module=tab]", "index.php|dossier_contentieux_toutes_infractions[module=form]", ),
642 softime 6565 );
643     // Catégorie MESSAGES
644     $links[] = array(
645     "class" => "category",
646     "title" => _("Messages"),
647     "right" => array(
648     "messages_contentieux",
649     "messages_contentieux_mes_retours",
650     "messages_contentieux_retours_ma_division",
651     "messages_contentieux_tous_retours",
652     ),
653     );
654     //
655     $links[] = array(
656     "title" => "<hr/>",
657     "right" => array(
658     "messages_contentieux",
659     "messages_contentieux_mes_retours",
660     "messages_contentieux_retours_ma_division",
661     "messages_contentieux_tous_retours",
662     ),
663     );
664     //
665     $links[] = array(
666 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_mes_retours",
667 softime 6565 "class" => "messages_contentieux_mes_retours",
668     "title" => _("Mes messages"),
669     "right" => array(
670     "messages_contentieux",
671     "messages_contentieux_mes_retours",
672     "messages_contentieux_mes_retours_tab",
673     ),
674 softime 7996 "open" => array("index.php|messages_contentieux_mes_retours[module=tab]", "index.php|messages_contentieux_mes_retours[module=form]", ),
675 softime 6565 );
676     //
677     $links[] = array(
678 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_retours_ma_division",
679 softime 6565 "class" => "messages_contentieux_retours_ma_division",
680     "title" => _("Messages de ma division"),
681     "right" => array(
682     "messages_contentieux",
683     "messages_contentieux_retours_ma_division",
684     "messages_contentieux_retours_ma_division_tab",
685     ),
686 softime 7996 "open" => array("index.php|messages_contentieux_retours_ma_division[module=tab]", "index.php|messages_contentieux_retours_ma_division[module=form]", ),
687 softime 6565 );
688     //
689     $links[] = array(
690 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_tous_retours",
691 softime 6565 "class" => "messages_contentieux_tous_retours",
692     "title" => _("Tous les messages"),
693     "right" => array(
694     "messages_contentieux",
695     "messages_contentieux_tous_retours",
696     "messages_contentieux_tous_retours_tab",
697     ),
698 softime 7996 "open" => array("index.php|messages_contentieux_tous_retours[module=tab]", "index.php|messages_contentieux_tous_retours[module=form]", ),
699 softime 6565 );
700    
701    
702     //
703     $rubrik['links'] = $links;
704     //
705     $menu[] = $rubrik;
706     // }}}
707    
708 mbroquet 3730 // {{{ Rubrique SUIVI
709     //
710     $rubrik = array(
711     "title" => _("Suivi"),
712     "class" => "suivi",
713     "right" => "menu_suivi",
714     );
715     //
716     $links = array();
717     //
718     $links[] = array(
719 softime 7996 "href" => OM_ROUTE_DASHBOARD,
720 mbroquet 3730 "class" => "tableau-de-bord",
721     "title" => _("tableau de bord"),
722     "right" => "menu_suivi_dashboard",
723 softime 7996 "open" => array("index.php|[module=dashboard]",),
724 mbroquet 3730 );
725     $links[] = array(
726     "class" => "category",
727     "title" => _("suivi des pieces"),
728     "right" => array(
729 softime 5024 "instruction_suivi_retours_de_consultation", "instruction_suivi_mise_a_jour_des_dates",
730     "instruction_suivi_envoi_lettre_rar", "instruction_suivi_bordereaux",
731     "instruction_suivi_retours_de_consultation_consulter", "instruction_suivi_mise_a_jour_des_dates_consulter",
732     "instruction_suivi_envoi_lettre_rar_consulter", "instruction_suivi_bordereaux_consulter",
733 mbroquet 3730 ),
734     );
735     //
736     $links[] = array(
737     "title" => "<hr/>",
738     "right" => array(
739 softime 5024 "instruction_suivi_retours_de_consultation", "instruction_suivi_mise_a_jour_des_dates",
740     "instruction_suivi_envoi_lettre_rar", "instruction_suivi_bordereaux",
741     "instruction_suivi_retours_de_consultation_consulter", "instruction_suivi_mise_a_jour_des_dates_consulter",
742     "instruction_suivi_envoi_lettre_rar_consulter", "instruction_suivi_bordereaux_consulter",
743 mbroquet 3730 ),
744     );
745     //
746     $links[] = array(
747     "title" => "<hr/>",
748     "right" => array(
749 softime 5024 "instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter",
750 mbroquet 3730 ),
751     );
752     //
753     $links[] = array(
754 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_mise_a_jour_des_dates&action=170&idx=0",
755 mbroquet 3730 "class" => "suivi_mise_a_jour_des_dates",
756     "title" => _("Mise a jour des dates"),
757     "right" => array("instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", ),
758 softime 7996 "open" => array("index.php|instruction_suivi_mise_a_jour_des_dates[module=tab]", "index.php|instruction_suivi_mise_a_jour_des_dates[module=form]"),
759 mbroquet 3730 );
760     //
761     $links[] = array(
762     "title" => "<hr/>",
763     "right" => array(
764 softime 5024 "instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter",
765 mbroquet 3730 ),
766     );
767     //
768     $links[] = array(
769 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_envoi_lettre_rar&action=160&idx=0",
770 fmichon 4467 "class" => "envoi_lettre_rar",
771 mbroquet 3730 "title" => _("envoi lettre RAR"),
772     "right" => array("instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", ),
773 softime 7996 "open" => array("index.php|instruction_suivi_envoi_lettre_rar[module=tab]", "index.php|instruction_suivi_envoi_lettre_rar[module=form]"),
774 mbroquet 3730 );
775     //
776     $links[] = array(
777     "title" => "<hr/>",
778     "right" => array(
779 softime 5024 "instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter",
780 mbroquet 3730 ),
781     );
782     //
783     $links[] = array(
784 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_bordereaux&action=150&idx=0",
785 fmichon 4467 "class" => "bordereaux",
786 mbroquet 3730 "title" => _("Bordereaux"),
787     "right" => array("instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", ),
788 softime 7996 "open" => array("index.php|instruction_suivi_bordereaux[module=tab]", "index.php|instruction_suivi_bordereaux[module=form]"),
789 mbroquet 3730 );
790     //
791     $links[] = array(
792 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=bordereau_envoi_maire&action=190&idx=0",
793 mbroquet 3730 "class" => "bordereau_envoi_maire",
794     "title" => _("Bordereau d'envoi au maire"),
795 softime 4667 "right" => array("instruction_bordereau_envoi_maire","bordereau_envoi_maire"),
796 softime 7996 "open" => array("index.php|bordereau_envoi_maire[module=form]",),
797 mbroquet 3730 );
798     //
799     $links[] = array(
800     "class" => "category",
801     "title" => _("Demandes d'avis"),
802     "right" => array(
803 fmichon 4237 "consultation_suivi_mise_a_jour_des_dates",
804     "consultation_suivi_retours_de_consultation",
805 mbroquet 3730 ),
806     );
807     //
808     $links[] = array(
809 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=110",
810 mbroquet 3730 "class" => "demandes_avis_mise_a_jour_des_dates",
811     "title" => _("Mise a jour des dates"),
812 fmichon 4237 "right" => array("consultation_suivi_mise_a_jour_des_dates", ),
813 softime 7996 "open" => array("index.php|consultation[module=form][action=110]"),
814 mbroquet 3730 );
815     //
816     $links[] = array(
817 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=120",
818 mbroquet 3730 "class" => "consultation-retour",
819     "title" => _("retours de consultation"),
820 fmichon 4237 "right" => array("consultation_suivi_retours_de_consultation", ),
821 softime 7996 "open" => array("index.php|consultation[module=form][action=120]", "index.php|consultation[module=form][action=100]", ),
822 mbroquet 3730 );
823     // Catégorie COMMISSIONS
824     $links[] = array(
825     "class" => "category",
826     "title" => _("commissions"),
827     "right" => array(
828 softime 4667 "commission",
829     "commission_tab",
830     "commission_demandes_passage",
831     "commission_demandes_passage_tab",
832 mbroquet 3730 ),
833     );
834     //
835     $links[] = array(
836     "title" => "<hr/>",
837     "right" => array(
838 softime 4667 "commission",
839     "commission_tab",
840     "commission_demandes_passage",
841     "commission_demandes_passage_tab",
842 mbroquet 3730 ),
843     );
844     //
845     $links[] = array(
846 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=commission",
847 mbroquet 3730 "class" => "commissions",
848     "title" => _("gestion"),
849 softime 4667 "right" => array(
850     "commission",
851     ),
852 softime 7996 "open" => array("index.php|commission[module=tab]", "index.php|commission[module=form]", ),
853 mbroquet 3730 );
854     //
855     $links[] = array(
856 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=commission_demandes_passage",
857 mbroquet 3730 "class" => "commissions-demande-passage",
858     "title" => _("demandes"),
859 softime 4667 "right" => array(
860     "commission",
861     "commission_demandes_passage",
862     ),
863 softime 7996 "open" => array("index.php|commission_demandes_passage[module=tab]", "index.php|commission_demandes_passage[module=form]", ),
864 mbroquet 3730 );
865     //
866     $rubrik['links'] = $links;
867     //
868     $menu[] = $rubrik;
869     // }}}
870    
871     // {{{ Rubrique DEMANDES D'AVIS
872     //
873     $rubrik = array(
874     "title" => _("Demandes d'avis"),
875     "class" => "demande_avis",
876     "right" => "menu_demande_avis",
877     );
878     //
879     $links = array();
880     //
881     $links[] = array(
882 softime 7996 "href" => OM_ROUTE_DASHBOARD,
883 mbroquet 3730 "class" => "tableau-de-bord",
884     "title" => _("tableau de bord"),
885     "right" => "menu_demande_avis_dashboard",
886 softime 7996 "open" => array("index.php|[module=dashboard]",),
887 mbroquet 3730 );
888     //
889     $links[] = array(
890     "title" => "<hr/>",
891     "right" => array(
892     "demande_avis_encours", "demande_avis_encours_tab",
893     "demande_avis_passee", "demande_avis_passee_tab",
894     "demande_avis", "demande_avis_tab",
895     ),
896     );
897     //
898     $links[] = array(
899 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_avis_encours",
900 mbroquet 3730 "class" => "demande_avis_encours",
901     "title" => _("Demandes en cours"),
902     "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
903 softime 7996 "open" => array("index.php|demande_avis_encours[module=tab]", "index.php|demande_avis_encours[module=form]", ),
904 mbroquet 3730 );
905    
906     $links[] = array(
907 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_avis_passee",
908 mbroquet 3730 "class" => "demande_avis_passee",
909     "title" => _("Demandes passees"),
910     "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
911 softime 7996 "open" => array("index.php|demande_avis_passee[module=tab]", "index.php|demande_avis_passee[module=form]", ),
912 mbroquet 3730 );
913    
914     $links[] = array(
915 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_avis",
916 mbroquet 3730 "class" => "demande_avis",
917     "title" => _("Exports"),
918     "right" => array("demande_avis", "demande_avis_tab", ),
919 softime 7996 "open" => array("index.php|demande_avis[module=tab]", "index.php|demande_avis[module=form]", ),
920 mbroquet 3730 );
921    
922     //
923     $rubrik['links'] = $links;
924     //
925     $menu[] = $rubrik;
926     // }}}
927    
928    
929     // Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle
930     // dans cette version
931     // {{{ Rubrique EXPORT
932     //
933     $rubrik = array(
934     "title" => _("export / import"),
935     "class" => "edition",
936     "right" => "menu_export",
937     );
938     //
939     $links = array();
940    
941     //
942     $links[] = array(
943 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=sitadel&action=6&idx=0",
944 mbroquet 3730 "class" => "sitadel",
945     "title" => _("export sitadel"),
946     "right" => "export_sitadel",
947 softime 7996 "open" => "index.php|sitadel[module=form]",
948 mbroquet 3730 );
949     //
950     $links[] = array(
951     "href" => "../app/versement_archives.php",
952     "class" => "versement_archives",
953     "title" => _("versement aux archives"),
954     "right" => "versement_archives",
955     "open" => "versement_archives.php|",
956     );
957     //
958     $links[] = array(
959     "href" => "../app/reqmo_pilot.php",
960     "class" => "reqmo",
961     "title" => _("statistiques a la demande"),
962     "right" => "reqmo_pilot",
963     "open" => "reqmo_pilot.php|",
964     );
965     //
966     $rubrik['links'] = $links;
967     //
968     $menu[] = $rubrik;
969     // }}}
970    
971    
972     // {{{ Rubrique PARAMETRAGE
973     //
974     $rubrik = array(
975     "title" => _("parametrage dossiers"),
976     "class" => "parametrage-dossier",
977     "right" => "menu_parametrage",
978     );
979     //
980     $links = array();
981     //
982     $links[] = array(
983     "class" => "category",
984     "title" => _("dossiers"),
985     "right" => array(
986     "dossier_autorisation_type", "dossier_autorisation_type_tab",
987     "dossier_autorisation_type_detaille",
988     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
989     "dossier_instruction_type_tab", "cerfa", "cerfa_tab",
990     ),
991     );
992     //
993     $links[] = array(
994     "title" => "<hr/>",
995     "right" => array(
996     "cerfa", "cerfa_tab",
997     ),
998     );
999     //
1000     $links[] = array(
1001 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=cerfa",
1002 mbroquet 3730 "class" => "cerfa",
1003     "title" => _("cerfa"),
1004     "right" => array("cerfa", "cerfa_tab", ),
1005 softime 7996 "open" => array("index.php|cerfa[module=tab]", "index.php|cerfa[module=form]", ),
1006 mbroquet 3730 );
1007     //
1008     $links[] = array(
1009     "title" => "<hr/>",
1010     "right" => array(
1011     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1012     "dossier_autorisation_type_detaille",
1013     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1014     "dossier_instruction_type_tab",
1015     ),
1016     );
1017     //
1018     $links[] = array(
1019 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type",
1020 mbroquet 3730 "class" => "dossier_autorisation_type",
1021     "title" => _("type DA"),
1022     "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
1023 softime 7996 "open" => array("index.php|dossier_autorisation_type[module=tab]", "index.php|dossier_autorisation_type[module=form]", ),
1024 mbroquet 3730 );
1025     //
1026     $links[] = array(
1027 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type_detaille",
1028 mbroquet 3730 "class" => "dossier_autorisation_type_detaille",
1029     "title" => _("type DA detaille"),
1030     "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
1031 softime 7996 "open" => array("index.php|dossier_autorisation_type_detaille[module=tab]", "index.php|dossier_autorisation_type_detaille[module=form]", ),
1032 mbroquet 3730 );
1033     //
1034     $links[] = array(
1035 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_type",
1036 mbroquet 3730 "class" => "dossier_instruction_type",
1037     "title" => _("type DI"),
1038     "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
1039 softime 7996 "open" => array("index.php|dossier_instruction_type[module=tab]", "index.php|dossier_instruction_type[module=form]", ),
1040 mbroquet 3730 );
1041     //
1042     $links[] = array(
1043     "title" => "<hr/>",
1044     "right" => array(
1045     "contrainte", "contrainte_tab",
1046     "contrainte_souscategorie", "contrainte_souscategorie_tab",
1047     "contrainte_categorie", "contrainte_categorie_tab"
1048     ),
1049     );
1050     //
1051     $links[] = array(
1052 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=contrainte",
1053 mbroquet 3730 "class" => "contrainte",
1054     "title" => _("contrainte"),
1055     "right" => array("contrainte", "contrainte_tab", ),
1056 softime 4427 "open" => array(
1057 softime 7996 "index.php|contrainte[module=tab]",
1058     "index.php|contrainte[module=form][action=0]",
1059     "index.php|contrainte[module=form][action=1]",
1060     "index.php|contrainte[module=form][action=2]",
1061     "index.php|contrainte[module=form][action=3]",
1062 softime 4427 ),
1063 mbroquet 3730 );
1064     //
1065     $links[] = array(
1066     "class" => "category",
1067     "title" => _("demandes"),
1068     "right" => array(
1069     "demande_type",
1070     "demande_type_tab", "demande_nature", "demande_nature_tab",
1071     ),
1072     );
1073     //
1074     $links[] = array(
1075     "title" => "<hr/>",
1076     "right" => array(
1077     "demande_type",
1078     "demande_type_tab", "demande_nature", "demande_nature_tab",
1079     ),
1080     );
1081     //
1082     $links[] = array(
1083 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_nature",
1084 mbroquet 3730 "class" => "demande_nature",
1085     "title" => _("nature"),
1086     "right" => array("demande_nature", "demande_nature_tab", ),
1087 softime 7996 "open" => array("index.php|demande_nature[module=tab]", "index.php|demande_nature[module=form]", ),
1088 mbroquet 3730 );
1089     //
1090     $links[] = array(
1091 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=demande_type",
1092 mbroquet 3730 "class" => "demande_type",
1093     "title" => _("type"),
1094     "right" => array("demande_type", "demande_type_tab",),
1095 softime 7996 "open" => array("index.php|demande_type[module=tab]", "index.php|demande_type[module=form]", ),
1096 mbroquet 3730 );
1097     //
1098     $links[] = array(
1099     "class" => "category",
1100     "title" => _("workflows"),
1101     "right" => array(
1102     "workflows",
1103     "action", "action_tab", "etat",
1104     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
1105     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
1106     ),
1107     );
1108     //
1109     $links[] = array(
1110     "title" => "<hr/>",
1111     "right" => array(
1112     "workflows",
1113     "action", "action_tab", "etat",
1114     "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
1115     "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
1116     ),
1117     );
1118     //
1119     $links[] = array(
1120     "href" => "../app/workflows.php",
1121     "class" => "workflows",
1122     "title" => _("workflows"),
1123     "right" => array("workflows", ),
1124     "open" => array("workflows.php|", ),
1125     );
1126     //
1127     $links[] = array(
1128     "title" => "<hr/>",
1129     "right" => array(
1130     "evenement", "evenement_tab",
1131     ),
1132     );
1133     //
1134     $links[] = array(
1135 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=evenement",
1136 mbroquet 3730 "class" => "evenement",
1137     "title" => _("evenement"),
1138     "right" => array("evenement", "evenement_tab", ),
1139 softime 7996 "open" => array("index.php|evenement[module=tab]", "index.php|evenement[module=form]", ),
1140 mbroquet 3730 );
1141     //
1142     $links[] = array(
1143     "title" => "<hr/>",
1144     "right" => array(
1145     "action", "action_tab", "etat",
1146     "etat_tab", "avis_decision",
1147     "avis_decision_tab",
1148     ),
1149     );
1150     //
1151     $links[] = array(
1152 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=etat",
1153 mbroquet 3730 "class" => "workflow-etat",
1154     "title" => _("etat"),
1155     "right" => array("etat", "etat_tab", ),
1156 softime 7996 "open" => array("index.php|etat[module=tab]", "index.php|etat[module=form]", ),
1157 mbroquet 3730 );
1158     //
1159     $links[] = array(
1160 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=avis_decision",
1161 mbroquet 3730 "class" => "avis_decision",
1162     "title" => _("avis decision"),
1163     "right" => array("avis_decision", "avis_decision_tab", ),
1164 softime 7996 "open" => array("index.php|avis_decision[module=tab]", "index.php|avis_decision[module=form]", ),
1165 mbroquet 3730 );
1166     //
1167     $links[] = array(
1168 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=action",
1169 mbroquet 3730 "class" => "action",
1170     "title" => _("action"),
1171     "right" => array("action", "action_tab", ),
1172 softime 7996 "open" => array("index.php|action[module=tab]", "index.php|action[module=form]", ),
1173 mbroquet 3730 );
1174     //
1175     $links[] = array(
1176     "title" => "<hr/>",
1177     "right" => array(
1178     "bible", "bible_tab",
1179     ),
1180     );
1181     //
1182     $links[] = array(
1183 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=bible",
1184 mbroquet 3730 "class" => "bible",
1185     "title" => _("bible"),
1186     "right" => array("bible", "bible_tab", ),
1187 softime 7996 "open" => array("index.php|bible[module=tab]", "index.php|bible[module=form]", ),
1188 mbroquet 3730 );
1189     //
1190     $links[] = array(
1191     "class" => "category",
1192     "title" => _("editions"),
1193     "right" => array(
1194     "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
1195     "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
1196     "om_logo", "om_logo_tab",
1197     ),
1198     );
1199     //
1200     $links[] = array(
1201     "title" => "<hr/>",
1202     "right" => array(
1203     "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",
1204     ),
1205     );
1206     //
1207     $links[] = array(
1208 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_etat",
1209 mbroquet 3730 "class" => "om_etat",
1210     "title" => _("om_etat"),
1211     "right" => array("om_etat", "om_etat_tab", ),
1212 softime 7996 "open" => array("index.php|om_etat[module=tab]", "index.php|om_etat[module=form]", ),
1213 mbroquet 3730 );
1214     //
1215     $links[] = array(
1216 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_lettretype",
1217 mbroquet 3730 "class" => "om_lettretype",
1218     "title" => _("om_lettretype"),
1219     "right" => array("om_lettretype", "om_lettretype_tab"),
1220 softime 7996 "open" => array("index.php|om_lettretype[module=tab]", "index.php|om_lettretype[module=form]", ),
1221 mbroquet 3730 );
1222     //
1223     $links[] = array(
1224     "title" => "<hr/>",
1225     "right" => array(
1226     "om_logo", "om_logo_tab",
1227     ),
1228     );
1229     //
1230     $links[] = array(
1231 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_logo",
1232 mbroquet 3730 "class" => "om_logo",
1233     "title" => _("om_logo"),
1234     "right" => array("om_logo", "om_logo_tab", ),
1235 softime 7996 "open" => array("index.php|om_logo[module=tab]", "index.php|om_logo[module=form]", ),
1236 mbroquet 3730 );
1237     //
1238     $rubrik['links'] = $links;
1239     //
1240     $menu[] = $rubrik;
1241     // }}}
1242    
1243     // {{{ Rubrique PARAMETRAGE
1244     //
1245     $rubrik = array(
1246     "title" => _("parametrage"),
1247     "class" => "parametrage",
1248     "right" => "menu_parametrage",
1249     );
1250     //
1251     $links = array();
1252     //
1253     $links[] = array(
1254 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=civilite",
1255 mbroquet 3730 "class" => "civilite",
1256     "title" => _("civilite"),
1257     "right" => array("civilite", "civilite_tab", ),
1258 softime 7996 "open" => array("index.php|civilite[module=tab]", "index.php|civilite[module=form]", ),
1259 mbroquet 3730 );
1260     //
1261     $links[] = array(
1262 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=arrondissement",
1263 mbroquet 3730 "class" => "arrondissement",
1264     "title" => _("arrondissement"),
1265     "right" => array("arrondissement", "arrondissement_tab", ),
1266 softime 7996 "open" => array("index.php|arrondissement[module=tab]", "index.php|arrondissement[module=form]", ),
1267 mbroquet 3730 );
1268     //
1269     $links[] = array(
1270 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=quartier",
1271 mbroquet 3730 "class" => "quartier",
1272     "title" => _("quartier"),
1273     "right" => array("quartier", "quartier_tab", ),
1274 softime 7996 "open" => array("index.php|quartier[module=tab]", "index.php|quartier[module=form]", ),
1275 mbroquet 3730 );
1276     //
1277     $links[] = array(
1278     "class" => "category",
1279     "title" => _("Organisation"),
1280     "right" => array(
1281 softime 6565 "direction", "direction_tab", "division", "division_tab", "instructeur_qualite",
1282     "instructeur_qualite_tab", "instructeur", "instructeur_tab", "groupe",
1283     "groupe_tab", "genre", "genre_tab", "signataire_arrete", "signataire_arrete_tab",
1284     "taxe_amenagement_tab", "taxe_amenagement",
1285 mbroquet 3730 ),
1286     );
1287     $links[] = array(
1288     "title" => "<hr/>",
1289     "right" => array(
1290 softime 6565 "direction", "direction_tab", "division", "division_tab", "instructeur_qualite",
1291     "instructeur_qualite_tab", "instructeur", "instructeur_tab", "groupe",
1292     "groupe_tab", "genre", "genre_tab", "signataire_arrete", "signataire_arrete_tab",
1293     "taxe_amenagement_tab", "taxe_amenagement",
1294 mbroquet 3730 ),
1295     );
1296     //
1297     $links[] = array(
1298 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=genre",
1299 mbroquet 3730 "class" => "genre",
1300     "title" => _("genre"),
1301     "right" => array("genre", "genre_tab", ),
1302 softime 7996 "open" => array("index.php|genre[module=tab]", "index.php|genre[module=form]", ),
1303 mbroquet 3730 );
1304     //
1305     $links[] = array(
1306 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=groupe",
1307 mbroquet 3730 "class" => "groupe",
1308     "title" => _("groupe"),
1309     "right" => array("groupe", "groupe_tab", ),
1310 softime 7996 "open" => array("index.php|groupe[module=tab]", "index.php|groupe[module=form]", ),
1311 mbroquet 3730 );
1312     //
1313     $links[] = array(
1314 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=direction",
1315 mbroquet 3730 "class" => "direction",
1316     "title" => _("direction"),
1317     "right" => array("direction", "direction_tab", ),
1318 softime 7996 "open" => array("index.php|direction[module=tab]", "index.php|direction[module=form]", ),
1319 mbroquet 3730 );
1320     //
1321     $links[] = array(
1322 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=division",
1323 mbroquet 3730 "class" => "division",
1324     "title" => _("division"),
1325     "right" => array("division", "division_tab", ),
1326 softime 7996 "open" => array("index.php|division[module=tab]", "index.php|division[module=form]", ),
1327 mbroquet 3730 );
1328     //
1329     $links[] = array(
1330 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=instructeur_qualite",
1331 softime 6565 "class" => "instructeur_qualite",
1332     "title" => _("instructeur_qualite"),
1333     "right" => array("instructeur_qualite", "instructeur_qualite_tab", ),
1334 softime 7996 "open" => array("index.php|instructeur_qualite[module=tab]", "index.php|instructeur_qualite[module=form]", ),
1335 softime 6565 );
1336     //
1337     $links[] = array(
1338 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=instructeur",
1339 mbroquet 3730 "class" => "instructeur",
1340     "title" => _("instructeur"),
1341     "right" => array("instructeur", "instructeur_tab", ),
1342 softime 7996 "open" => array("index.php|instructeur[module=tab]", "index.php|instructeur[module=form]", ),
1343 mbroquet 3730 );
1344     //
1345     $links[] = array(
1346 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=signataire_arrete",
1347 mbroquet 3730 "class" => "signataire_arrete",
1348     "title" => _("signataire arrete"),
1349     "right" => array("signataire_arrete", "signataire_arrete", ),
1350 softime 7996 "open" => array("index.php|signataire_arrete[module=tab]", "index.php|signataire_arrete[module=form]", ),
1351 mbroquet 3730 );
1352     //
1353     $links[] = array(
1354 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=taxe_amenagement",
1355 mbroquet 3730 "class" => "taxe_amenagement",
1356 softime 6929 "title" => _("taxes"),
1357     "right" => array("taxe_amenagement", "taxe_amenagement_tab", ),
1358 softime 7996 "open" => array("index.php|taxe_amenagement[module=tab]", "index.php|taxe_amenagement[module=form]", ),
1359 mbroquet 3730 );
1360     //
1361     $links[] = array(
1362     "class" => "category",
1363     "title" => _("gestion des commissions"),
1364     "right" => array(
1365     "commission_type", "commission_type_tab",
1366     ),
1367     );
1368     //
1369     $links[] = array(
1370     "title" => "<hr/>",
1371     "right" => array(
1372     "commission_type", "commission_type_tab",
1373     ),
1374     );
1375     //
1376     $links[] = array(
1377 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=commission_type",
1378 mbroquet 3730 "class" => "commission-type",
1379     "title" => _("commission_type"),
1380     "right" => array("commission_type", "commission_type_tab", ),
1381 softime 7996 "open" => array("index.php|commission_type[module=tab]", "index.php|commission_type[module=form]", ),
1382 mbroquet 3730 );
1383     //
1384     $links[] = array(
1385     "class" => "category",
1386     "title" => _("gestion des consultations"),
1387     "right" => array(
1388     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1389     "service_categorie", "service_categorie_tab",
1390     "lien_service_service_categorie", "lien_service_service_categorie_tab",
1391     ),
1392     );
1393     //
1394     $links[] = array(
1395     "title" => "<hr/>",
1396     "right" => array(
1397     "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1398     "service_categorie", "service_categorie_tab",
1399     "lien_service_service_categorie", "lien_service_service_categorie_tab",
1400     ),
1401     );
1402     //
1403     $links[] = array(
1404 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=avis_consultation",
1405 mbroquet 3730 "class" => "avis_consultation",
1406     "title" => _("avis consultation"),
1407     "right" => array("avis_consultation", "avis_consultation_tab", ),
1408 softime 7996 "open" => array("index.php|avis_consultation[module=tab]", "index.php|avis_consultation[module=form]", ),
1409 mbroquet 3730 );
1410     //
1411     $links[] = array(
1412 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=service",
1413 mbroquet 3730 "class" => "service",
1414     "title" => _("service"),
1415     "right" => array("service", "service_tab", ),
1416 softime 7996 "open" => array("index.php|service[module=tab]", "index.php|service[module=form]", ),
1417 mbroquet 3730 );
1418     $links[] = array(
1419 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=service_categorie",
1420 mbroquet 3730 "class" => "service_categorie",
1421     "title" => _("thematique des services"),
1422     "right" => array("service_categorie", "service_categorie_tab", ),
1423 softime 7996 "open" => array("index.php|service_categorie[module=tab]", "index.php|service_categorie[module=form]", ),
1424 mbroquet 3730 );
1425     //
1426     $links[] = array(
1427     "class" => "category",
1428     "title" => _("Gestion des dossiers"),
1429     "right" => array(
1430     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1431     "dossier_autorisation_type_detaille",
1432     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1433     "dossier_instruction_type_tab",
1434     "autorite_competente", "autorite_competente_tab",
1435     "affectation_automatique", "affectation_automatique_tab",
1436     ),
1437     );
1438     //
1439     $links[] = array(
1440     "title" => "<hr/>",
1441     "right" => array(
1442     "dossier_autorisation_type", "dossier_autorisation_type_tab",
1443     "dossier_autorisation_type_detaille",
1444     "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1445     "dossier_instruction_type_tab",
1446     "autorite_competente", "autorite_competente_tab",
1447     "affectation_automatique", "affectation_automatique_tab",
1448    
1449     ),
1450     );
1451     //
1452     $links[] = array(
1453 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=etat_dossier_autorisation",
1454 mbroquet 3730 "class" => "etat_dossier_autorisation",
1455     "title" => _("etat dossiers autorisations"),
1456     "right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ),
1457 softime 7996 "open" => array("index.php|etat_dossier_autorisation[module=tab]", "index.php|etat_dossier_autorisation[module=form]", ),
1458 mbroquet 3730 );
1459     //
1460     $links[] = array(
1461 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=affectation_automatique",
1462 mbroquet 3730 "class" => "affectation_automatique",
1463     "title" => _("affectation automatique"),
1464     "right" => array("affectation_automatique", "affectation_automatique_tab", ),
1465 softime 7996 "open" => array("index.php|affectation_automatique[module=tab]", "index.php|affectation_automatique[module=form]", ),
1466 mbroquet 3730 );
1467     //
1468     $links[] = array(
1469 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=autorite_competente",
1470 mbroquet 3730 "class" => "autorite_competente",
1471     "title" => _("autorite")." "._("competente"),
1472     "right" => array("autorite_competente", "autorite_competente_tab", ),
1473 softime 7996 "open" => array("index.php|autorite_competente[module=tab]", "index.php|autorite_competente[module=form]", ),
1474 mbroquet 3730 );
1475 softime 3834 //
1476     $links[] = array(
1477 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=phase",
1478 softime 3834 "class" => "phase",
1479     "title" => _("phase"),
1480     "right" => array("phase", "phase_tab", ),
1481 softime 7996 "open" => array("index.php|phase[module=tab]", "index.php|phase[module=form]", ),
1482 softime 3834 );
1483 mbroquet 3730
1484 softime 4902 //Gestion des pièces
1485     $links[] = array(
1486     "class" => "category",
1487     "title" => _("Gestion des pièces"),
1488     "right" => array(
1489     "document_numerise_type_categorie", "document_numerise_type_categorie_tab",
1490     "document_numerise_type",
1491     "document_numerise_type_tab", "document_numerise_traitement_metadonnees",
1492     "document_numerise_traitement_metadonnees_executer",
1493     ),
1494     );
1495 mbroquet 3730 //
1496 softime 4902 $links[] = array(
1497     "title" => "<hr/>",
1498     "right" => array(
1499     "document_numerise_type_categorie", "document_numerise_type_categorie_tab",
1500     "document_numerise_type",
1501     "document_numerise_type_tab", "document_numerise_traitement_metadonnees",
1502     "document_numerise_traitement_metadonnees_executer",
1503     ),
1504     );
1505     //
1506     $links[] = array(
1507 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=document_numerise_type_categorie",
1508 softime 4902 "class" => "document_numerise_type_categorie",
1509     "title" => _("Catégorie des pièces"),
1510     "right" => array(
1511     "document_numerise_type_categorie",
1512     "document_numerise_type_categorie_tab",
1513     ),
1514     "open" => array(
1515 softime 7996 "index.php|document_numerise_type_categorie[module=tab]",
1516     "index.php|document_numerise_type_categorie[module=form]",
1517 softime 4902 ),
1518     );
1519     //
1520     $links[] = array(
1521 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=document_numerise_type",
1522 softime 4902 "class" => "document_numerise_type",
1523     "title" => _("Type des pièces"),
1524     "right" => array(
1525     "document_numerise_type",
1526     "document_numerise_type_tab",
1527     ),
1528     "open" => array(
1529 softime 7996 "index.php|document_numerise_type[module=tab]",
1530     "index.php|document_numerise_type[module=form][action=0]",
1531     "index.php|document_numerise_type[module=form][action=1]",
1532     "index.php|document_numerise_type[module=form][action=2]",
1533     "index.php|document_numerise_type[module=form][action=3]",
1534 softime 4902 ),
1535     );
1536     //
1537     $links[] = array(
1538 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=document_numerise_traitement_metadonnees&action=100&idx=0",
1539 softime 4902 "class" => "document_numerise_traitement_metadonnees",
1540     "title" => _("Mise à jour des métadonnées"),
1541     "description" => _("Mettre à jour les métadonnées de tous les documents numérisés."),
1542     "right" => array(
1543     "document_numerise_traitement_metadonnees",
1544     "document_numerise_traitement_metadonnees_executer",
1545     ),
1546 softime 7996 "open" => array("index.php|document_numerise_traitement_metadonnees[module=form]", ),
1547 softime 4902 );
1548    
1549 softime 6565 // Gestion des contentieux
1550     $links[] = array(
1551     "class" => "category",
1552     "title" => _("Gestion des contentieux"),
1553     "right" => array(
1554     "objet_recours", "objet_recours_tab", "moyen_souleve", "moyen_souleve_tab",
1555     "moyen_retenu_juge", "moyen_retenu_juge_tab",
1556     ),
1557     );
1558 softime 4902 //
1559 softime 6565 $links[] = array(
1560     "title" => "<hr/>",
1561     "right" => array(
1562     "objet_recours", "objet_recours_tab", "moyen_souleve", "moyen_souleve_tab",
1563     "moyen_retenu_juge", "moyen_retenu_juge_tab",
1564     ),
1565     );
1566     //
1567     $links[] = array(
1568 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=objet_recours",
1569 softime 6565 "class" => "objet_recours",
1570     "title" => _("objet_recours"),
1571     "right" => array(
1572     "objet_recours", "objet_recours_tab",
1573     ),
1574     "open" => array(
1575 softime 7996 "index.php|objet_recours[module=tab]", "index.php|objet_recours[module=form]",
1576 softime 6565 ),
1577     );
1578     //
1579     $links[] = array(
1580 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=moyen_souleve",
1581 softime 6565 "class" => "moyen_souleve",
1582     "title" => _("moyen_souleve"),
1583     "right" => array(
1584     "moyen_souleve", "moyen_souleve_tab",
1585     ),
1586     "open" => array(
1587 softime 7996 "index.php|moyen_souleve[module=tab]", "index.php|moyen_souleve[module=form]",
1588 softime 6565 ),
1589     );
1590     //
1591     $links[] = array(
1592 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=moyen_retenu_juge",
1593 softime 6565 "class" => "moyen_retenu_juge",
1594     "title" => _("moyen_retenu_juge"),
1595     "right" => array(
1596     "moyen_retenu_juge", "moyen_retenu_juge_tab",
1597     ),
1598     "open" => array(
1599 softime 7996 "index.php|moyen_retenu_juge[module=tab]", "index.php|moyen_retenu_juge[module=form]",
1600 softime 6565 ),
1601     );
1602    
1603     //
1604 mbroquet 3730 $rubrik['links'] = $links;
1605     //
1606     $menu[] = $rubrik;
1607     // }}}
1608    
1609     // {{{ Rubrique ADMINISTRATION
1610     //
1611     $rubrik = array(
1612     "title" => _("administration"),
1613     "class" => "administration",
1614     "right" => "menu_administration",
1615     );
1616     //
1617     $links = array();
1618     //
1619     $links[] = array(
1620 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_collectivite",
1621 mbroquet 3730 "class" => "collectivite",
1622     "title" => _("om_collectivite"),
1623     "right" => array("om_collectivite", "om_collectivite_tab", ),
1624 softime 7996 "open" => array("index.php|om_collectivite[module=tab]", "index.php|om_collectivite[module=form]", ),
1625 mbroquet 3730 );
1626     //
1627     $links[] = array(
1628 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_parametre",
1629 mbroquet 3730 "class" => "parametre",
1630     "title" => _("om_parametre"),
1631     "right" => array("om_parametre", "om_parametre_tab", ),
1632 softime 7996 "open" => array("index.php|om_parametre[module=tab]", "index.php|om_parametre[module=form]", ),
1633 mbroquet 3730 );
1634     //
1635     $links[] = array(
1636     "class" => "category",
1637     "title" => _("gestion des utilisateurs"),
1638     "right" => array(
1639     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1640     "om_droit", "om_droit_tab", "directory",
1641     ),
1642     );
1643     //
1644     $links[] = array(
1645     "title" => "<hr/>",
1646     "right" => array(
1647     "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1648     "om_droit", "om_droit_tab",
1649     ),
1650     );
1651     //
1652     $links[] = array(
1653 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_profil",
1654 mbroquet 3730 "class" => "profil",
1655     "title" => _("om_profil"),
1656     "right" => array("om_profil", "om_profil_tab", ),
1657 softime 7996 "open" => array("index.php|om_profil[module=tab]", "index.php|om_profil[module=form]", ),
1658 mbroquet 3730 );
1659     //
1660     $links[] = array(
1661 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_droit",
1662 mbroquet 3730 "class" => "droit",
1663     "title" => _("om_droit"),
1664     "right" => array("om_droit", "om_droit_tab", ),
1665 softime 7996 "open" => array("index.php|om_droit[module=tab]", "index.php|om_droit[module=form]", ),
1666 mbroquet 3730 );
1667     //
1668     $links[] = array(
1669 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_utilisateur",
1670 mbroquet 3730 "class" => "utilisateur",
1671     "title" => _("om_utilisateur"),
1672     "right" => array("om_utilisateur", "om_utilisateur_tab", ),
1673     "open" => array(
1674 softime 7996 "index.php|om_utilisateur[module=tab]",
1675     "index.php|om_utilisateur[module=form][action=0]",
1676     "index.php|om_utilisateur[module=form][action=1]",
1677     "index.php|om_utilisateur[module=form][action=2]",
1678     "index.php|om_utilisateur[module=form][action=3]",
1679 mbroquet 3730 ),
1680     );
1681     //
1682     $links[] = array(
1683     "title" => "<hr/>",
1684     "right" => array("om_utilisateur", "om_utilisateur_synchroniser", ),
1685     "parameters" => array("isDirectoryOptionEnabled" => true, ),
1686     );
1687     //
1688     $links[] = array(
1689 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=om_utilisateur&idx=0&action=11",
1690 mbroquet 3730 "class" => "annuaire",
1691     "title" => _("annuaire"),
1692     "right" => array("om_utilisateur", "om_utilisateur_synchroniser", ),
1693 softime 7996 "open" => array("index.php|om_utilisateur[module=form][action=11]", ),
1694 mbroquet 3730 "parameters" => array("isDirectoryOptionEnabled" => true, ),
1695     );
1696     //
1697     $links[] = array(
1698     "class" => "category",
1699     "title" => _("tableaux de bord"),
1700     "right" => array(
1701     "om_widget", "om_widget_tab", "om_dashboard",
1702     ),
1703     );
1704     //
1705     $links[] = array(
1706     "title" => "<hr/>",
1707     "right" => array(
1708     "om_widget", "om_widget_tab", "om_dashboard",
1709     ),
1710     );
1711     //
1712     $links[] = array(
1713 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_widget",
1714 mbroquet 3730 "class" => "om_widget",
1715     "title" => _("om_widget"),
1716     "right" => array("om_widget", "om_widget_tab", ),
1717 softime 7996 "open" => array("index.php|om_widget[module=tab]", "index.php|om_widget[module=form]", ),
1718 mbroquet 3730 );
1719     //
1720     $links[] = array(
1721 softime 7996 "href" => "".OM_ROUTE_FORM."&obj=om_dashboard&amp;idx=0&amp;action=4",
1722 mbroquet 3730 "class" => "om_dashboard",
1723     "title" => _("composition"),
1724     "right" => array("om_dashboard", ),
1725 softime 7996 "open" => array("index.php|om_dashboard[module=form][action=4]", ),
1726 mbroquet 3730 );
1727     //
1728     $links[] = array(
1729     "class" => "category",
1730     "title" => _("sig"),
1731     "right" => array(
1732     "om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab",
1733     ),
1734     "parameters" => array("option_localisation" => "sig_interne", ),
1735     );
1736     //
1737     $links[] = array(
1738     "title" => "<hr/>",
1739     "right" => array(
1740     "om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab",
1741     ),
1742     "parameters" => array("option_localisation" => "sig_interne", ),
1743     );
1744     //
1745     $links[] = array(
1746 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_sig_extent",
1747 mbroquet 3730 "class" => "om_sig_extent",
1748     "title" => _("om_sig_extent"),
1749     "right" => array("om_sig_extent", "om_sig_extent_tab", ),
1750 softime 7996 "open" => array("index.php|om_sig_extent[module=tab]", "index.php|om_sig_extent[module=form]", ),
1751 mbroquet 3730 "parameters" => array("option_localisation" => "sig_interne", ),
1752     );
1753     //
1754     $links[] = array(
1755 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_sig_map",
1756 mbroquet 3730 "class" => "om_sig_map",
1757     "title" => _("om_sig_map"),
1758     "right" => array("om_sig_map", "om_sig_map_tab", ),
1759 softime 7996 "open" => array("index.php|om_sig_map[module=tab]", "index.php|om_sig_map[module=form]", ),
1760 mbroquet 3730 "parameters" => array("option_localisation" => "sig_interne", ),
1761     );
1762     //
1763     $links[] = array(
1764 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_sig_flux",
1765 mbroquet 3730 "class" => "om_sig_flux",
1766     "title" => _("om_sig_flux"),
1767     "right" => array("om_sig_flux", "om_sig_flux_tab", ),
1768 softime 7996 "open" => array("index.php|om_sig_flux[module=tab]", "index.php|om_sig_flux[module=form]", ),
1769 mbroquet 3730 "parameters" => array("option_localisation" => "sig_interne", ),
1770     );
1771     //
1772     $links[] = array(
1773     "class" => "category",
1774     "title" => _("options avancees"),
1775     "right" => array("import", "gen", "om_requete", "om_requete_tab",
1776     "om_sousetat", "om_sousetat_tab",),
1777     );
1778     //
1779     $links[] = array(
1780     "title" => "<hr/>",
1781     "right" => array(
1782 fmichon 4708 "interface_referentiel_erp",
1783     ),
1784     );
1785     //
1786     $links[] = array(
1787     "href" => "../app/settings.php?controlpanel=interface_referentiel_erp",
1788     "class" => "interface_referentiel_erp",
1789     "title" => _("interface_referentiel_erp"),
1790     "right" => array("interface_referentiel_erp", ),
1791     "open" => array("settings.php|[controlpanel=interface_referentiel_erp]", ),
1792     );
1793     //
1794     $links[] = array(
1795     "title" => "<hr/>",
1796     "right" => array(
1797 mbroquet 3730 "om_sousetat", "om_sousetat_tab",
1798     ),
1799     );
1800     //
1801     $links[] = array(
1802 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_sousetat",
1803 mbroquet 3730 "class" => "om_sousetat",
1804     "title" => _("om_sousetat"),
1805     "right" => array("om_sousetat", "om_sousetat_tab", ),
1806 softime 7996 "open" => array("index.php|om_sousetat[module=tab]", "index.php|om_sousetat[module=form]", ),
1807 mbroquet 3730 );
1808     //
1809     $links[] = array(
1810     "title" => "<hr/>",
1811     "right" => array("om_requete", "om_requete_tab", ),
1812     );
1813     //
1814     $links[] = array(
1815 softime 7996 "href" => "".OM_ROUTE_TAB."&obj=om_requete",
1816 mbroquet 3730 "class" => "om_requete",
1817     "title" => _("om_requete"),
1818     "right" => array("om_requete", "om_requete_tab", ),
1819 softime 7996 "open" => array("index.php|om_requete[module=tab]", "index.php|om_requete[module=form]", ),
1820 mbroquet 3730 );
1821     //
1822     $links[] = array(
1823     "title" => "<hr/>",
1824     "right" => array("import", ),
1825     );
1826     //
1827     $links[] = array(
1828 softime 7996 "href" => OM_ROUTE_MODULE_IMPORT,
1829 mbroquet 3730 "class" => "import",
1830     "title" => _("Import"),
1831     "right" => array("import", ),
1832     "open" => array("import.php|", ),
1833     );
1834     //
1835     $links[] = array(
1836     "href" => "../app/import_specific.php",
1837     "class" => "import_specific",
1838     "title" => _("Import specifique"),
1839     "right" => array("import", ),
1840     "open" => array("import_specific.php|", ),
1841     );
1842     //
1843     $links[] = array(
1844     "title" => "<hr/>",
1845     "right" => array("gen", ),
1846     );
1847     //
1848     $links[] = array(
1849     "title" => _("Generateur"),
1850 softime 7996 "href" => OM_ROUTE_MODULE_GEN,
1851 mbroquet 3730 "class" => "generator",
1852     "right" => array("gen", ),
1853     "open" => array(
1854     "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1855     "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1856     "genimport.php|",
1857     ),
1858     );
1859     //
1860 softime 7996 $links[] = array(
1861     "href" => "".OM_ROUTE_FORM."&obj=contrainte&action=100&idx=0",
1862     "class" => "contrainte",
1863     "title" => _("synchronisation des contraintes"),
1864     "right" => array("contrainte", "contrainte_synchronisation", ),
1865     "open" => array("index.php|contrainte[module=form][action=100]", ),
1866     "parameters" => array(
1867     "option_sig" => "sig_externe",
1868     ),
1869     );
1870     //
1871     $links[] = array(
1872     "href" => "".OM_ROUTE_FORM."&obj=dossier_instruction&action=126&idx=0",
1873     "class" => "geocoder",
1874     "title" => _("Géolocalisation des dossiers"),
1875     "right" => array("dossier_instruction_geocoder", ),
1876     "open" => array("index.php|dossier_instruction[module=form][action=126]", ),
1877     "parameters" => array(
1878     "option_sig" => "sig_externe",
1879     ),
1880     );
1881     //
1882 mbroquet 3730 $rubrik['links'] = $links;
1883     //
1884     $menu[] = $rubrik;
1885     // }}}
1886    
1887     ?>

Properties

Name Value
svn:keywords "Id"

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26