/[openfoncier]/branches/3.14.x/dyn/menu.inc.php
ViewVC logotype

Diff of /branches/3.14.x/dyn/menu.inc.php

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

revision 1357 by fmichon, Mon Mar 11 14:20:48 2013 UTC revision 2402 by nhaye, Mon Oct 14 16:32:31 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_encours_ajouter", "demande_dossier_encours_tab",
107            "demande_autre_dossier_ajouter", "demande_autre_dossier_tab",
108            "demande_consulter","demande_tab",
109        ),
110  );  );
111  $links[] = array(  $links[] = array(
112      "title" => "<hr/>",      "title" => "<hr/>",
113      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",      "right" => array(
114                       "demande_dossier_existant","demande_dossier_existant_tab",          "demande_dossier_encours_ajouter",
115                       "demande_recepisse_demande","demande_recepisse_demande_tab",),          "demande_dossier_encours_ajouter", "demande_dossier_encours_tab",
116        ),
117  );  );
118  $links[] = array(  $links[] = array(
119      "href" => "../scr/form.php?obj=demande_nouveau_dossier&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",      "href" => "../scr/form.php?obj=demande_nouveau_dossier&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
120      "class" => "demande",      "class" => "nouveau-dossier",
121      "title" => _("nouveau dossier"),      "title" => _("nouveau dossier"),
122      "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),      "right" => array(
123            "demande_nouveau_dossier_ajouter",
124        ),
125      "open" => array("form.php|demande_nouveau_dossier",),      "open" => array("form.php|demande_nouveau_dossier",),
126  );  );
127  $links[] = array(  $links[] = array(
128      "href" => "../scr/tab.php?obj=demande_dossier_existant",      "href" => "../scr/tab.php?obj=demande_dossier_encours",
129      "class" => "demande_dossier_existant",      "class" => "dossier-existant",
130      "title" => _("dossier existant"),      "title" => _("dossier en cours"),
131      "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),      "right" => array(
132      "open" => array("tab.php|demande_dossier_existant", "form.php|demande_dossier_existant"),          "demande_dossier_encours_ajouter","demande_dossier_encours_tab",
133        ),
134        "open" => array("tab.php|demande_dossier_encours", "form.php|demande_dossier_encours"),
135  );  );
136  $links[] = array(  $links[] = array(
137      "href" => "../scr/tab.php?obj=demande",      "href" => "../scr/tab.php?obj=demande_autre_dossier",
138      "class" => "demande",      "class" => "autre-dossier",
139      "title" => _("recepisse de demande"),      "title" => _("autre dossier"),
140      "right" => array("demande_recepisse_demande", "demande_recepisse_demande_tab", ),      "right" => array(
141      "open" => array("tab.php|demande","form.php|demande"),          "demande_autre_dossier_ajouter","demande_autre_dossier_tab",
142        ),
143        "open" => array("tab.php|demande_autre_dossier", "form.php|demande_autre_dossier"),
144  );  );
 //  
145  $links[] = array(  $links[] = array(
146      "class" => "category",      "title" => "<hr/>",
147      "title" => _("Affichage des dossiers"),      "right" => array(
148      "right" => array("edition_reglementaire","attestation_affichage",),          "demande_consulter", "demande_tab"
149        ),
150  );  );
151  $links[] = array(  $links[] = array(
152      "title" => "<hr/>",      "href" => "../scr/tab.php?obj=demande",
153      "right" => array("edition", "attestation_affichage"),      "class" => "pdf",
154        "title" => _("recepisse"),
155        "right" => array(
156            "demande_consulter", "demande_tab"
157        ),
158        "open" => array("tab.php|demande","form.php|demande"),
159  );  );
160  $links[] = array(  $links[] = array(
161      "href" => "../app/edition_reglementaire.php",      "title" => "<hr/>",
162      "class" => "edition",      "right" => array(
163      "title" => _("edition reglementaire"),          "petitionnaire_frequent_consulter", "petitionnaire_frequent_tab"
164      "right" => "edition_reglementaire",      ),
     "open" => "edition_reglementaire.php|",  
165  );  );
166  $links[] = array(  $links[] = array(
167      "href" => "../app/attestation_affichage.php",      "href" => "../scr/tab.php?obj=petitionnaire_frequent",
168      "class" => "attestation_affichage",      "class" => "petitionnaire_frequent",
169      "title" => _("attestation d'affichage"),      "title" => _("petitionnaire_frequent"),
170      "right" => "attestation_affichage",      "right" => array(
171      "open" => "attestation_affichage.php|",          "petitionnaire_frequent_consulter", "petitionnaire_frequent_tab"
172        ),
173        "open" => array("tab.php|petitionnaire_frequent","form.php|petitionnaire_frequent"),
174  );  );
175  //  //
176  /*$links[] = array(  $links[] = array(
177      "class" => "category",      "class" => "category",
178      "title" => _("Qualification"),      "title" => _("affichage reglementaire"),
179      "right" => array("qualification"),      "right" => array(
180            "affichage_reglementaire_registre",
181            "affichage_reglementaire_attestation",
182        ),
183  );  );
184  $links[] = array(  $links[] = array(
185      "title" => "<hr/>",      "title" => "<hr/>",
186      "right" => array("qualification"),      "right" => array(
187            "affichage_reglementaire_registre",
188            "affichage_reglementaire_attestation",
189        ),
190  );  );
191  $links[] = array(  $links[] = array(
192      "href" => "../scr/tab.php?obj=dossier",      "href" => "../app/affichage_reglementaire_registre.php",
193      "class" => "qualification",      "class" => "edition",
194      "title" => _("A Qualifier"),      "title" => _("registre"),
195      "right" => array("qualification", "qualification_tab", ),      "right" => array(
196      "open" => array("tab.php|qualification", "form.php|qualification", ),          "affichage_reglementaire_registre",
197  );*/      ),
198        "open" => "affichage_reglementaire_registre.php|",
 //  
 $rubrik['links'] = $links;  
 //  
 $menu[] = $rubrik;  
 // }}}  
   
 // {{{ Rubrique INSTRUCTION  
 //  
 $rubrik = array(  
     "title" => _("Autorisation"),  
     "class" => "autorisation",  
     "right" => "menu_autorisation",  
199  );  );
 //  
 $links = array();  
   
