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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 656 by fmichon, Sun Nov 11 22:14:37 2012 UTC revision 2327 by fmichon, Fri Sep 20 11:56:47 2013 UTC
# Line 4  Line 4 
4   * dans le menu.   * dans le menu.
5   *   *
6   * @package openmairie_exemple   * @package openmairie_exemple
7   * @version SVN : $Id: menu.inc.php 324 2010-12-06 16:06:21Z fraynaud $   * @version SVN : $Id: menu.inc.php 2447 2013-08-27 16:46:03Z 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     *               open => array("tab.php|users", "form.php|users"),
45     *               open => "|users"
46     *               open => "script.php|"
47     */
48  //  //
49  $menu = array();  $menu = array();
50    
51  // {{{ Rubrique AUTORISATION  // {{{ Rubrique AUTORISATION
52  //  //
53  $rubrik = array(  $rubrik = array(
54      "title" => _("autorisation"),      "title" => _("Autorisation"),
55      "class" => "autorisation",      "class" => "autorisation",
56      "right" => "menu_autorisation",      "right" => "menu_autorisation",
57  );  );
58  //  //
59  $links = array();  $links = array();
60    
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    
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        "class" => "dossier_autorisation",
73        "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  //  //
79  $rubrik['links'] = $links;  $rubrik['links'] = $links;
80  //  //
# Line 36  $rubrik = array( Line 92  $rubrik = array(
92  $links = array();  $links = array();
93  //  //
94  $links[] = array(  $links[] = array(
95        "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      "class" => "category",      "class" => "category",
103      "title" => _("demandes"),      "title" => _("nouvelle demande"),
104      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",      "right" => array(
105                       "demande_dossier_existant","demande_dossier_existant_tab",),          "demande_nouveau_dossier_ajouter",
106            "demande_dossier_existant_ajouter", "demande_dossier_existant_tab",
107            "demande_consulter","demande_tab",
108        ),
109  );  );
110  $links[] = array(  $links[] = array(
111      "title" => "<hr/>",      "title" => "<hr/>",
112      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",      "right" => array(
113                       "demande_dossier_existant","demande_dossier_existant_tab",),          "demande_nouveau_dossier_ajouter",
114            "demande_dossier_existant_ajouter", "demande_dossier_existant_tab",
115        ),
116  );  );
117  $links[] = array(  $links[] = array(
118      "href" => "../scr/form.php?obj=demande&action=0&advs_id=&tricol=&valide=&retour=tab&new=",      "href" => "../scr/form.php?obj=demande_nouveau_dossier&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
119      "class" => "demande",      "class" => "nouveau-dossier",
120      "title" => _("nouveau dossier"),      "title" => _("nouveau dossier"),
121      "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),      "right" => array(
122      "open" => array("tab.php|demande", "form.php|demande", ),          "demande_nouveau_dossier_ajouter",
123        ),
124        "open" => array("form.php|demande_nouveau_dossier",),
125  );  );
126  $links[] = array(  $links[] = array(
127      "href" => "../scr/tab.php?obj=demande",      "href" => "../scr/tab.php?obj=demande_dossier_existant",
128      "class" => "demande",      "class" => "dossier-existant",
129      "title" => _("dossier existant"),      "title" => _("dossier existant"),
130      "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),      "right" => array(
131      "open" => array("tab.php|demande", "form.php|demande", ),          "demande_dossier_existant_ajouter","demande_dossier_existant_tab",
132        ),
133        "open" => array("tab.php|demande_dossier_existant", "form.php|demande_dossier_existant"),
134  );  );
 //  