200  $links[] = array(  $links[] = array(
201      "href" => "../scr/tab.php?obj=dossier_autorisation",      "href" => "../app/affichage_reglementaire_attestation.php",
202      "class" => "dossier_autorisation",      "class" => "edition",
203      "title" => _("Dossiers d'autorisation"),      "title" => _("attestation"),
204      "right" => array("dossier_autorisation", "dossier_autorisation_tab", ),      "right" => array(
205      "open" => array("tab.php|dossier_autorisation", "dossier_autorisation.php|", ),          "affichage_reglementaire_attestation",
206        ),
207        "open" => "affichage_reglementaire_attestation.php|",
208  );  );
209  //  //
210  $rubrik['links'] = $links;  $rubrik['links'] = $links;
# Line 148  $rubrik = array( Line 221  $rubrik = array(
221  );  );
222  //  //
223  $links = array();  $links = array();
224    //
225    $links[] = array(
226        "href" => "../scr/dashboard.php",
227        "class" => "tableau-de-bord",
228        "title" => _("tableau de bord"),
229        "open" => array("dashboard.php|",),
230    );
231  // Catégorie DOSSIERS D'INSTRUCTION  // Catégorie DOSSIERS D'INSTRUCTION
232  $links[] = array(  $links[] = array(
233      "class" => "category",      "class" => "category",
# Line 218  $links[] = array( Line 298  $links[] = array(
298  //  //
299  $links[] = array(  $links[] = array(
300      "href" => "../scr/tab.php?obj=dossier_instruction",      "href" => "../scr/tab.php?obj=dossier_instruction",
301      "class" => "dossier_instruction",      "class" => "dossier_instruction_recherche",
302      "title" => _("recherche"),      "title" => _("recherche"),
303      "right" => array("dossier_instruction", "dossier_instruction_tab", ),      "right" => array("dossier_instruction", "dossier_instruction_tab", ),
304      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
# Line 228  $links[] = array( Line 308  $links[] = array(
308  $links[] = array(  $links[] = array(
309      "class" => "category",      "class" => "category",
310      "title" => _("qualification"),      "title" => _("qualification"),
311      "right" => array("dossier_qualifier", ),      "right" => array("dossier_qualifier", "architecte_frequent",),
312  );  );
313    //
314  $links[] = array(  $links[] = array(
315      "title" => "<hr/>",      "title" => "<hr/>",
316      "right" => array("dossier_qualifier", ),      "right" => array("dossier_qualifier", "architecte_frequent", ),
317  );  );
318    //
319  $links[] = array(  $links[] = array(
320      "href" => "../scr/tab.php?obj=dossier_qualifier",      "href" => "../scr/tab.php?obj=dossier_qualifier",
321      "class" => "dossier_qualifier",      "class" => "dossier_qualifier",
322      "title" => _("A qualifier"),      "title" => _("dossiers a qualifier"),
323      "right" => array("dossier_qualifier", "dossier_qualifier_tab", ),      "right" => array("dossier_qualifier", "dossier_qualifier_tab", ),
324      "open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ),      "open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ),
325  );  );
326    //
327    $links[] = array(
328        "href" => "../scr/tab.php?obj=architecte_frequent",
329        "class" => "architecte_frequent",
330        "title" => _("architecte_frequent"),
331        "right" => array("architecte_frequent", "architecte_frequent_tab", ),
332        "open" => array("tab.php|architecte_frequent", "form.php|architecte_frequent", ),
333    );
334  // Catégorie CONSULTATIONS  // Catégorie CONSULTATIONS
335  $links[] = array(  $links[] = array(
336      "class" => "category",      "class" => "category",
# Line 344  $rubrik = array( Line 434  $rubrik = array(
434  $links = array();  $links = array();
435  //  //
436  $links[] = array(  $links[] = array(
437      "href" => "../app/avis_code_barre.php",      "href" => "../scr/dashboard.php",
438      "class" => "avis_code_barre",      "class" => "tableau-de-bord",
439      "title" => _("Retour de consultation"),      "title" => _("tableau de bord"),
440      "right" => array("avis_code_barre", ),      "open" => array("dashboard.php|",),
441      "open" => array("avis_code_barre.php|", "form.php|consultation", ),  );
442    $links[] = array(
443        "class" => "category",
444        "title" => _("suivi des pieces"),
445        "right" => array(
446            "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
447            "suivi_envoi_lettre_rar", "suivi_bordereaux",
448        ),
449    );
450    //
451    $links[] = array(
452        "title" => "<hr/>",
453        "right" => array(
454            "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
455            "suivi_envoi_lettre_rar", "suivi_bordereaux",
456        ),
457    );
458    //
459    $links[] = array(
460        "href" => "../app/suivi_retours_de_consultation.php",
461        "class" => "consultation-retour",
462        "title" => _("retours de consultation"),
463        "right" => array(
464            "suivi_retours_de_consultation",
465        ),
466        "open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ),
467  );  );
468  //  //
469  $links[] = array(  $links[] = array(
470      "href" => "../app/maj_dates_suivi.php",      "title" => "<hr/>",
471      "class" => "maj_dates_suivi",      "right" => array(
472            "suivi_mise_a_jour_des_dates",
473        ),
474    );
475    //
476    $links[] = array(
477        "href" => "../app/suivi_mise_a_jour_des_dates.php",
478        "class" => "suivi_mise_a_jour_des_dates",
479      "title" => _("Mise a jour des dates"),      "title" => _("Mise a jour des dates"),
480      "right" => array("maj_dates_suivi", ),      "right" => array("suivi_mise_a_jour_des_dates", ),
481      "open" => array("maj_dates_suivi.php|"),      "open" => array("suivi_mise_a_jour_des_dates.php|"),
482  );  );
483  //  //
484  $links[] = array(  $links[] = array(
485      "href" => "../app/envoi_lettre_rar.php",      "title" => "<hr/>",
486      "class" => "envoi_lettre_rar",      "right" => array(
487      "title" => _("Envoi lettre rar"),          "suivi_envoi_lettre_rar",
488      "right" => array("envoi_lettre_rar", ),      ),
     "open" => array("envoi_lettre_rar.php|"),  
489  );  );
490  //  //
491  $links[] = array(  $links[] = array(
492      "href" => "../app/bordereaux_envoi.php",      "href" => "../app/suivi_envoi_lettre_rar.php",
493      "class" => "bordereaux_envoi",      "class" => "edition",
494        "title" => _("envoi lettre RAR"),
495        "right" => array("suivi_envoi_lettre_rar", ),
496        "open" => array("suivi_envoi_lettre_rar.php|"),
497    );
498    //
499    $links[] = array(
500        "title" => "<hr/>",
501        "right" => array(
502            "suivi_bordereaux",
503        ),
504    );
505    //
506    $links[] = array(
507        "href" => "../app/suivi_bordereaux.php",
508        "class" => "edition",
509      "title" => _("Bordereaux"),      "title" => _("Bordereaux"),
510      "right" => array("bordereaux_envoi", ),      "right" => array("suivi_bordereaux", ),
511      "open" => array("bordereaux_envoi.php|"),      "open" => array("suivi_bordereaux.php|"),
512  );  );
513  // Catégorie COMMISSIONS  // Catégorie COMMISSIONS
514  $links[] = array(  $links[] = array(
# Line 395  $links[] = array( Line 531  $links[] = array(
531  $links[] = array(  $links[] = array(
532      "href" => "../scr/tab.php?obj=commission",      "href" => "../scr/tab.php?obj=commission",
533      "class" => "commissions",      "class" => "commissions",
534      "title" => _("Gestion des commissions"),      "title" => _("gestion"),
535      "right" => array("commission", ),      "right" => array("commission", ),
536      "open" => array("tab.php|commission", "form.php|commission", ),      "open" => array("tab.php|commission", "form.php|commission", ),
537  );  );
# Line 403  $links[] = array( Line 539  $links[] = array(
539  $links[] = array(  $links[] = array(
540      "href" => "../scr/tab.php?obj=commission_demandes_passage",      "href" => "../scr/tab.php?obj=commission_demandes_passage",
541      "class" => "commissions-demande-passage",      "class" => "commissions-demande-passage",
542      "title" => _("Demandes de passage"),      "title" => _("demandes"),
543      "right" => array("commission_demandes_passage", ),      "right" => array("commission_demandes_passage", ),
544      "open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ),      "open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ),
545  );  );
# Line 424  $rubrik = array( Line 560  $rubrik = array(
560  $links = array();  $links = array();
561  //  //
562  $links[] = array(  $links[] = array(
563        "href" => "../scr/dashboard.php",
564        "class" => "tableau-de-bord",
565        "title" => _("tableau de bord"),
566        "open" => array("dashboard.php|",),
567    );
568    //
569    $links[] = array(
570        "title" => "<hr/>",
571        "right" => array(
572            "demande_avis_encours", "demande_avis_encours_tab",
573            "demande_avis_passee", "demande_avis_passee_tab",
574            "demande_avis", "demande_avis_tab",
575        ),
576    );
577    //
578    $links[] = array(
579      "href" => "../scr/tab.php?obj=demande_avis_encours",      "href" => "../scr/tab.php?obj=demande_avis_encours",
580      "class" => "demande_avis_encours",      "class" => "demande_avis_encours",
581      "title" => _("Demandes en cours"),      "title" => _("Demandes en cours"),
# Line 454  $menu[] = $rubrik; Line 606  $menu[] = $rubrik;
606  // }}}  // }}}
607    
608    
609    // Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle
610    // dans cette version
611  // {{{ Rubrique EXPORT  // {{{ Rubrique EXPORT
612  //  //
613  $rubrik = array(  $rubrik = array(
614      "title" => _("export"),     "title" => _("export"),
615      "class" => "edition",     "class" => "edition",
616      "right" => "menu_export",     "right" => "menu_export",
617    );
618    //
619    $links = array();
620    // //
621    // $links[] = array(
622    //    "href" => "../scr/edition.php",
623    //    "class" => "edition",
624    //    "title" => _("edition"),
625    //    "right" => "edition",
626    //    "open" => "edition.php|",
627    // );
628    // //
629    // $links[] = array(
630    //    "href" => "../app/edition_p.php",
631    //    "class" => "edition",
632    //    "title" => _("edition date depot"),
633    //    "right" => "edition_p",
634    //    "open" => "edition_p.php|",
635    // );
636    // //
637    // $links[] = array(
638    //    "href" => "../app/edition_d.php",
639    //    "class" => "edition",
640    //    "title" => _("edition date decision"),
641    //    "right" => "edition_d",
642    //    "open" => "edition_d.php|",
643    // );
644    // //
645    // $links[] = array(
646    //    "title" => "<hr/>",
647    //    "right" => array("reqmo", "export_sitadel", ),
648    // );
649    // //
650    // $links[] = array(
651    //    "href" => "../scr/reqmo.php",
652    //    "class" => "reqmo",
653    //    "title" => _("requetes memorisees"),
654    //    "right" => "reqmo",
655    //    "open" => array("reqmo.php|", "requeteur.php|", ),
656    // );
657    //
658    $links[] = array(
659       "href" => "../app/sitadel.php",
660       "class" => "reqmo",
661       "title" => _("export sitadel"),
662       "right" => "export_sitadel",
663       "open" => "sitadel.php|",
664    );
665    //
666    $rubrik['links'] = $links;
667    //
668    $menu[] = $rubrik;
669    // }}}
670    
671    
672    // {{{ Rubrique PARAMETRAGE
673    //
674    $rubrik = array(
675        "title" => _("parametrage dossiers"),
676        "class" => "parametrage",
677        "right" => "menu_parametrage",
678  );  );
679  //  //
680  $links = array();  $links = array();
681  //  //
682  $links[] = array(  $links[] = array(
683      "href" => "../scr/edition.php",      "class" => "category",
684      "class" => "edition",      "title" => _("dossiers"),
685      "title" => _("edition"),      "right" => array(
686      "right" => "edition",          "dossier_autorisation_type", "dossier_autorisation_type_tab",
687      "open" => "edition.php|",          "dossier_autorisation_type_detaille",
688            "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
689            "dossier_instruction_type_tab", "cerfa", "cerfa_tab",
690        ),
691  );  );
692  //  //
693  $links[] = array(  $links[] = array(
694      "href" => "../app/edition_p.php",      "title" => "<hr/>",
695      "class" => "edition",      "right" => array(
696      "title" => _("edition date depot"),          "cerfa", "cerfa_tab",
697      "right" => "edition_p",      ),
     "open" => "edition_p.php|",  
698  );  );
699  //  //
700  $links[] = array(  $links[] = array(
701      "href" => "../app/edition_d.php",      "href" => "../scr/tab.php?obj=cerfa",
702      "class" => "edition",      "class" => "cerfa",
703      "title" => _("edition date decision"),      "title" => _("cerfa"),
704      "right" => "edition_d",      "right" => array("cerfa", "cerfa_tab", ),
705      "open" => "edition_d.php|",      "open" => array("tab.php|cerfa", "form.php|cerfa", ),
706  );  );
707  //  //
708  $links[] = array(  $links[] = array(
709      "title" => "<hr/>",      "title" => "<hr/>",
710      "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),      "right" => array(
711            "dossier_autorisation_type", "dossier_autorisation_type_tab",
712            "dossier_autorisation_type_detaille",
713            "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
714            "dossier_instruction_type_tab",
715        ),
716  );  );
717  //  //
718  $links[] = array(  $links[] = array(
719      "href" => "../scr/reqmo.php",      "href" => "../scr/tab.php?obj=dossier_autorisation_type",
720      "class" => "reqmo",      "class" => "dossier_autorisation_type",
721      "title" => _("requetes memorisees"),      "title" => _("type DA"),
722      "right" => "reqmo",      "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
723      "open" => array("reqmo.php|", "requeteur.php|", ),      "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
724  );  );
725  //  //
726  $links[] = array(  $links[] = array(
727      "href" => "../app/export_pc.php",      "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
728      "class" => "reqmo",      "class" => "dossier_autorisation_type_detaille",
729      "title" => _("export PC Lascot"),      "title" => _("type DA detaille"),
730      "right" => "export_pc",      "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
731      "open" => "export_pc.php|",      "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
732  );  );
733  //  //
734  $links[] = array(  $links[] = array(
735      "href" => "../app/export_dp.php",      "href" => "../scr/tab.php?obj=dossier_instruction_type",
736      "class" => "reqmo",      "class" => "dossier_instruction_type",
737      "title" => _("export DP Lascot"),      "title" => _("type DI"),
738      "right" => "export_dp",      "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
739      "open" => "export_dp.php|",      "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
740  );  );
 //  
741  $links[] = array(  $links[] = array(
742      "href" => "../app/sitadel.php",      "class" => "category",
743      "class" => "reqmo",      "title" => _("demandes"),
744      "title" => _("export sitadel")." 2",      "right" => array(
745      "right" => "export_sitadel",          "demande_type",
746      "open" => "sitadel.php|",          "demande_type_tab", "demande_nature", "demande_nature_tab",
747        ),
748  );  );
749  //  //
750  $rubrik['links'] = $links;  $links[] = array(
751        "title" => "<hr/>",
752        "right" => array(
753            "demande_type",
754            "demande_type_tab", "demande_nature", "demande_nature_tab",
755        ),
756    );
757  //  //
758  $menu[] = $rubrik;  $links[] = array(
759  // }}}      "href" => "../scr/tab.php?obj=demande_nature",
760        "class" => "demande_nature",
761  // {{{ Rubrique PARAMETRAGE      "title" => _("nature"),
762        "right" => array("demande_nature", "demande_nature_tab", ),
763        "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
764    );
765  //  //
766  $rubrik = array(  $links[] = array(
767      "title" => _("parametrage"),      "href" => "../scr/tab.php?obj=demande_type",
768      "class" => "parametrage",      "class" => "demande_type",
769      "right" => "menu_parametrage",      "title" => _("type"),
770        "right" => array("demande_type", "demande_type_tab",),
771        "open" => array("tab.php|demande_type", "form.php|demande_type", ),
772  );  );
773  //  //
774  $links = array();  $links[] = array(
775        "class" => "category",
776        "title" => _("workflows"),
777        "right" => array(
778            "workflows",
779            "action", "action_tab", "etat",
780            "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
781            "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
782        ),
783    );
784  //  //
 // GENERAUX  
785  $links[] = array(  $links[] = array(
786      "href" => "../scr/form.php?obj=dossier_numeromanuel",      "title" => "<hr/>",
787      "class" => "traitement",      "right" => array(
788      "title" => _("numero manuel"),          "workflows",
789      "right" => "dossier_numeromanuel",          "action", "action_tab", "etat",
790      "open" => "|dossier_numeromanuel",          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
791            "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
792        ),
793  );  );
794  //  //
795  $links[] = array(  $links[] = array(
796      "href" => "../app/num_dossier.php",      "href" => "../app/workflows.php",
797      "class" => "traitement",      "class" => "workflows",
798      "title" => _("remise a 0"),      "title" => _("workflows"),
799      "right" => "num_dossier",      "right" => array("workflows", ),
800      "open" => "num_dossier.php|",      "open" => array("workflows.php|", ),
801  );  );
802  //  //
803  $links[] = array(  $links[] = array(
804      "title" => "<hr/>",      "title" => "<hr/>",
805      "right" => array(      "right" => array(
806          "architecte", "architecte_tab",          "evenement", "evenement_tab",
          "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",  
         "destination", "destination_tab", "nature", "nature_tab", "rivoli",  
         "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",  
807      ),      ),
808  );  );
809  //  //
810  $links[] = array(  $links[] = array(
811      "href" => "../scr/tab.php?obj=architecte",      "href" => "../scr/tab.php?obj=evenement",
812      "class" => "architecte",      "class" => "evenement",
813      "title" => _("architecte"),      "title" => _("evenement"),
814      "right" => array("architecte", "architecte_tab", ),      "right" => array("evenement", "evenement_tab", ),
815      "open" => array("tab.php|architecte", "form.php|architecte", ),      "open" => array("tab.php|evenement", "form.php|evenement", ),
816  );  );
   
817  //  //
818  $links[] = array(  $links[] = array(
819      "href" => "../scr/tab.php?obj=travaux",      "title" => "<hr/>",
820      "class" => "travaux",      "right" => array(
821      "title" => _("travaux"),          "action", "action_tab", "etat",
822      "right" => array("travaux", "travaux_tab", ),          "etat_tab", "avis_decision",
823      "open" => array("tab.php|travaux", "form.php|travaux", ),          "avis_decision_tab",
824        ),
825  );  );
826  //  //
827  $links[] = array(  $links[] = array(
828      "href" => "../scr/tab.php?obj=categorie_demandeur",      "href" => "../scr/tab.php?obj=etat",
829      "class" => "categorie_demandeur",      "class" => "workflow-etat",
830      "title" => _("categorie_demandeur"),      "title" => _("etat"),
831      "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),      "right" => array("etat", "etat_tab", ),
832      "open" => array(      "open" => array("tab.php|etat", "form.php|etat", ),
         "tab.php|categorie_demandeur", "form.php|categorie_demandeur",  
     ),  
833  );  );
834  //  //
835  $links[] = array(  $links[] = array(
836      "href" => "../scr/tab.php?obj=destination",      "href" => "../scr/tab.php?obj=avis_decision",
837      "class" => "destination",      "class" => "avis_decision",
838      "title" => _("destination"),      "title" => _("avis decision"),
839      "right" => array("destination", "destination_tab", ),      "right" => array("avis_decision", "avis_decision_tab", ),
840      "open" => array("tab.php|destination", "form.php|destination", ),      "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
841  );  );
842  //  //
843  $links[] = array(  $links[] = array(
844      "href" => "../scr/tab.php?obj=rivoli",      "href" => "../scr/tab.php?obj=action",
845      "class" => "rivoli",      "class" => "action",
846      "title" => _("rivoli"),      "title" => _("action"),
847      "right" => array("rivoli", "rivoli_tab", ),      "right" => array("action", "action_tab", ),
848      "open" => array("tab.php|rivoli", "form.php|rivoli", ),      "open" => array("tab.php|action", "form.php|action", ),
849  );  );
850  //  //
851  $links[] = array(  $links[] = array(
852      "href" => "../scr/tab.php?obj=civilite",      "title" => "<hr/>",
853      "class" => "civilite",      "right" => array(
854      "title" => _("civilite"),          "bible", "bible_tab",
855      "right" => array("civilite", "civilite_tab", ),      ),
     "open" => array("tab.php|civilite", "form.php|civilite", ),  
856  );  );
857  //  //
858  $links[] = array(  $links[] = array(
859      "href" => "../scr/tab.php?obj=parametre",      "href" => "../scr/tab.php?obj=bible",
860      "class" => "parametre",      "class" => "bible",
861      "title" => _("parametre")." "._("statistique"),      "title" => _("bible"),
862      "right" => array("parametre", "parametre_tab", ),      "right" => array("bible", "bible_tab", ),
863      "open" => array("tab.php|parametre", "form.php|parametre", ),      "open" => array("tab.php|bible", "form.php|bible", ),
864  );  );
   
865  //  //
866  $links[] = array(  $links[] = array(
867      "class" => "category",      "class" => "category",
868      "title" => _("workflows"),      "title" => _("editions"),
869      "right" => array(      "right" => array(
870          "action", "action_tab", "transition", "transition_tab", "etat",          "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
871          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",          "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
872          "avis_decision_tab", "avis_consultation", "avis_consultation_tab",          "om_logo", "om_logo_tab",
873      ),      ),
874  );  );
875  //  //
876  $links[] = array(  $links[] = array(
877      "title" => "<hr/>",      "title" => "<hr/>",
878      "right" => array(      "right" => array(
879          "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",  
880      ),      ),
881  );  );
882  //  //
883  $links[] = array(  $links[] = array(
884      "href" => "../scr/tab.php?obj=action",      "href" => "../scr/tab.php?obj=om_etat",
885      "class" => "action",      "class" => "om_etat",
886      "title" => _("action"),      "title" => _("om_etat"),
887      "right" => array("action", "action_tab", ),      "right" => array("om_etat", "om_etat_tab", ),
888      "open" => array("tab.php|action", "form.php|action", ),      "open" => array("tab.php|om_etat", "form.php|om_etat", ),
889  );  );
890  //  //
891  $links[] = array(  $links[] = array(
892      "href" => "../scr/tab.php?obj=transition",      "href" => "../scr/tab.php?obj=om_lettretype",
893      "class" => "transition",      "class" => "om_lettretype",
894      "title" => _("transition"),      "title" => _("om_lettretype"),
895      "right" => array("transition", "transition_tab", ),      "right" => array("om_lettretype", "om_lettretype_tab"),
896      "open" => array("tab.php|transition", "form.php|transition", ),      "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
897  );  );
898  //  //
899  $links[] = array(  $links[] = array(
900      "href" => "../scr/tab.php?obj=etat",      "title" => "<hr/>",
901      "class" => "etat",      "right" => array(
902      "title" => _("etat"),          "om_logo", "om_logo_tab",
903      "right" => array("etat", "etat_tab", ),      ),
     "open" => array("tab.php|etat", "form.php|etat", ),  
904  );  );
905  //  //
906  $links[] = array(  $links[] = array(
907      "href" => "../scr/tab.php?obj=evenement",      "href" => "../scr/tab.php?obj=om_logo",
908      "class" => "evenement",      "class" => "om_logo",
909      "title" => _("evenement"),      "title" => _("om_logo"),
910      "right" => array("evenement", "evenement_tab", ),      "right" => array("om_logo", "om_logo_tab", ),
911      "open" => array("tab.php|evenement", "form.php|evenement", ),      "open" => array("tab.php|om_logo", "form.php|om_logo", ),
912    );
913    //
914    $rubrik['links'] = $links;
915    //
916    $menu[] = $rubrik;
917    // }}}
918    
919    // {{{ Rubrique PARAMETRAGE
920    //
921    $rubrik = array(
922        "title" => _("parametrage"),
923        "class" => "parametrage",
924        "right" => "menu_parametrage",
925  );  );
926  //  //
927    $links = array();
928    //
929  $links[] = array(  $links[] = array(
930      "href" => "../scr/tab.php?obj=bible",      "href" => "../scr/tab.php?obj=civilite",
931      "class" => "bible",      "class" => "civilite",
932      "title" => _("bible"),      "title" => _("civilite"),
933      "right" => array("bible", "bible_tab", ),      "right" => array("civilite", "civilite_tab", ),
934      "open" => array("tab.php|bible", "form.php|bible", ),      "open" => array("tab.php|civilite", "form.php|civilite", ),
935  );  );
936  //  //
937  $links[] = array(  $links[] = array(
938      "href" => "../scr/tab.php?obj=avis_decision",      "href" => "../scr/tab.php?obj=arrondissement",
939      "class" => "avis_decision",      "class" => "arrondissement",
940      "title" => _("avis decision"),      "title" => _("arrondissement"),
941      "right" => array("avis_decision", "avis_decision_tab", ),      "right" => array("arrondissement", "arrondissement_tab", ),
942      "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),      "open" => array("tab.php|arrondissement", "form.php|arrondissement", ),
943    );
944    //
945    $links[] = array(
946        "href" => "../scr/tab.php?obj=quartier",
947        "class" => "quartier",
948        "title" => _("quartier"),
949        "right" => array("quartier", "quartier_tab", ),
950        "open" => array("tab.php|quartier", "form.php|quartier", ),
951  );  );
952  //  //
953  $links[] = array(  $links[] = array(
# Line 841  $links[] = array( Line 1096  $links[] = array(
1096          "dossier_autorisation_type_detaille",          "dossier_autorisation_type_detaille",
1097          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1098          "dossier_instruction_type_tab",          "dossier_instruction_type_tab",
         "lien_evenement_dossier_autorisation_type",  
         "lien_evenement_dossier_autorisation_type_tab",  
1099          "autorite_competente", "autorite_competente_tab",          "autorite_competente", "autorite_competente_tab",
1100          "affectation_automatique", "affectation_automatique_tab",          "affectation_automatique", "affectation_automatique_tab",
1101      ),      ),
# Line 855  $links[] = array( Line 1108  $links[] = array(
1108          "dossier_autorisation_type_detaille",          "dossier_autorisation_type_detaille",
1109          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1110          "dossier_instruction_type_tab",          "dossier_instruction_type_tab",
         "lien_evenement_dossier_autorisation_type",  
         "lien_evenement_dossier_autorisation_type_tab",  
1111          "autorite_competente", "autorite_competente_tab",          "autorite_competente", "autorite_competente_tab",
1112          "affectation_automatique", "affectation_automatique_tab",          "affectation_automatique", "affectation_automatique_tab",
1113                    
# Line 864  $links[] = array( Line 1115  $links[] = array(
1115  );  );
1116  //  //
1117  $links[] = array(  $links[] = array(
1118      "href" => "../scr/tab.php?obj=dossier_autorisation_type",      "href" => "../scr/tab.php?obj=etat_dossier_autorisation",
1119      "class" => "dossier_autorisation_type",      "class" => "etat_dossier_autorisation",
1120      "title" => _("dossier")." ".("autorisation")." "._("type"),      "title" => _("etat dossiers autorisations"),
1121      "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),      "right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ),
1122      "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),      "open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ),
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",  
     "class" => "dossier_autorisation_type_detaille",  
     "title" => _("dossier")." ".("autorisation")." "._("type")." "._("detaille"),  
     "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),  
     "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=dossier_instruction_type",  
     "class" => "dossier_instruction_type",  
     "title" => _("dossier")." "._("instruction")." "._("type"),  
     "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),  
     "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=lien_evenement_dossier_autorisation_type",  
     "class" => "lien_evenement_dossier_autorisation_type",  
     "title" => _("lien")." "._("evenement")." "._("dossier")." "._("autorisation")." "._("type"),  
     "right" => array("lien_evenement_dossier_autorisation_type", "lien_evenement_dossier_autorisation_type_tab", ),  
     "open" => array("tab.php|lien_evenement_dossier_autorisation_type", "form.php|lien_evenement_dossier_autorisation_type", ),  
1123  );  );
1124  //  //
1125  $links[] = array(  $links[] = array(
# Line 910  $links[] = array( Line 1137  $links[] = array(
1137      "right" => array("autorite_competente", "autorite_competente_tab", ),      "right" => array("autorite_competente", "autorite_competente_tab", ),
1138      "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),      "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
1139  );  );
 //  
 $links[] = array(  
     "class" => "category",  
     "title" => _("gestion du guichet unique"),  
     "right" => array(  
         "demande_type",  
         "demande_type_tab", "demande_nature", "demande_nature_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
     "right" => array(  
         "demande_type",  
         "demande_type_tab", "demande_nature", "demande_nature_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=demande_nature",  
     "class" => "demande_nature",  
     "title" => _("nature de la demande"),  
     "right" => array("demande_nature", "demande_nature_tab", ),  
     "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),  
 );  
1140    
1141  //  //
 $links[] = array(  
     "href" => "../scr/tab.php?obj=demande_type",  
     "class" => "demande_type",  
     "title" => _("type de la demande"),  
     "right" => array("demande_type", "demande_type_tab",),  
     "open" => array("tab.php|demande_type", "form.php|demande_type", ),  
 );  
 //  
 $links[] = array(  
     "class" => "category",  
     "title" => _("editions"),  
     "right" => array(  
         "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",  
         "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",  
         "om_logo", "om_logo_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
     "right" => array(  
         "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=om_etat",  
     "class" => "om_etat",  
     "title" => _("om_etat"),  
     "right" => array("om_etat", "om_etat_tab", ),  
     "open" => array("tab.php|om_etat", "form.php|om_etat", ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=om_lettretype",  
     "class" => "om_lettretype",  
     "title" => _("om_lettretype"),  
     "right" => array("om_lettretype", "om_lettretype_tab"),  
     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
     "right" => array(  
         "om_logo", "om_logo_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=om_logo",  
     "class" => "om_logo",  
     "title" => _("om_logo"),  
     "right" => array("om_logo", "om_logo_tab", ),  
     "open" => array("tab.php|om_logo", "form.php|om_logo", ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
     "right" => array(  
         "om_sousetat", "om_sousetat_tab",  
         "om_requete", "om_requete_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=om_sousetat",  
     "class" => "om_sousetat",  
     "title" => _("om_sousetat"),  
     "right" => array("om_sousetat", "om_sousetat_tab", ),  
     "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=om_requete",  
     "class" => "om_requete",  
     "title" => _("om_requete"),  
     "right" => array("om_requete", "om_requete_tab", ),  
     "open" => array("tab.php|om_requete", "form.php|om_requete", ),  
 );  
 //  
 $links[] = array(  
     "class" => "category",  
     "title" => _("Cerfa"),  
     "right" => array(  
         "cerfa", "cerfa_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
     "right" => array(  
         "cerfa", "cerfa_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=cerfa",  
     "class" => "cerfa",  
     "title" => _("cerfa"),  
     "right" => array("cerfa", "cerfa_tab", ),  
     "open" => array("tab.php|cerfa", "form.php|cerfa", ),  
 );  
 //  
1142  $rubrik['links'] = $links;  $rubrik['links'] = $links;
1143  //  //
1144  $menu[] = $rubrik;  $menu[] = $rubrik;
# Line 1051  $rubrik = array( Line 1150  $rubrik = array(
1150      "title" => _("sig"),      "title" => _("sig"),
1151      "class" => "sig",      "class" => "sig",
1152      "right" => "menu_sig",      "right" => "menu_sig",
1153        "parameters" => array("option_localisation" => "sig_interne", ),
1154  );  );
1155  //  //
1156  $links = array();  $links = array();
# Line 1061  $links[] = array( Line 1161  $links[] = array(
1161      "title" => _("parcelle"),      "title" => _("parcelle"),
1162      "right" => array("parcelle", "parcelle_tab"),      "right" => array("parcelle", "parcelle_tab"),
1163      "open" => array("tab.php|parcelle", "form.php|parcelle", ),      "open" => array("tab.php|parcelle", "form.php|parcelle", ),
1164        "parameters" => array("option_localisation" => "sig_interne", ),
1165  );  );
1166  //  //
1167  $links[] = array(  $links[] = array(
# Line 1069  $links[] = array( Line 1170  $links[] = array(
1170      "title" => _("proprietaire"),      "title" => _("proprietaire"),
1171      "right" => array("proprietaire", "proprietaire_tab"),      "right" => array("proprietaire", "proprietaire_tab"),
1172      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
1173        "parameters" => array("option_localisation" => "sig_interne", ),
1174  );  );
1175  //  //
1176  $links[] = array(  $links[] = array(
# Line 1079  $links[] = array( Line 1181  $links[] = array(
1181          "servitude_ligne", "servitude_ligne_tab", "servitude_point",          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1182          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1183      ),      ),
1184        "parameters" => array("option_localisation" => "sig_interne", ),
1185  );  );
1186  //  //
1187  $links[] = array(  $links[] = array(
# Line 1088  $links[] = array( Line 1191  $links[] = array(
1191          "servitude_ligne", "servitude_ligne_tab", "servitude_point",          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1192          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1193      ),      ),
1194        "parameters" => array("option_localisation" => "sig_interne", ),
1195  );  );
1196  //  //
1197  $links[] = array(  $links[] = array(
# Line 1096  $links[] = array( Line 1200  $links[] = array(
1200      "title" => _("pos"),      "title" => _("pos"),
1201      "right" => array("pos", "pos_tab"),      "right" => array("pos", "pos_tab"),
1202      "open" => array("tab.php|pos", "form.php|pos", ),      "open" => array("tab.php|pos", "form.php|pos", ),
1203        "parameters" => array("option_localisation" => "sig_interne", ),
1204  );  );
1205  //  //
1206  $links[] = array(  $links[] = array(
# Line 1106  $links[] = array( Line 1211  $links[] = array(
1211      "open" => array(      "open" => array(
1212          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
1213      ),      ),
1214        "parameters" => array("option_localisation" => "sig_interne", ),
1215  );  );
1216  //  //
1217  $links[] = array(  $links[] = array(
# Line 1114  $links[] = array( Line 1220  $links[] = array(
1220      "title" => _("servitude_ligne"),      "title" => _("servitude_ligne"),
1221      "right" => array("servitude_ligne", "servitude_ligne_tab"),      "right" => array("servitude_ligne", "servitude_ligne_tab"),
1222      "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),      "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
1223        "parameters" => array("option_localisation" => "sig_interne", ),
1224  );  );
1225  //  //
1226  $links[] = array(  $links[] = array(
# Line 1122  $links[] = array( Line 1229  $links[] = array(
1229      "title" => _("servitude_point"),      "title" => _("servitude_point"),
1230      "right" => array("servitude_point", "servitude_point_tab"),      "right" => array("servitude_point", "servitude_point_tab"),
1231      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
1232        "parameters" => array("option_localisation" => "sig_interne", ),
1233  );  );
1234  //  //
1235  $links[] = array(  $links[] = array(
# Line 1130  $links[] = array( Line 1238  $links[] = array(
1238      "title" => _("parcelle_lot"),      "title" => _("parcelle_lot"),
1239      "right" => array("parcelle_lot", "parcelle_lot_tab"),      "right" => array("parcelle_lot", "parcelle_lot_tab"),
1240      "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),      "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1241        "parameters" => array("option_localisation" => "sig_interne", ),
1242  );  );
1243  //  //
1244  $rubrik['links'] = $links;  $rubrik['links'] = $links;
# Line 1223  $links[] = array( Line 1332  $links[] = array(
1332      "class" => "category",      "class" => "category",
1333      "title" => _("tableaux de bord"),      "title" => _("tableaux de bord"),
1334      "right" => array(      "right" => array(
1335          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",          "om_widget", "om_widget_tab", "om_dashboard",
1336      ),      ),
1337  );  );
1338  //  //
1339  $links[] = array(  $links[] = array(
1340      "title" => "<hr/>",      "title" => "<hr/>",
1341      "right" => array(      "right" => array(
1342          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",          "om_widget", "om_widget_tab", "om_dashboard",
1343      ),      ),
1344  );  );
1345  //  //
# Line 1243  $links[] = array( Line 1352  $links[] = array(
1352  );  );
1353  //  //
1354  $links[] = array(  $links[] = array(
1355      "href" => "../scr/tab.php?obj=om_dashboard",      "href" => "../scr/dashboard_composer.php",
1356      "class" => "om_dashboard",      "class" => "om_dashboard",
1357      "title" => _("om_dashboard"),      "title" => _("composition"),
1358      "right" => array( ),      "right" => array("om_dashboard", ),
1359      "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),      "open" => array("dashboard_composer.php|", ),
1360  );  );
1361  //  //
1362  $links[] = array(  $links[] = array(
# Line 1256  $links[] = array( Line 1365  $links[] = array(
1365      "right" => array(      "right" => array(
1366          "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",
1367      ),      ),
1368        "parameters" => array("option_localisation" => "sig_interne", ),
1369  );  );
1370  //  //
1371  $links[] = array(  $links[] = array(
# Line 1263  $links[] = array( Line 1373  $links[] = array(
1373      "right" => array(      "right" => array(
1374          "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",
1375      ),      ),
1376        "parameters" => array("option_localisation" => "sig_interne", ),
1377  );  );
1378  //  //
1379  $links[] = array(  $links[] = array(
# Line 1271  $links[] = array( Line 1382  $links[] = array(
1382      "title" => _("om_sig_map"),      "title" => _("om_sig_map"),
1383      "right" => array("om_sig_map", "om_sig_map_tab", ),      "right" => array("om_sig_map", "om_sig_map_tab", ),
1384      "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),      "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1385        "parameters" => array("option_localisation" => "sig_interne", ),
1386  );  );
1387  //  //
1388  $links[] = array(  $links[] = array(
# Line 1279  $links[] = array( Line 1391  $links[] = array(
1391      "title" => _("om_sig_wms"),      "title" => _("om_sig_wms"),
1392      "right" => array("om_sig_wms", "om_sig_wms_tab", ),      "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1393      "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),      "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1394        "parameters" => array("option_localisation" => "sig_interne", ),
1395  );  );
1396  //  //
1397  $links[] = array(  $links[] = array(
1398      "class" => "category",      "class" => "category",
1399      "title" => _("options avancees"),      "title" => _("options avancees"),
1400      "right" => array("import", "gen", ),      "right" => array("import", "gen", "om_requete", "om_requete_tab",
1401                         "om_sousetat", "om_sousetat_tab",),
1402    );
1403    //
1404    $links[] = array(
1405        "title" => "<hr/>",
1406        "right" => array(
1407            "om_sousetat", "om_sousetat_tab",
1408        ),
1409    );
1410    //
1411    $links[] = array(
1412        "href" => "../scr/tab.php?obj=om_sousetat",
1413        "class" => "om_sousetat",
1414        "title" => _("om_sousetat"),
1415        "right" => array("om_sousetat", "om_sousetat_tab", ),
1416        "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
1417    );
1418    //
1419    $links[] = array(
1420        "title" => "<hr/>",
1421        "right" => array("om_requete", "om_requete_tab", ),
1422    );
1423    //
1424    $links[] = array(
1425        "href" => "../scr/tab.php?obj=om_requete",
1426        "class" => "om_requete",
1427        "title" => _("om_requete"),
1428        "right" => array("om_requete", "om_requete_tab", ),
1429        "open" => array("tab.php|om_requete", "form.php|om_requete", ),
1430  );  );
1431  //  //
1432  $links[] = array(  $links[] = array(

Legend:
Removed from v.1357  
changed lines
  Added in v.2402

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26