135  $links[] = array(  $links[] = array(
136      "class" => "category",      "title" => "<hr/>",
137      "title" => _("Affichage des dossiers"),      "right" => array(
138      "right" => array("edition", "edition_tab","attestation_affichage","attestation_affichage_tab",),          "demande_consulter", "demande_tab"
139        ),
140  );  );
141  $links[] = array(  $links[] = array(
142      "title" => "<hr/>",      "href" => "../scr/tab.php?obj=demande",
143      "right" => array("edition", "attestation_affichage"),      "class" => "pdf",
144        "title" => _("recepisse"),
145        "right" => array(
146            "demande_consulter", "demande_tab"
147        ),
148        "open" => array("tab.php|demande","form.php|demande"),
149  );  );
150  $links[] = array(  $links[] = array(
151      "href" => "../app/edition_affichage.php",      "title" => "<hr/>",
152      "class" => "edition",      "right" => array(
153      "title" => _("edition"),          "petitionnaire_frequent_consulter", "petitionnaire_frequent_tab"
154      "right" => array("edition", "edition_tab", ),      ),
     "open" => array("tab.php|edition", "form.php|edition", ),  
155  );  );
156  $links[] = array(  $links[] = array(
157      "href" => "../app/attestation_affichage.php",      "href" => "../scr/tab.php?obj=petitionnaire_frequent",
158      "class" => "attestation_affichage",      "class" => "petitionnaire_frequent",
159      "title" => _("attestation d'affichage"),      "title" => _("petitionnaire_frequent"),
160      "right" => array("attestation_affichage", "attestation_affichage_tab", ),      "right" => array(
161      "open" => array("tab.php|attestation_affichage", "form.php|attestation_affichage", ),          "petitionnaire_frequent_consulter", "petitionnaire_frequent_tab"
162        ),
163        "open" => array("tab.php|petitionnaire_frequent","form.php|petitionnaire_frequent"),
164  );  );
165  //  //
166  /*$links[] = array(  $links[] = array(
167      "class" => "category",      "class" => "category",
168      "title" => _("Qualification"),      "title" => _("affichage reglementaire"),
169      "right" => array("qualification"),      "right" => array(
170            "affichage_reglementaire_registre",
171            "affichage_reglementaire_attestation",
172        ),
173  );  );
174  $links[] = array(  $links[] = array(
175      "title" => "<hr/>",      "title" => "<hr/>",
176      "right" => array("qualification"),      "right" => array(
177            "affichage_reglementaire_registre",
178            "affichage_reglementaire_attestation",
179        ),
180  );  );
181  $links[] = array(  $links[] = array(
182      "href" => "../scr/tab.php?obj=dossier",      "href" => "../app/affichage_reglementaire_registre.php",
183      "class" => "qualification",      "class" => "edition",
184      "title" => _("A Qualifier"),      "title" => _("registre"),
185      "right" => array("qualification", "qualification_tab", ),      "right" => array(
186      "open" => array("tab.php|qualification", "form.php|qualification", ),          "affichage_reglementaire_registre",
187  );*/      ),
188        "open" => "affichage_reglementaire_registre.php|",
189    );
190    $links[] = array(
191        "href" => "../app/affichage_reglementaire_attestation.php",
192        "class" => "edition",
193        "title" => _("attestation"),
194        "right" => array(
195            "affichage_reglementaire_attestation",
196        ),
197        "open" => "affichage_reglementaire_attestation.php|",
198    );
199  //  //
200  $rubrik['links'] = $links;  $rubrik['links'] = $links;
201  //  //
# Line 116  $rubrik = array( Line 211  $rubrik = array(
211  );  );
212  //  //
213  $links = array();  $links = array();
214    //
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  // Catégorie DOSSIERS D'INSTRUCTION  // Catégorie DOSSIERS D'INSTRUCTION
222  $links[] = array(  $links[] = array(
223      "class" => "category",      "class" => "category",
# Line 179  $links[] = array( Line 281  $links[] = array(
281  //  //
282  $links[] = array(  $links[] = array(
283      "title" => "<hr/>",      "title" => "<hr/>",
     "right" => array("PC_modificatif", "PC_modificatif_tab", ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=PC_modificatif",  
     "class" => "traitement",  
     "title" => _("modificatif transfert"),  
     "right" => array("PC_modificatif", "PC_modificatif_tab", ),  
     "open" => array("|PC_modificatif", "dossier_modificatif.php|", ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
284      "right" => array(      "right" => array(
285          "dossier_instruction", "dossier_instruction_tab",          "dossier_instruction", "dossier_instruction_tab",
286      ),      ),
# Line 199  $links[] = array( Line 288  $links[] = array(
288  //  //
289  $links[] = array(  $links[] = array(
290      "href" => "../scr/tab.php?obj=dossier_instruction",      "href" => "../scr/tab.php?obj=dossier_instruction",
291      "class" => "dossier_instruction",      "class" => "dossier_instruction_recherche",
292      "title" => _("recherche"),      "title" => _("recherche"),
293      "right" => array("dossier_instruction", "dossier_instruction_tab", ),      "right" => array("dossier_instruction", "dossier_instruction_tab", ),
294      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
295  );  );
296    
297    // Catégorier Qualification
298    $links[] = array(
299        "class" => "category",
300        "title" => _("qualification"),
301        "right" => array("dossier_qualifier", "architecte_frequent",),
302    );
303    //
304    $links[] = array(
305        "title" => "<hr/>",
306        "right" => array("dossier_qualifier", "architecte_frequent", ),
307    );
308    //
309    $links[] = array(
310        "href" => "../scr/tab.php?obj=dossier_qualifier",
311        "class" => "dossier_qualifier",
312        "title" => _("dossiers a qualifier"),
313        "right" => array("dossier_qualifier", "dossier_qualifier_tab", ),
314        "open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ),
315    );
316    //
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  // Catégorie CONSULTATIONS  // Catégorie CONSULTATIONS
325  $links[] = array(  $links[] = array(
326      "class" => "category",      "class" => "category",
# Line 233  $links[] = array( Line 350  $links[] = array(
350      "class" => "category",      "class" => "category",
351      "title" => _("Messages"),      "title" => _("Messages"),
352      "right" => array("messages_mes_retours", "messages_tous_retours"),      "right" => array("messages_mes_retours", "messages_tous_retours"),
353        "parameters" => array("option_ERP" => "true", ),
354  );  );
355  //  //
356  $links[] = array(  $links[] = array(
357      "title" => "<hr/>",      "title" => "<hr/>",
358      "right" => array("messages_mes_retours", "messages_tous_retours"),      "right" => array("messages_mes_retours", "messages_tous_retours"),
359        "parameters" => array("option_ERP" => "true", ),
360  );  );
361  //  //
362  $links[] = array(  $links[] = array(
# Line 246  $links[] = array( Line 365  $links[] = array(
365      "title" => _("Mes messages"),      "title" => _("Mes messages"),
366      "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),      "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
367      "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),      "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
368        "parameters" => array("option_ERP" => "true", ),
369  );  );
370  //  //
371  $links[] = array(  $links[] = array(
# Line 254  $links[] = array( Line 374  $links[] = array(
374      "title" => _("Tous les messages"),      "title" => _("Tous les messages"),
375      "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),      "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
376      "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),      "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
377        "parameters" => array("option_ERP" => "true", ),
378    );
379    // Catégorie COMMISSIONS
380    $links[] = array(
381        "class" => "category",
382        "title" => _("commissions"),
383        "right" => array(
384            "commission_mes_retours", "commission_mes_retours_tab",
385            "commission_tous_retours", "commission_tous_retours_tab",
386        ),
387    );
388    $links[] = array(
389        "title" => "<hr/>",
390        "right" => array(
391            "commission_mes_retours", "commission_mes_retours_tab",
392            "commission_tous_retours", "commission_tous_retours_tab",
393        ),
394    );
395    $links[] = array(
396        "href" => "../scr/tab.php?obj=commission_mes_retours",
397        "class" => "commission_mes_retours",
398        "title" => _("Mes retours"),
399        "right" => array("commission_mes_retours", "commission_mes_retours_tab", ),
400        "open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ),
401    );
402    $links[] = array(
403        "href" => "../scr/tab.php?obj=commission_tous_retours",
404        "class" => "commission_tous_retours",
405        "title" => _("Tous les retours"),
406        "right" => array("commission_tous_retours", "commission_tous_retours_tab", ),
407        "open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ),
408  );  );
409    
410  //  //
# Line 273  $rubrik = array( Line 424  $rubrik = array(
424  $links = array();  $links = array();
425  //  //
426  $links[] = array(  $links[] = array(
427      "href" => "../app/avis_code_barre.php",      "href" => "../scr/dashboard.php",
428      "class" => "avis_code_barre",      "class" => "tableau-de-bord",
429      "title" => _("Retour de consultation"),      "title" => _("tableau de bord"),
430      "right" => array("avis_code_barre", ),      "open" => array("dashboard.php|",),
431      "open" => array("avis_code_barre.php|"),  );
432    $links[] = array(
433        "class" => "category",
434        "title" => _("suivi des pieces"),
435        "right" => array(
436            "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
437            "suivi_envoi_lettre_rar", "suivi_bordereaux",
438        ),
439    );
440    //
441    $links[] = array(
442        "title" => "<hr/>",
443        "right" => array(
444            "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
445            "suivi_envoi_lettre_rar", "suivi_bordereaux",
446        ),
447    );
448    //
449    $links[] = array(
450        "href" => "../app/suivi_retours_de_consultation.php",
451        "class" => "consultation-retour",
452        "title" => _("retours de consultation"),
453        "right" => array(
454            "suivi_retours_de_consultation",
455        ),
456        "open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ),
457    );
458    //
459    $links[] = array(
460        "title" => "<hr/>",
461        "right" => array(
462            "suivi_mise_a_jour_des_dates",
463        ),
464    );
465    //
466    $links[] = array(
467        "href" => "../app/suivi_mise_a_jour_des_dates.php",
468        "class" => "suivi_mise_a_jour_des_dates",
469        "title" => _("Mise a jour des dates"),
470        "right" => array("suivi_mise_a_jour_des_dates", ),
471        "open" => array("suivi_mise_a_jour_des_dates.php|"),
472    );
473    //
474    $links[] = array(
475        "title" => "<hr/>",
476        "right" => array(
477            "suivi_envoi_lettre_rar",
478        ),
479    );
480    //
481    $links[] = array(
482        "href" => "../app/suivi_envoi_lettre_rar.php",
483        "class" => "edition",
484        "title" => _("envoi lettre RAR"),
485        "right" => array("suivi_envoi_lettre_rar", ),
486        "open" => array("suivi_envoi_lettre_rar.php|"),
487    );
488    //
489    $links[] = array(
490        "title" => "<hr/>",
491        "right" => array(
492            "suivi_bordereaux",
493        ),
494    );
495    //
496    $links[] = array(
497        "href" => "../app/suivi_bordereaux.php",
498        "class" => "edition",
499        "title" => _("Bordereaux"),
500        "right" => array("suivi_bordereaux", ),
501        "open" => array("suivi_bordereaux.php|"),
502    );
503    // 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    //
513    $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        "title" => _("gestion"),
525        "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        "title" => _("demandes"),
533        "right" => array("commission_demandes_passage", ),
534        "open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ),
535  );  );
536  //  //
537  $rubrik['links'] = $links;  $rubrik['links'] = $links;
# Line 296  $rubrik = array( Line 550  $rubrik = array(
550  $links = array();  $links = array();
551  //  //
552  $links[] = array(  $links[] = array(
553        "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      "href" => "../scr/tab.php?obj=demande_avis_encours",      "href" => "../scr/tab.php?obj=demande_avis_encours",
570      "class" => "demande_avis_encours",      "class" => "demande_avis_encours",
571      "title" => _("Demandes en cours"),      "title" => _("Demandes en cours"),
# Line 326  $menu[] = $rubrik; Line 596  $menu[] = $rubrik;
596  // }}}  // }}}
597    
598    
599    // Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle
600    // dans cette version
601  // {{{ Rubrique EXPORT  // {{{ Rubrique EXPORT
602  //  //
603  $rubrik = array(  $rubrik = array(
604      "title" => _("export"),     "title" => _("export"),
605      "class" => "edition",     "class" => "edition",
606      "right" => "menu_export",     "right" => "menu_export",
607  );  );
608  //  //
609  $links = array();  $links = array();
610  //  // //
611  $links[] = array(  // $links[] = array(
612      "href" => "../scr/edition.php",  //    "href" => "../scr/edition.php",
613      "class" => "edition",  //    "class" => "edition",
614      "title" => _("edition"),  //    "title" => _("edition"),
615      "right" => "edition",  //    "right" => "edition",
616      "open" => "edition.php|",  //    "open" => "edition.php|",
617    // );
618    // //
619    // $links[] = array(
620    //    "href" => "../app/edition_p.php",
621    //    "class" => "edition",
622    //    "title" => _("edition date depot"),
623    //    "right" => "edition_p",
624    //    "open" => "edition_p.php|",
625    // );
626    // //
627    // $links[] = array(
628    //    "href" => "../app/edition_d.php",
629    //    "class" => "edition",
630    //    "title" => _("edition date decision"),
631    //    "right" => "edition_d",
632    //    "open" => "edition_d.php|",
633    // );
634    // //
635    // $links[] = array(
636    //    "title" => "<hr/>",
637    //    "right" => array("reqmo", "export_sitadel", ),
638    // );
639    // //
640    // $links[] = array(
641    //    "href" => "../scr/reqmo.php",
642    //    "class" => "reqmo",
643    //    "title" => _("requetes memorisees"),
644    //    "right" => "reqmo",
645    //    "open" => array("reqmo.php|", "requeteur.php|", ),
646    // );
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  $links[] = array(  $rubrik['links'] = $links;
657      "href" => "../app/edition_p.php",  //
658      "class" => "edition",  $menu[] = $rubrik;
659      "title" => _("edition date depot"),  // }}}
660      "right" => "edition_p",  
661      "open" => "edition_p.php|",  
662    // {{{ Rubrique PARAMETRAGE
663    //
664    $rubrik = array(
665        "title" => _("parametrage dossiers"),
666        "class" => "parametrage",
667        "right" => "menu_parametrage",
668  );  );
669  //  //
670    $links = array();
671    //
672  $links[] = array(  $links[] = array(
673      "href" => "../app/edition_d.php",      "class" => "category",
674      "class" => "edition",      "title" => _("dossiers"),
675      "title" => _("edition date decision"),      "right" => array(
676      "right" => "edition_d",          "dossier_autorisation_type", "dossier_autorisation_type_tab",
677      "open" => "edition_d.php|",          "dossier_autorisation_type_detaille",
678            "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
679            "dossier_instruction_type_tab", "cerfa", "cerfa_tab",
680        ),
681  );  );
682  //  //
683  $links[] = array(  $links[] = array(
684      "title" => "<hr/>",      "title" => "<hr/>",
685      "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),      "right" => array(
686            "cerfa", "cerfa_tab",
687        ),
688  );  );
689  //  //
690  $links[] = array(  $links[] = array(
691      "href" => "../scr/reqmo.php",      "href" => "../scr/tab.php?obj=cerfa",
692      "class" => "reqmo",      "class" => "cerfa",
693      "title" => _("requetes memorisees"),      "title" => _("cerfa"),
694      "right" => "reqmo",      "right" => array("cerfa", "cerfa_tab", ),
695      "open" => array("reqmo.php|", "requeteur.php|", ),      "open" => array("tab.php|cerfa", "form.php|cerfa", ),
696  );  );
697  //  //
698  $links[] = array(  $links[] = array(
699      "href" => "../app/export_pc.php",      "title" => "<hr/>",
700      "class" => "reqmo",      "right" => array(
701      "title" => _("export PC Lascot"),          "dossier_autorisation_type", "dossier_autorisation_type_tab",
702      "right" => "export_pc",          "dossier_autorisation_type_detaille",
703      "open" => "export_pc.php|",          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
704            "dossier_instruction_type_tab",
705        ),
706  );  );
707  //  //
708  $links[] = array(  $links[] = array(
709      "href" => "../app/export_dp.php",      "href" => "../scr/tab.php?obj=dossier_autorisation_type",
710      "class" => "reqmo",      "class" => "dossier_autorisation_type",
711      "title" => _("export DP Lascot"),      "title" => _("type DA"),
712      "right" => "export_dp",      "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
713      "open" => "export_dp.php|",      "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
714  );  );
715  //  //
716  $links[] = array(  $links[] = array(
717      "href" => "../app/sitadel.php",      "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
718      "class" => "reqmo",      "class" => "dossier_autorisation_type_detaille",
719      "title" => _("export sitadel")." 2",      "title" => _("type DA detaille"),
720      "right" => "export_sitadel",      "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
721      "open" => "sitadel.php|",      "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
 );  
 //  
 $rubrik['links'] = $links;  
 //  
 $menu[] = $rubrik;  
 // }}}  
   
 // {{{ Rubrique PARAMETRAGE  
 //  
 $rubrik = array(  
     "title" => _("parametrage"),  
     "class" => "parametrage",  
     "right" => "menu_parametrage",  
722  );  );
723  //  //
 $links = array();  
 //  
 // GENERAUX  
724  $links[] = array(  $links[] = array(
725      "href" => "../scr/form.php?obj=dossier_numeromanuel",      "href" => "../scr/tab.php?obj=dossier_instruction_type",
726      "class" => "traitement",      "class" => "dossier_instruction_type",
727      "title" => _("numero manuel"),      "title" => _("type DI"),
728      "right" => "dossier_numeromanuel",      "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
729      "open" => "|dossier_numeromanuel",      "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
730  );  );
 //  
731  $links[] = array(  $links[] = array(
732      "href" => "../app/num_dossier.php",      "class" => "category",
733      "class" => "traitement",      "title" => _("demandes"),
734      "title" => _("remise a 0"),      "right" => array(
735      "right" => "num_dossier",          "demande_type",
736      "open" => "num_dossier.php|",          "demande_type_tab", "demande_nature", "demande_nature_tab",
737        ),
738  );  );
739  //  //
740  $links[] = array(  $links[] = array(
741      "title" => "<hr/>",      "title" => "<hr/>",
742      "right" => array(      "right" => array(
743          "architecte", "architecte_tab", "service", "service_tab", "instructeur", "instructeur_tab", "service_categorie", "service_categorie_tab", "lien_service_service_categorie", "lien_service_service_categorie_tab",          "demande_type",
744          "lien_localisation_nature", "lien_localisation_nature_tab",          "demande_type_tab", "demande_nature", "demande_nature_tab",
          "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",  
         "destination", "destination_tab", "nature", "nature_tab", "rivoli",  
         "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",  
745      ),      ),
746  );  );
747  //  //
748  $links[] = array(  $links[] = array(
749      "href" => "../scr/tab.php?obj=architecte",      "href" => "../scr/tab.php?obj=demande_nature",
750      "class" => "architecte",      "class" => "demande_nature",
751      "title" => _("architecte"),      "title" => _("nature"),
752      "right" => array("architecte", "architecte_tab", ),      "right" => array("demande_nature", "demande_nature_tab", ),
753      "open" => array("tab.php|architecte", "form.php|architecte", ),      "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
754  );  );
755  //  //
756  $links[] = array(  $links[] = array(
757      "href" => "../scr/tab.php?obj=service",      "href" => "../scr/tab.php?obj=demande_type",
758      "class" => "service",      "class" => "demande_type",
759      "title" => _("service"),      "title" => _("type"),
760      "right" => array("service", "service_tab", ),      "right" => array("demande_type", "demande_type_tab",),
761      "open" => array("tab.php|service", "form.php|service", ),      "open" => array("tab.php|demande_type", "form.php|demande_type", ),
762  );  );
763    //
764  $links[] = array(  $links[] = array(
765      "href" => "../scr/tab.php?obj=service_categorie",      "class" => "category",
766      "class" => "service_categorie",      "title" => _("workflows"),
767      "title" => _("thematique des services"),      "right" => array(
768      "right" => array("service_categorie", "service_categorie_tab", ),          "workflows",
769      "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),          "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(  $links[] = array(
776      "href" => "../scr/tab.php?obj=lien_service_service_categorie",      "title" => "<hr/>",
777      "class" => "lien_service_service_categorie",      "right" => array(
778      "title" => _("Lien service / thematique"),          "workflows",
779      "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),          "action", "action_tab", "etat",
780      "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),          "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(  $links[] = array(
786      "href" => "../scr/tab.php?obj=instructeur",      "href" => "../app/workflows.php",
787      "class" => "instructeur",      "class" => "workflows",
788      "title" => _("instructeur"),      "title" => _("workflows"),
789      "right" => array("instructeur", "instructeur_tab", ),      "right" => array("workflows", ),
790      "open" => array("tab.php|instructeur", "form.php|instructeur", ),      "open" => array("workflows.php|", ),
791  );  );
792  //  //
793  $links[] = array(  $links[] = array(
794      "href" => "../scr/tab.php?obj=lien_localisation_nature",      "title" => "<hr/>",
795      "class" => "lien_localisation_nature",      "right" => array(
796      "title" => _("Lien instructeur / localisation / type de dossier"),          "evenement", "evenement_tab",
797      "right" => array("lien_localisation_nature", "lien_localisation_nature_tab", ),      ),
     "open" => array("tab.php|lien_localisation_nature", "form.php|lien_localisation_nature", ),  
798  );  );
799  //  //
800  $links[] = array(  $links[] = array(
801      "href" => "../scr/tab.php?obj=travaux",      "href" => "../scr/tab.php?obj=evenement",
802      "class" => "travaux",      "class" => "evenement",
803      "title" => _("travaux"),      "title" => _("evenement"),
804      "right" => array("travaux", "travaux_tab", ),      "right" => array("evenement", "evenement_tab", ),
805      "open" => array("tab.php|travaux", "form.php|travaux", ),      "open" => array("tab.php|evenement", "form.php|evenement", ),
806  );  );
807  //  //
808  $links[] = array(  $links[] = array(
809      "href" => "../scr/tab.php?obj=categorie_demandeur",      "title" => "<hr/>",
810      "class" => "categorie_demandeur",      "right" => array(
811      "title" => _("categorie_demandeur"),          "action", "action_tab", "etat",
812      "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),          "etat_tab", "avis_decision",
813      "open" => array(          "avis_decision_tab",
         "tab.php|categorie_demandeur", "form.php|categorie_demandeur",  
814      ),      ),
815  );  );
816  //  //
817  $links[] = array(  $links[] = array(
818      "href" => "../scr/tab.php?obj=destination",      "href" => "../scr/tab.php?obj=etat",
819      "class" => "destination",      "class" => "workflow-etat",
820      "title" => _("destination"),      "title" => _("etat"),
821      "right" => array("destination", "destination_tab", ),      "right" => array("etat", "etat_tab", ),
822      "open" => array("tab.php|destination", "form.php|destination", ),      "open" => array("tab.php|etat", "form.php|etat", ),
823  );  );
824  //  //
825  $links[] = array(  $links[] = array(
826      "href" => "../scr/tab.php?obj=nature",      "href" => "../scr/tab.php?obj=avis_decision",
827      "class" => "nature",      "class" => "avis_decision",
828      "title" => _("nature"),      "title" => _("avis decision"),
829      "right" => array("nature", "nature_tab", ),      "right" => array("avis_decision", "avis_decision_tab", ),
830      "open" => array("tab.php|nature", "form.php|nature", ),      "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
831  );  );
832  //  //
833  $links[] = array(  $links[] = array(
834      "href" => "../scr/tab.php?obj=rivoli",      "href" => "../scr/tab.php?obj=action",
835      "class" => "rivoli",      "class" => "action",
836      "title" => _("rivoli"),      "title" => _("action"),
837      "right" => array("rivoli", "rivoli_tab", ),      "right" => array("action", "action_tab", ),
838      "open" => array("tab.php|rivoli", "form.php|rivoli", ),      "open" => array("tab.php|action", "form.php|action", ),
839  );  );
840  //  //
841  $links[] = array(  $links[] = array(
842      "href" => "../scr/tab.php?obj=civilite",      "title" => "<hr/>",
843      "class" => "civilite",      "right" => array(
844      "title" => _("civilite"),          "bible", "bible_tab",
845      "right" => array("civilite", "civilite_tab", ),      ),
     "open" => array("tab.php|civilite", "form.php|civilite", ),  
846  );  );
847  //  //
848  $links[] = array(  $links[] = array(
849      "href" => "../scr/tab.php?obj=parametre",      "href" => "../scr/tab.php?obj=bible",
850      "class" => "parametre",      "class" => "bible",
851      "title" => _("parametre")." "._("statistique"),      "title" => _("bible"),
852      "right" => array("parametre", "parametre_tab", ),      "right" => array("bible", "bible_tab", ),
853      "open" => array("tab.php|parametre", "form.php|parametre", ),      "open" => array("tab.php|bible", "form.php|bible", ),
854  );  );
855  //  //
856  $links[] = array(  $links[] = array(
857      "class" => "category",      "class" => "category",
858      "title" => _("workflows"),      "title" => _("editions"),
859      "right" => array(      "right" => array(
860          "action", "action_tab", "transition", "transition_tab", "etat",          "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
861          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",          "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
862          "avis_decision_tab", "avis_consultation", "avis_consultation_tab",          "om_logo", "om_logo_tab",
863      ),      ),
864  );  );
865  //  //
866  $links[] = array(  $links[] = array(
867      "title" => "<hr/>",      "title" => "<hr/>",
868      "right" => array(      "right" => array(
869          "action", "action_tab", "transition", "transition_tab", "etat",          "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",
         "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",  
         "avis_decision_tab", "avis_consultation", "avis_consultation_tab",  
870      ),      ),
871  );  );
872  //  //
873  $links[] = array(  $links[] = array(
874      "href" => "../scr/tab.php?obj=action",      "href" => "../scr/tab.php?obj=om_etat",
875      "class" => "action",      "class" => "om_etat",
876      "title" => _("action"),      "title" => _("om_etat"),
877      "right" => array("action", "action_tab", ),      "right" => array("om_etat", "om_etat_tab", ),
878      "open" => array("tab.php|action", "form.php|action", ),      "open" => array("tab.php|om_etat", "form.php|om_etat", ),
879  );  );
880  //  //
881  $links[] = array(  $links[] = array(
882      "href" => "../scr/tab.php?obj=transition",      "href" => "../scr/tab.php?obj=om_lettretype",
883      "class" => "transition",      "class" => "om_lettretype",
884      "title" => _("transition"),      "title" => _("om_lettretype"),
885      "right" => array("transition", "transition_tab", ),      "right" => array("om_lettretype", "om_lettretype_tab"),
886      "open" => array("tab.php|transition", "form.php|transition", ),      "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
887  );  );
888  //  //
889  $links[] = array(  $links[] = array(
890      "href" => "../scr/tab.php?obj=etat",      "title" => "<hr/>",
891      "class" => "etat",      "right" => array(
892      "title" => _("etat"),          "om_logo", "om_logo_tab",
893      "right" => array("etat", "etat_tab", ),      ),
     "open" => array("tab.php|etat", "form.php|etat", ),  
894  );  );
895  //  //
896  $links[] = array(  $links[] = array(
897      "href" => "../scr/tab.php?obj=evenement",      "href" => "../scr/tab.php?obj=om_logo",
898      "class" => "evenement",      "class" => "om_logo",
899      "title" => _("evenement"),      "title" => _("om_logo"),
900      "right" => array("evenement", "evenement_tab", ),      "right" => array("om_logo", "om_logo_tab", ),
901      "open" => array("tab.php|evenement", "form.php|evenement", ),      "open" => array("tab.php|om_logo", "form.php|om_logo", ),
902  );  );
903  //  //
904    $rubrik['links'] = $links;
905    //
906    $menu[] = $rubrik;
907    // }}}
908    
909    // {{{ Rubrique PARAMETRAGE
910    //
911    $rubrik = array(
912        "title" => _("parametrage"),
913        "class" => "parametrage",
914        "right" => "menu_parametrage",
915    );
916    //
917    $links = array();
918    //
919  $links[] = array(  $links[] = array(
920      "href" => "../scr/tab.php?obj=bible",      "href" => "../scr/tab.php?obj=civilite",
921      "class" => "bible",      "class" => "civilite",
922      "title" => _("bible"),      "title" => _("civilite"),
923      "right" => array("bible", "bible_tab", ),      "right" => array("civilite", "civilite_tab", ),
924      "open" => array("tab.php|bible", "form.php|bible", ),      "open" => array("tab.php|civilite", "form.php|civilite", ),
925  );  );
926  //  //
927  $links[] = array(  $links[] = array(
928      "href" => "../scr/tab.php?obj=avis_decision",      "href" => "../scr/tab.php?obj=arrondissement",
929      "class" => "avis_decision",      "class" => "arrondissement",
930      "title" => _("avis decision"),      "title" => _("arrondissement"),
931      "right" => array("avis_decision", "avis_decision_tab", ),      "right" => array("arrondissement", "arrondissement_tab", ),
932      "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),      "open" => array("tab.php|arrondissement", "form.php|arrondissement", ),
933  );  );
934  //  //
935  $links[] = array(  $links[] = array(
936      "href" => "../scr/tab.php?obj=avis_consultation",      "href" => "../scr/tab.php?obj=quartier",
937      "class" => "avis_consultation",      "class" => "quartier",
938      "title" => _("avis consultation"),      "title" => _("quartier"),
939      "right" => array("avis_consultation", "avis_consultation_tab", ),      "right" => array("quartier", "quartier_tab", ),
940      "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),      "open" => array("tab.php|quartier", "form.php|quartier", ),
941  );  );
942  //  //
943  $links[] = array(  $links[] = array(
944      "class" => "category",      "class" => "category",
945      "title" => _("Organisation"),      "title" => _("Organisation"),
946      "right" => array("direction", "division", "instructeur"),      "right" => array(
947            "direction", "direction_tab", "division", "division_tab", "instructeur",
948            "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
949            "signataire_arrete", "signataire_arrete_tab",
950        ),
951  );  );
952  $links[] = array(  $links[] = array(
953      "title" => "<hr/>",      "title" => "<hr/>",
954      "right" => array("direction", "division", "instructeur"),      "right" => array(
955            "direction", "direction_tab", "division", "division_tab", "instructeur",
956            "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
957            "signataire_arrete", "signataire_arrete_tab",
958        ),
959    );
960    //
961    $links[] = array(
962        "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        "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(  $links[] = array(
# Line 655  $links[] = array( Line 999  $links[] = array(
999  );  );
1000  //  //
1001  $links[] = array(  $links[] = array(
1002        "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      "class" => "category",      "class" => "category",
1011      "title" => _("editions"),      "title" => _("gestion des commissions"),
1012      "right" => array(      "right" => array(
1013          "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",          "comission_type", "comission_type_tab",
         "om_lettretype", "om_lettretype_tab",  
1014      ),      ),
1015  );  );
1016  //  //
1017  $links[] = array(  $links[] = array(
1018      "title" => "<hr/>",      "title" => "<hr/>",
1019      "right" => array(      "right" => array(
1020          "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",          "comission_type", "comission_type_tab",
         "om_lettretype", "om_lettretype_tab",  
1021      ),      ),
1022  );  );
1023  //  //
1024  $links[] = array(  $links[] = array(
1025      "href" => "../scr/tab.php?obj=om_etat",      "href" => "../scr/tab.php?obj=commission_type",
1026      "class" => "etat",      "class" => "commission-type",
1027      "title" => _("om_etat"),      "title" => _("commission_type"),
1028      "right" => array("om_etat", "om_etat_tab", ),      "right" => array("commission_type", "commission_type_tab", ),
1029      "open" => array("tab.php|om_etat", "form.php|om_etat", ),      "open" => array("tab.php|commission_type", "form.php|commission_type", ),
1030  );  );
1031  //  //
1032  $links[] = array(  $links[] = array(
1033      "href" => "../scr/tab.php?obj=om_sousetat",      "class" => "category",
1034      "class" => "sousetat",      "title" => _("gestion des consultations"),
1035      "title" => _("om_sousetat"),      "right" => array(
1036      "right" => array("om_sousetat", "om_sousetat_tab", ),          "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1037      "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),          "service_categorie", "service_categorie_tab",
1038            "lien_service_service_categorie", "lien_service_service_categorie_tab",
1039        ),
1040  );  );
1041  //  //
1042  $links[] = array(  $links[] = array(
1043      "href" => "../scr/tab.php?obj=om_lettretype",      "title" => "<hr/>",
1044      "class" => "lettretype",      "right" => array(
1045      "title" => _("om_lettretype"),          "avis_consultation", "avis_consultation_tab", "service", "service_tab",
1046      "right" => array("om_lettretype", "om_lettretype_tab"),          "service_categorie", "service_categorie_tab",
1047      "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),          "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        "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        "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        "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    
1143    //
1144  $rubrik['links'] = $links;  $rubrik['links'] = $links;
1145  //  //
1146  $menu[] = $rubrik;  $menu[] = $rubrik;
# Line 706  $rubrik = array( Line 1152  $rubrik = array(
1152      "title" => _("sig"),      "title" => _("sig"),
1153      "class" => "sig",      "class" => "sig",
1154      "right" => "menu_sig",      "right" => "menu_sig",
1155        "parameters" => array("option_localisation" => "sig_interne", ),
1156  );  );
1157  //  //
1158  $links = array();  $links = array();
# Line 716  $links[] = array( Line 1163  $links[] = array(
1163      "title" => _("parcelle"),      "title" => _("parcelle"),
1164      "right" => array("parcelle", "parcelle_tab"),      "right" => array("parcelle", "parcelle_tab"),
1165      "open" => array("tab.php|parcelle", "form.php|parcelle", ),      "open" => array("tab.php|parcelle", "form.php|parcelle", ),
1166        "parameters" => array("option_localisation" => "sig_interne", ),
1167  );  );
1168  //  //
1169  $links[] = array(  $links[] = array(
# Line 724  $links[] = array( Line 1172  $links[] = array(
1172      "title" => _("proprietaire"),      "title" => _("proprietaire"),
1173      "right" => array("proprietaire", "proprietaire_tab"),      "right" => array("proprietaire", "proprietaire_tab"),
1174      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
1175        "parameters" => array("option_localisation" => "sig_interne", ),
1176  );  );
1177  //  //
1178  $links[] = array(  $links[] = array(
# Line 734  $links[] = array( Line 1183  $links[] = array(
1183          "servitude_ligne", "servitude_ligne_tab", "servitude_point",          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1184          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1185      ),      ),
1186        "parameters" => array("option_localisation" => "sig_interne", ),
1187  );  );
1188  //  //
1189  $links[] = array(  $links[] = array(
# Line 743  $links[] = array( Line 1193  $links[] = array(
1193          "servitude_ligne", "servitude_ligne_tab", "servitude_point",          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1194          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1195      ),      ),
1196        "parameters" => array("option_localisation" => "sig_interne", ),
1197  );  );
1198  //  //
1199  $links[] = array(  $links[] = array(
# Line 751  $links[] = array( Line 1202  $links[] = array(
1202      "title" => _("pos"),      "title" => _("pos"),
1203      "right" => array("pos", "pos_tab"),      "right" => array("pos", "pos_tab"),
1204      "open" => array("tab.php|pos", "form.php|pos", ),      "open" => array("tab.php|pos", "form.php|pos", ),
1205        "parameters" => array("option_localisation" => "sig_interne", ),
1206  );  );
1207  //  //
1208  $links[] = array(  $links[] = array(
# Line 761  $links[] = array( Line 1213  $links[] = array(
1213      "open" => array(      "open" => array(
1214          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
1215      ),      ),
1216        "parameters" => array("option_localisation" => "sig_interne", ),
1217  );  );
1218  //  //
1219  $links[] = array(  $links[] = array(
# Line 769  $links[] = array( Line 1222  $links[] = array(
1222      "title" => _("servitude_ligne"),      "title" => _("servitude_ligne"),
1223      "right" => array("servitude_ligne", "servitude_ligne_tab"),      "right" => array("servitude_ligne", "servitude_ligne_tab"),
1224      "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),      "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
1225        "parameters" => array("option_localisation" => "sig_interne", ),
1226  );  );
1227  //  //
1228  $links[] = array(  $links[] = array(
# Line 777  $links[] = array( Line 1231  $links[] = array(
1231      "title" => _("servitude_point"),      "title" => _("servitude_point"),
1232      "right" => array("servitude_point", "servitude_point_tab"),      "right" => array("servitude_point", "servitude_point_tab"),
1233      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
1234        "parameters" => array("option_localisation" => "sig_interne", ),
1235  );  );
1236  //  //
1237  $links[] = array(  $links[] = array(
# Line 785  $links[] = array( Line 1240  $links[] = array(
1240      "title" => _("parcelle_lot"),      "title" => _("parcelle_lot"),
1241      "right" => array("parcelle_lot", "parcelle_lot_tab"),      "right" => array("parcelle_lot", "parcelle_lot_tab"),
1242      "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),      "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1243        "parameters" => array("option_localisation" => "sig_interne", ),
1244  );  );
1245  //  //
1246  $rubrik['links'] = $links;  $rubrik['links'] = $links;
# Line 878  $links[] = array( Line 1334  $links[] = array(
1334      "class" => "category",      "class" => "category",
1335      "title" => _("tableaux de bord"),      "title" => _("tableaux de bord"),
1336      "right" => array(      "right" => array(
1337          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",          "om_widget", "om_widget_tab", "om_dashboard",
1338      ),      ),
1339  );  );
1340  //  //
1341  $links[] = array(  $links[] = array(
1342      "title" => "<hr/>",      "title" => "<hr/>",
1343      "right" => array(      "right" => array(
1344          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",          "om_widget", "om_widget_tab", "om_dashboard",
1345      ),      ),
1346  );  );
1347  //  //
# Line 898  $links[] = array( Line 1354  $links[] = array(
1354  );  );
1355  //  //
1356  $links[] = array(  $links[] = array(
1357      "href" => "../scr/tab.php?obj=om_dashboard",      "href" => "../scr/dashboard_composer.php",
1358      "class" => "om_dashboard",      "class" => "om_dashboard",
1359      "title" => _("om_dashboard"),      "title" => _("composition"),
1360      "right" => array( ),      "right" => array("om_dashboard", ),
1361      "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),      "open" => array("dashboard_composer.php|", ),
1362  );  );
1363  //  //
1364  $links[] = array(  $links[] = array(
# Line 911  $links[] = array( Line 1367  $links[] = array(
1367      "right" => array(      "right" => array(
1368          "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",          "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1369      ),      ),
1370        "parameters" => array("option_localisation" => "sig_interne", ),
1371  );  );
1372  //  //
1373  $links[] = array(  $links[] = array(
# Line 918  $links[] = array( Line 1375  $links[] = array(
1375      "right" => array(      "right" => array(
1376          "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",          "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1377      ),      ),
1378        "parameters" => array("option_localisation" => "sig_interne", ),
1379  );  );
1380  //  //
1381  $links[] = array(  $links[] = array(
# Line 926  $links[] = array( Line 1384  $links[] = array(
1384      "title" => _("om_sig_map"),      "title" => _("om_sig_map"),
1385      "right" => array("om_sig_map", "om_sig_map_tab", ),      "right" => array("om_sig_map", "om_sig_map_tab", ),
1386      "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),      "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1387        "parameters" => array("option_localisation" => "sig_interne", ),
1388  );  );
1389  //  //
1390  $links[] = array(  $links[] = array(
# Line 934  $links[] = array( Line 1393  $links[] = array(
1393      "title" => _("om_sig_wms"),      "title" => _("om_sig_wms"),
1394      "right" => array("om_sig_wms", "om_sig_wms_tab", ),      "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1395      "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),      "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1396        "parameters" => array("option_localisation" => "sig_interne", ),
1397  );  );
1398  //  //
1399  $links[] = array(  $links[] = array(
1400      "class" => "category",      "class" => "category",
1401      "title" => _("options avancees"),      "title" => _("options avancees"),
1402      "right" => array("import", "gen", ),      "right" => array("import", "gen", "om_requete", "om_requete_tab",
1403                         "om_sousetat", "om_sousetat_tab",),
1404    );
1405    //
1406    $links[] = array(
1407        "title" => "<hr/>",
1408        "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(  $links[] = array(

Legend:
Removed from v.656  
changed lines
  Added in v.2327

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26