/[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 1185 by vpihour, Wed Jan 9 11:20:26 2013 UTC revision 3117 by vpihour, Wed Aug 6 16:52:01 2014 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        "right" => "menu_guichet_unique_dashboard",
99        "open" => array("dashboard.php|",),
100    );
101    //
102    $links[] = array(
103      "class" => "category",      "class" => "category",
104      "title" => _("demandes"),      "title" => _("nouvelle demande"),
105      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",      "right" => array(
106                       "demande_dossier_existant","demande_dossier_existant_tab",),          "demande_nouveau_dossier_ajouter",
107            "demande_dossier_encours_ajouter", "demande_dossier_encours_tab",
108            "demande_autre_dossier_ajouter", "demande_autre_dossier_tab",
109            "demande_consulter","demande_tab",
110        ),
111  );  );
112  $links[] = array(  $links[] = array(
113      "title" => "<hr/>",      "title" => "<hr/>",
114      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",      "right" => array(
115                       "demande_dossier_existant","demande_dossier_existant_tab",          "demande_dossier_encours_ajouter",
116                       "demande_recepisse_demande","demande_recepisse_demande_tab",),          "demande_dossier_encours_ajouter", "demande_dossier_encours_tab",
117        ),
118  );  );
119  $links[] = array(  $links[] = array(
120      "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=",
121      "class" => "demande",      "class" => "nouveau-dossier",
122      "title" => _("nouveau dossier"),      "title" => _("nouveau dossier"),
123      "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),      "right" => array(
124            "demande_nouveau_dossier_ajouter",
125        ),
126      "open" => array("form.php|demande_nouveau_dossier",),      "open" => array("form.php|demande_nouveau_dossier",),
127  );  );
128  $links[] = array(  $links[] = array(
129      "href" => "../scr/tab.php?obj=demande_dossier_existant",      "href" => "../scr/tab.php?obj=demande_dossier_encours",
130      "class" => "demande_dossier_existant",      "class" => "dossier-existant",
131      "title" => _("dossier existant"),      "title" => _("dossier en cours"),
132      "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),      "right" => array(
133      "open" => array("tab.php|demande_dossier_existant", "form.php|demande_dossier_existant"),          "demande_dossier_encours_ajouter","demande_dossier_encours_tab",
134        ),
135        "open" => array("tab.php|demande_dossier_encours", "form.php|demande_dossier_encours"),
136    );
137    $links[] = array(
138        "href" => "../scr/tab.php?obj=demande_autre_dossier",
139        "class" => "autre-dossier",
140        "title" => _("autre dossier"),
141        "right" => array(
142            "demande_autre_dossier_ajouter","demande_autre_dossier_tab",
143        ),
144        "open" => array("tab.php|demande_autre_dossier", "form.php|demande_autre_dossier"),
145    );
146    $links[] = array(
147        "title" => "<hr/>",
148        "right" => array(
149            "demande_consulter", "demande_tab"
150        ),
151  );  );
152  $links[] = array(  $links[] = array(
153      "href" => "../scr/tab.php?obj=demande",      "href" => "../scr/tab.php?obj=demande",
154      "class" => "demande",      "class" => "pdf",
155      "title" => _("recepisse de demande"),      "title" => _("recepisse"),
156      "right" => array("demande_recepisse_demande", "demande_recepisse_demande_tab", ),      "right" => array(
157            "demande_consulter", "demande_tab"
158        ),
159      "open" => array("tab.php|demande","form.php|demande"),      "open" => array("tab.php|demande","form.php|demande"),
160  );  );
161    $links[] = array(
162        "title" => "<hr/>",
163        "right" => array(
164            "petitionnaire_frequent_consulter", "petitionnaire_frequent_tab"
165        ),
166    );
167    $links[] = array(
168        "href" => "../scr/tab.php?obj=petitionnaire_frequent",
169        "class" => "petitionnaire_frequent",
170        "title" => _("petitionnaire_frequent"),
171        "right" => array(
172            "petitionnaire_frequent_consulter", "petitionnaire_frequent_tab"
173        ),
174        "open" => array("tab.php|petitionnaire_frequent","form.php|petitionnaire_frequent"),
175    );
176  //  //
177  $links[] = array(  $links[] = array(
178      "class" => "category",      "class" => "category",
179      "title" => _("Affichage des dossiers"),      "title" => _("affichage reglementaire"),
180      "right" => array("edition_reglementaire","attestation_affichage",),      "right" => array(
181            "affichage_reglementaire_registre",
182            "affichage_reglementaire_attestation",
183        ),
184  );  );
185  $links[] = array(  $links[] = array(
186      "title" => "<hr/>",      "title" => "<hr/>",
187      "right" => array("edition", "attestation_affichage"),      "right" => array(
188            "affichage_reglementaire_registre",
189            "affichage_reglementaire_attestation",
190        ),
191  );  );
192  $links[] = array(  $links[] = array(
193      "href" => "../app/edition_reglementaire.php",      "href" => "../app/affichage_reglementaire_registre.php",
194      "class" => "edition",      "class" => "edition",
195      "title" => _("edition reglementaire"),      "title" => _("registre"),
196      "right" => "edition_reglementaire",      "right" => array(
197      "open" => "edition_reglementaire.php|",          "affichage_reglementaire_registre",
198        ),
199        "open" => "affichage_reglementaire_registre.php|",
200  );  );
201  $links[] = array(  $links[] = array(
202      "href" => "../app/attestation_affichage.php",      "href" => "../app/affichage_reglementaire_attestation.php",
203      "class" => "attestation_affichage",      "class" => "edition",
204      "title" => _("attestation d'affichage"),      "title" => _("attestation"),
205      "right" => "attestation_affichage",      "right" => array(
206      "open" => "attestation_affichage.php|",          "affichage_reglementaire_attestation",
207        ),
208        "open" => "affichage_reglementaire_attestation.php|",
209  );  );
210  //  //
211  /*$links[] = array(  $rubrik['links'] = $links;
212      "class" => "category",  //
213    $menu[] = $rubrik;
214    // }}}
215    
216    // {{{ Rubrique QUALIFICATION
217    //
218    $rubrik = array(
219      "title" => _("Qualification"),      "title" => _("Qualification"),
220      "right" => array("qualification"),      "class" => "qualification",
221        "right" => "qualification_menu",
222  );  );
223    //
224    $links = array();
225    //
226  $links[] = array(  $links[] = array(
227      "title" => "<hr/>",      "href" => "../scr/dashboard.php",
228      "right" => array("qualification"),      "class" => "tableau-de-bord",
229        "title" => _("tableau de bord"),
230        "right" => "menu_qualification_dashboard",
231        "open" => array("dashboard.php|",),
232  );  );
233    
234    //
235  $links[] = array(  $links[] = array(
236      "href" => "../scr/tab.php?obj=dossier",      "href" => "../scr/tab.php?obj=dossier_qualifier_qualificateur",
237      "class" => "qualification",      "class" => "dossier_qualifier_qualificateur",
238      "title" => _("A Qualifier"),      "title" => _("dossiers a qualifier"),
239      "right" => array("qualification", "qualification_tab", ),      "right" => array("dossier_qualifier_qualificateur", "dossier_qualifier_qualificateur_tab", ),
240      "open" => array("tab.php|qualification", "form.php|qualification", ),      "open" => array("tab.php|dossier_qualifier_qualificateur", "form.php|dossier_instruction", ),
241  );*/  );
242    
243  //  //
244  $rubrik['links'] = $links;  $rubrik['links'] = $links;
245  //  //
# Line 124  $rubrik = array( Line 255  $rubrik = array(
255  );  );
256  //  //
257  $links = array();  $links = array();
258    //
259    $links[] = array(
260        "href" => "../scr/dashboard.php",
261        "class" => "tableau-de-bord",
262        "title" => _("tableau de bord"),
263        "right" => "menu_instruction_dashboard",
264        "open" => array("dashboard.php|",),
265    );
266  // Catégorie DOSSIERS D'INSTRUCTION  // Catégorie DOSSIERS D'INSTRUCTION
267  $links[] = array(  $links[] = array(
268      "class" => "category",      "class" => "category",
# Line 134  $links[] = array( Line 273  $links[] = array(
273          "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",          "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
274          "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",          "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
275          "dossier_instruction", "dossier_instruction_tab",          "dossier_instruction", "dossier_instruction_tab",
         "dossiers_limites", "dossiers_limites_tab",  
276          "PC_modificatif", "PC_modificatif_tab",          "PC_modificatif", "PC_modificatif_tab",
277      ),      ),
278  );  );
# Line 151  $links[] = array( Line 289  $links[] = array(
289      "class" => "dossier_instruction_mes_encours",      "class" => "dossier_instruction_mes_encours",
290      "title" => _("mes encours"),      "title" => _("mes encours"),
291      "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),      "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
292      "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours",      "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ),
         "form.php|rapport_instruction"),  
293  );  );
294  //  //
295  $links[] = array(  $links[] = array(
# Line 172  $links[] = array( Line 309  $links[] = array(
309  );  );
310  //  //
311  $links[] = array(  $links[] = array(
     "title" => "<hr/>",  
     "right" => array(  
         "dossiers_limites", "dossiers_limites_tab",  
         "dossiers_limites", "dossiers_limites_tab",  
     ),  
 );  
 //  
 $links[] = array(  
312      "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",      "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",
313      "class" => "dossier_instruction_mes_clotures",      "class" => "dossier_instruction_mes_clotures",
314      "title" => _("mes clotures"),      "title" => _("mes clotures"),
# Line 197  $links[] = array( Line 326  $links[] = array(
326  //  //
327  $links[] = array(  $links[] = array(
328      "title" => "<hr/>",      "title" => "<hr/>",
329      "right" => array("PC_modificatif", "PC_modificatif_tab", ),      "right" => array(
330            "dossier_instruction", "dossier_instruction_tab",
331        ),
332  );  );
333  //  //
334  $links[] = array(  $links[] = array(
335      "href" => "../scr/tab.php?obj=PC_modificatif",      "href" => "../scr/tab.php?obj=dossier_instruction",
336      "class" => "traitement",      "class" => "dossier_instruction_recherche",
337      "title" => _("modificatif transfert"),      "title" => _("recherche"),
338      "right" => array("PC_modificatif", "PC_modificatif_tab", ),      "right" => array("dossier_instruction", "dossier_instruction_tab", ),
339      "open" => array("|PC_modificatif", "dossier_modificatif.php|", ),      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
340  );  );
341  //  
342    // Catégorier Qualification
343  $links[] = array(  $links[] = array(
344      "title" => "<hr/>",      "class" => "category",
345      "right" => array(      "title" => _("qualification"),
346          "dossiers_limites", "dossiers_limites_tab",      "right" => array("dossier_qualifier", "architecte_frequent",),
     ),  
347  );  );
348  //  //
349  $links[] = array(  $links[] = array(
350      "href" => "../scr/tab.php?obj=dossiers_limites",      "title" => "<hr/>",
351      "class" => "dossiers_limites",      "right" => array("dossier_qualifier", "architecte_frequent", ),
     "title" => _("dossiers limites"),  
     "right" => array("dossiers_limites", "dossiers_limites_tab", ),  
     "open" => array("tab.php|dossiers_limites", "form.php|dossiers_limites", ),  
352  );  );
353  //  //
354  $links[] = array(  $links[] = array(
355      "title" => "<hr/>",      "href" => "../scr/tab.php?obj=dossier_qualifier",
356      "right" => array(      "class" => "dossier_qualifier",
357          "dossier_instruction", "dossier_instruction_tab",      "title" => _("dossiers a qualifier"),
358      ),      "right" => array("dossier_qualifier", "dossier_qualifier_tab", ),
359        "open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ),
360  );  );
361  //  //
362  $links[] = array(  $links[] = array(
363      "href" => "../scr/tab.php?obj=dossier_instruction",      "href" => "../scr/tab.php?obj=architecte_frequent",
364      "class" => "dossier_instruction",      "class" => "architecte_frequent",
365      "title" => _("recherche"),      "title" => _("architecte_frequent"),
366      "right" => array("dossier_instruction", "dossier_instruction_tab", ),      "right" => array("architecte_frequent", "architecte_frequent_tab", ),
367      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),      "open" => array("tab.php|architecte_frequent", "form.php|architecte_frequent", ),
368  );  );
369  // Catégorie CONSULTATIONS  // Catégorie CONSULTATIONS
370  $links[] = array(  $links[] = array(
# Line 266  $links[] = array( Line 395  $links[] = array(
395      "class" => "category",      "class" => "category",
396      "title" => _("Messages"),      "title" => _("Messages"),
397      "right" => array("messages_mes_retours", "messages_tous_retours"),      "right" => array("messages_mes_retours", "messages_tous_retours"),
398      "parameters" => array("option_ERP" => "true", ),      "parameters" => array("option_erp" => "true", ),
399  );  );
400  //  //
401  $links[] = array(  $links[] = array(
402      "title" => "<hr/>",      "title" => "<hr/>",
403      "right" => array("messages_mes_retours", "messages_tous_retours"),      "right" => array("messages_mes_retours", "messages_tous_retours"),
404      "parameters" => array("option_ERP" => "true", ),      "parameters" => array("option_erp" => "true", ),
405  );  );
406  //  //
407  $links[] = array(  $links[] = array(
# Line 281  $links[] = array( Line 410  $links[] = array(
410      "title" => _("Mes messages"),      "title" => _("Mes messages"),
411      "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),      "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
412      "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),      "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
413      "parameters" => array("option_ERP" => "true", ),      "parameters" => array("option_erp" => "true", ),
414  );  );
415  //  //
416  $links[] = array(  $links[] = array(
# Line 290  $links[] = array( Line 419  $links[] = array(
419      "title" => _("Tous les messages"),      "title" => _("Tous les messages"),
420      "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),      "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
421      "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),      "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
422      "parameters" => array("option_ERP" => "true", ),      "parameters" => array("option_erp" => "true", ),
423  );  );
424  // Catégorie COMMISSIONS  // Catégorie COMMISSIONS
425  $links[] = array(  $links[] = array(
# Line 340  $rubrik = array( Line 469  $rubrik = array(
469  $links = array();  $links = array();
470  //  //
471  $links[] = array(  $links[] = array(
472      "href" => "../app/avis_code_barre.php",      "href" => "../scr/dashboard.php",
473      "class" => "avis_code_barre",      "class" => "tableau-de-bord",
474      "title" => _("Retour de consultation"),      "title" => _("tableau de bord"),
475      "right" => array("avis_code_barre", ),      "right" => "menu_suivi_dashboard",
476      "open" => array("avis_code_barre.php|", "form.php|consultation", ),      "open" => array("dashboard.php|",),
477    );
478    $links[] = array(
479        "class" => "category",
480        "title" => _("suivi des pieces"),
481        "right" => array(
482            "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
483            "suivi_envoi_lettre_rar", "suivi_bordereaux",
484        ),
485    );
486    //
487    $links[] = array(
488        "title" => "<hr/>",
489        "right" => array(
490            "suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates",
491            "suivi_envoi_lettre_rar", "suivi_bordereaux",
492        ),
493    );
494    //
495    $links[] = array(
496        "title" => "<hr/>",
497        "right" => array(
498            "suivi_mise_a_jour_des_dates",
499        ),
500    );
501    //
502    $links[] = array(
503        "href" => "../app/suivi_mise_a_jour_des_dates.php",
504        "class" => "suivi_mise_a_jour_des_dates",
505        "title" => _("Mise a jour des dates"),
506        "right" => array("suivi_mise_a_jour_des_dates", ),
507        "open" => array("suivi_mise_a_jour_des_dates.php|"),
508    );
509    //
510    $links[] = array(
511        "title" => "<hr/>",
512        "right" => array(
513            "suivi_envoi_lettre_rar",
514        ),
515    );
516    //
517    $links[] = array(
518        "href" => "../app/suivi_envoi_lettre_rar.php",
519        "class" => "edition",
520        "title" => _("envoi lettre RAR"),
521        "right" => array("suivi_envoi_lettre_rar", ),
522        "open" => array("suivi_envoi_lettre_rar.php|"),
523    );
524    //
525    $links[] = array(
526        "title" => "<hr/>",
527        "right" => array(
528            "suivi_bordereaux",
529        ),
530    );
531    //
532    $links[] = array(
533        "href" => "../app/suivi_bordereaux.php",
534        "class" => "edition",
535        "title" => _("Bordereaux"),
536        "right" => array("suivi_bordereaux", ),
537        "open" => array("suivi_bordereaux.php|"),
538    );
539    //
540    $links[] = array(
541        "class" => "category",
542        "title" => _("Demandes d'avis"),
543        "right" => array(
544            "demandes_avis_mise_a_jour_des_dates",
545        ),
546    );
547    //
548    $links[] = array(
549        "href" => "../app/demandes_avis_mise_a_jour_des_dates.php",
550        "class" => "demandes_avis_mise_a_jour_des_dates",
551        "title" => _("Mise a jour des dates"),
552        "right" => array("demandes_avis_mise_a_jour_des_dates", ),
553        "open" => array("demandes_avis_mise_a_jour_des_dates.php|"),
554    );
555    //
556    $links[] = array(
557        "href" => "../app/suivi_retours_de_consultation.php",
558        "class" => "consultation-retour",
559        "title" => _("retours de consultation"),
560        "right" => array(
561            "suivi_retours_de_consultation",
562        ),
563        "open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ),
564    );
565    // Catégorie COMMISSIONS
566    $links[] = array(
567        "class" => "category",
568        "title" => _("commissions"),
569        "right" => array(
570            "commission", "commission_tab",
571            "commission_demandes_passage", "commission_demandes_passage_tab",
572        ),
573    );
574    //
575    $links[] = array(
576        "title" => "<hr/>",
577        "right" => array(
578            "commission", "commission_tab",
579            "commission_demandes_passage", "commission_demandes_passage_tab",
580        ),
581    );
582    //
583    $links[] = array(
584        "href" => "../scr/tab.php?obj=commission",
585        "class" => "commissions",
586        "title" => _("gestion"),
587        "right" => array("commission", ),
588        "open" => array("tab.php|commission", "form.php|commission", ),
589    );
590    //
591    $links[] = array(
592        "href" => "../scr/tab.php?obj=commission_demandes_passage",
593        "class" => "commissions-demande-passage",
594        "title" => _("demandes"),
595        "right" => array("commission_demandes_passage", ),
596        "open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ),
597  );  );
598  //  //
599  $rubrik['links'] = $links;  $rubrik['links'] = $links;
# Line 363  $rubrik = array( Line 612  $rubrik = array(
612  $links = array();  $links = array();
613  //  //
614  $links[] = array(  $links[] = array(
615        "href" => "../scr/dashboard.php",
616        "class" => "tableau-de-bord",
617        "title" => _("tableau de bord"),
618        "right" => "menu_demande_avis_dashboard",
619        "open" => array("dashboard.php|",),
620    );
621    //
622    $links[] = array(
623        "title" => "<hr/>",
624        "right" => array(
625            "demande_avis_encours", "demande_avis_encours_tab",
626            "demande_avis_passee", "demande_avis_passee_tab",
627            "demande_avis", "demande_avis_tab",
628        ),
629    );
630    //
631    $links[] = array(
632      "href" => "../scr/tab.php?obj=demande_avis_encours",      "href" => "../scr/tab.php?obj=demande_avis_encours",
633      "class" => "demande_avis_encours",      "class" => "demande_avis_encours",
634      "title" => _("Demandes en cours"),      "title" => _("Demandes en cours"),
# Line 393  $menu[] = $rubrik; Line 659  $menu[] = $rubrik;
659  // }}}  // }}}
660    
661    
662    // Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle
663    // dans cette version
664  // {{{ Rubrique EXPORT  // {{{ Rubrique EXPORT
665  //  //
666  $rubrik = array(  $rubrik = array(
667      "title" => _("export"),     "title" => _("export / import"),
668      "class" => "edition",     "class" => "edition",
669      "right" => "menu_export",     "right" => "menu_export",
670  );  );
671  //  //
672  $links = array();  $links = array();
673    // //
674    // $links[] = array(
675    //    "href" => "../scr/edition.php",
676    //    "class" => "edition",
677    //    "title" => _("edition"),
678    //    "right" => "edition",
679    //    "open" => "edition.php|",
680    // );
681    // //
682    // $links[] = array(
683    //    "href" => "../app/edition_p.php",
684    //    "class" => "edition",
685    //    "title" => _("edition date depot"),
686    //    "right" => "edition_p",
687    //    "open" => "edition_p.php|",
688    // );
689    // //
690    // $links[] = array(
691    //    "href" => "../app/edition_d.php",
692    //    "class" => "edition",
693    //    "title" => _("edition date decision"),
694    //    "right" => "edition_d",
695    //    "open" => "edition_d.php|",
696    // );
697    // //
698    // $links[] = array(
699    //    "title" => "<hr/>",
700    //    "right" => array("reqmo", "export_sitadel", ),
701    // );
702    // //
703    // $links[] = array(
704    //    "href" => "../scr/reqmo.php",
705    //    "class" => "reqmo",
706    //    "title" => _("requetes memorisees"),
707    //    "right" => "reqmo",
708    //    "open" => array("reqmo.php|", "requeteur.php|", ),
709    // );
710    //
711    $links[] = array(
712       "href" => "../app/sitadel.php",
713       "class" => "reqmo",
714       "title" => _("export sitadel"),
715       "right" => "export_sitadel",
716       "open" => "sitadel.php|",
717    );
718  //  //
719  $links[] = array(  $links[] = array(
720      "href" => "../scr/edition.php",     "href" => "../app/versement_archives.php",
721      "class" => "edition",     "class" => "versement_archives",
722      "title" => _("edition"),     "title" => _("versement aux archives"),
723      "right" => "edition",     "right" => "versement_archives",
724      "open" => "edition.php|",     "open" => "versement_archives.php|",
725  );  );
726  //  //
727  $links[] = array(  $links[] = array(
728      "href" => "../app/edition_p.php",     "href" => "../app/reqmo_pilot.php",
729      "class" => "edition",     "class" => "reqmo",
730      "title" => _("edition date depot"),     "title" => _("statistiques a la demande"),
731      "right" => "edition_p",     "right" => "reqmo_pilot",
732      "open" => "edition_p.php|",     "open" => "reqmo_pilot.php|",
733  );  );
734  //  //
735  $links[] = array(  $rubrik['links'] = $links;
736      "href" => "../app/edition_d.php",  //
737      "class" => "edition",  $menu[] = $rubrik;
738      "title" => _("edition date decision"),  // }}}
739      "right" => "edition_d",  
740      "open" => "edition_d.php|",  
741    // {{{ Rubrique PARAMETRAGE
742    //
743    $rubrik = array(
744        "title" => _("parametrage dossiers"),
745        "class" => "parametrage",
746        "right" => "menu_parametrage",
747  );  );
748  //  //
749    $links = array();
750    //
751  $links[] = array(  $links[] = array(
752      "title" => "<hr/>",      "class" => "category",
753      "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),      "title" => _("dossiers"),
754        "right" => array(
755            "dossier_autorisation_type", "dossier_autorisation_type_tab",
756            "dossier_autorisation_type_detaille",
757            "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
758            "dossier_instruction_type_tab", "cerfa", "cerfa_tab",
759        ),
760  );  );
761  //  //
762  $links[] = array(  $links[] = array(
763      "href" => "../scr/reqmo.php",      "title" => "<hr/>",
764      "class" => "reqmo",      "right" => array(
765      "title" => _("requetes memorisees"),          "cerfa", "cerfa_tab",
766      "right" => "reqmo",      ),
     "open" => array("reqmo.php|", "requeteur.php|", ),  
767  );  );
768  //  //
769  $links[] = array(  $links[] = array(
770      "href" => "../app/export_pc.php",      "href" => "../scr/tab.php?obj=cerfa",
771      "class" => "reqmo",      "class" => "cerfa",
772      "title" => _("export PC Lascot"),      "title" => _("cerfa"),
773      "right" => "export_pc",      "right" => array("cerfa", "cerfa_tab", ),
774      "open" => "export_pc.php|",      "open" => array("tab.php|cerfa", "form.php|cerfa", ),
775  );  );
776  //  //
777  $links[] = array(  $links[] = array(
778      "href" => "../app/export_dp.php",      "title" => "<hr/>",
779      "class" => "reqmo",      "right" => array(
780      "title" => _("export DP Lascot"),          "dossier_autorisation_type", "dossier_autorisation_type_tab",
781      "right" => "export_dp",          "dossier_autorisation_type_detaille",
782      "open" => "export_dp.php|",          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
783            "dossier_instruction_type_tab",
784        ),
785  );  );
786  //  //
787  $links[] = array(  $links[] = array(
788      "href" => "../app/sitadel.php",      "href" => "../scr/tab.php?obj=dossier_autorisation_type",
789      "class" => "reqmo",      "class" => "dossier_autorisation_type",
790      "title" => _("export sitadel")." 2",      "title" => _("type DA"),
791      "right" => "export_sitadel",      "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
792      "open" => "sitadel.php|",      "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
793  );  );
794  //  //
795  $rubrik['links'] = $links;  $links[] = array(
796  //      "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
797  $menu[] = $rubrik;      "class" => "dossier_autorisation_type_detaille",
798  // }}}      "title" => _("type DA detaille"),
799        "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
800  // {{{ Rubrique PARAMETRAGE      "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
 //  
 $rubrik = array(  
     "title" => _("parametrage"),  
     "class" => "parametrage",  
     "right" => "menu_parametrage",  
801  );  );
802  //  //
 $links = array();  
 //  
 // GENERAUX  
803  $links[] = array(  $links[] = array(
804      "href" => "../scr/form.php?obj=dossier_numeromanuel",      "href" => "../scr/tab.php?obj=dossier_instruction_type",
805      "class" => "traitement",      "class" => "dossier_instruction_type",
806      "title" => _("numero manuel"),      "title" => _("type DI"),
807      "right" => "dossier_numeromanuel",      "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
808      "open" => "|dossier_numeromanuel",      "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
809  );  );
810  //  //
811  $links[] = array(  $links[] = array(
812      "href" => "../app/num_dossier.php",      "title" => "<hr/>",
813      "class" => "traitement",      "right" => array(
814      "title" => _("remise a 0"),          "contrainte", "contrainte_tab",
815      "right" => "num_dossier",          "contrainte_souscategorie", "contrainte_souscategorie_tab",
816      "open" => "num_dossier.php|",          "contrainte_categorie", "contrainte_categorie_tab"
817        ),
818        "parameters" => array(
819            "option_sig" => "sig_externe",
820        ),
821  );  );
 //  
822  $links[] = array(  $links[] = array(
823      "title" => "<hr/>",      "title" => "<hr/>",
824      "right" => array(      "right" => array(
825          "architecte", "architecte_tab",          "contrainte", "contrainte_tab",
826           "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",          "contrainte_souscategorie", "contrainte_souscategorie_tab",
827          "destination", "destination_tab", "nature", "nature_tab", "rivoli",          "contrainte_categorie", "contrainte_categorie_tab"
828          "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",      ),
829        "parameters" => array(
830            "option_sig" => "sig_interne",
831      ),      ),
832  );  );
833  //  //
834  $links[] = array(  $links[] = array(
835      "href" => "../scr/tab.php?obj=architecte",      "href" => "../scr/tab.php?obj=contrainte",
836      "class" => "architecte",      "class" => "contrainte",
837      "title" => _("architecte"),      "title" => _("contrainte"),
838      "right" => array("architecte", "architecte_tab", ),      "right" => array("contrainte", "contrainte_tab", ),
839      "open" => array("tab.php|architecte", "form.php|architecte", ),      "open" => array("tab.php|contrainte", "form.php|contrainte", ),
840        "parameters" => array(
841            "option_sig" => "sig_externe",
842        ),
843  );  );
   
 //  
844  $links[] = array(  $links[] = array(
845      "href" => "../scr/tab.php?obj=travaux",      "href" => "../scr/tab.php?obj=contrainte",
846      "class" => "travaux",      "class" => "contrainte",
847      "title" => _("travaux"),      "title" => _("contrainte"),
848      "right" => array("travaux", "travaux_tab", ),      "right" => array("contrainte", "contrainte_tab", ),
849      "open" => array("tab.php|travaux", "form.php|travaux", ),      "open" => array("tab.php|contrainte", "form.php|contrainte", ),
850        "parameters" => array(
851            "option_sig" => "sig_interne",
852        ),
853  );  );
854  //  //
855  $links[] = array(  $links[] = array(
856      "href" => "../scr/tab.php?obj=categorie_demandeur",      "href" => "../app/contrainte_synchronisation.php",
857      "class" => "categorie_demandeur",      "class" => "contrainte",
858      "title" => _("categorie_demandeur"),      "title" => _("synchronisation des contraintes"),
859      "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),      "right" => array("contrainte", "contrainte_synchronisation", ),
860      "open" => array(      "open" => array("contrainte_synchronisation.php|", ),
861          "tab.php|categorie_demandeur", "form.php|categorie_demandeur",      "parameters" => array(
862            "option_sig" => "sig_externe",
863      ),      ),
864  );  );
865  //  //
866  $links[] = array(  $links[] = array(
867      "href" => "../scr/tab.php?obj=destination",      "class" => "category",
868      "class" => "destination",      "title" => _("demandes"),
869      "title" => _("destination"),      "right" => array(
870      "right" => array("destination", "destination_tab", ),          "demande_type",
871      "open" => array("tab.php|destination", "form.php|destination", ),          "demande_type_tab", "demande_nature", "demande_nature_tab",
872        ),
873  );  );
874  //  //
875  $links[] = array(  $links[] = array(
876      "href" => "../scr/tab.php?obj=rivoli",      "title" => "<hr/>",
877      "class" => "rivoli",      "right" => array(
878      "title" => _("rivoli"),          "demande_type",
879      "right" => array("rivoli", "rivoli_tab", ),          "demande_type_tab", "demande_nature", "demande_nature_tab",
880      "open" => array("tab.php|rivoli", "form.php|rivoli", ),      ),
881  );  );
882  //  //
883  $links[] = array(  $links[] = array(
884      "href" => "../scr/tab.php?obj=civilite",      "href" => "../scr/tab.php?obj=demande_nature",
885      "class" => "civilite",      "class" => "demande_nature",
886      "title" => _("civilite"),      "title" => _("nature"),
887      "right" => array("civilite", "civilite_tab", ),      "right" => array("demande_nature", "demande_nature_tab", ),
888      "open" => array("tab.php|civilite", "form.php|civilite", ),      "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
889  );  );
890  //  //
891  $links[] = array(  $links[] = array(
892      "href" => "../scr/tab.php?obj=parametre",      "href" => "../scr/tab.php?obj=demande_type",
893      "class" => "parametre",      "class" => "demande_type",
894      "title" => _("parametre")." "._("statistique"),      "title" => _("type"),
895      "right" => array("parametre", "parametre_tab", ),      "right" => array("demande_type", "demande_type_tab",),
896      "open" => array("tab.php|parametre", "form.php|parametre", ),      "open" => array("tab.php|demande_type", "form.php|demande_type", ),
897  );  );
   
898  //  //
899  $links[] = array(  $links[] = array(
900      "class" => "category",      "class" => "category",
901      "title" => _("workflows"),      "title" => _("workflows"),
902      "right" => array(      "right" => array(
903          "action", "action_tab", "transition", "transition_tab", "etat",          "workflows",
904            "action", "action_tab", "etat",
905          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
906          "avis_decision_tab", "avis_consultation", "avis_consultation_tab",          "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
907      ),      ),
# Line 580  $links[] = array( Line 910  $links[] = array(
910  $links[] = array(  $links[] = array(
911      "title" => "<hr/>",      "title" => "<hr/>",
912      "right" => array(      "right" => array(
913          "action", "action_tab", "transition", "transition_tab", "etat",          "workflows",
914            "action", "action_tab", "etat",
915          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",          "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
916          "avis_decision_tab", "avis_consultation", "avis_consultation_tab",          "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
917      ),      ),
918  );  );
919  //  //
920  $links[] = array(  $links[] = array(
921      "href" => "../scr/tab.php?obj=action",      "href" => "../app/workflows.php",
922      "class" => "action",      "class" => "workflows",
923      "title" => _("action"),      "title" => _("workflows"),
924      "right" => array("action", "action_tab", ),      "right" => array("workflows", ),
925      "open" => array("tab.php|action", "form.php|action", ),      "open" => array("workflows.php|", ),
926    );
927    //
928    $links[] = array(
929        "title" => "<hr/>",
930        "right" => array(
931            "evenement", "evenement_tab",
932        ),
933    );
934    //
935    $links[] = array(
936        "href" => "../scr/tab.php?obj=evenement",
937        "class" => "evenement",
938        "title" => _("evenement"),
939        "right" => array("evenement", "evenement_tab", ),
940        "open" => array("tab.php|evenement", "form.php|evenement", ),
941  );  );
942  //  //
943  $links[] = array(  $links[] = array(
944      "href" => "../scr/tab.php?obj=transition",      "title" => "<hr/>",
945      "class" => "transition",      "right" => array(
946      "title" => _("transition"),          "action", "action_tab", "etat",
947      "right" => array("transition", "transition_tab", ),          "etat_tab", "avis_decision",
948      "open" => array("tab.php|transition", "form.php|transition", ),          "avis_decision_tab",
949        ),
950  );  );
951  //  //
952  $links[] = array(  $links[] = array(
953      "href" => "../scr/tab.php?obj=etat",      "href" => "../scr/tab.php?obj=etat",
954      "class" => "etat",      "class" => "workflow-etat",
955      "title" => _("etat"),      "title" => _("etat"),
956      "right" => array("etat", "etat_tab", ),      "right" => array("etat", "etat_tab", ),
957      "open" => array("tab.php|etat", "form.php|etat", ),      "open" => array("tab.php|etat", "form.php|etat", ),
958  );  );
959  //  //
960  $links[] = array(  $links[] = array(
961      "href" => "../scr/tab.php?obj=evenement",      "href" => "../scr/tab.php?obj=avis_decision",
962      "class" => "evenement",      "class" => "avis_decision",
963      "title" => _("evenement"),      "title" => _("avis decision"),
964      "right" => array("evenement", "evenement_tab", ),      "right" => array("avis_decision", "avis_decision_tab", ),
965      "open" => array("tab.php|evenement", "form.php|evenement", ),      "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
966    );
967    //
968    $links[] = array(
969        "href" => "../scr/tab.php?obj=action",
970        "class" => "action",
971        "title" => _("action"),
972        "right" => array("action", "action_tab", ),
973        "open" => array("tab.php|action", "form.php|action", ),
974    );
975    //
976    $links[] = array(
977        "title" => "<hr/>",
978        "right" => array(
979            "bible", "bible_tab",
980        ),
981  );  );
982  //  //
983  $links[] = array(  $links[] = array(
# Line 627  $links[] = array( Line 989  $links[] = array(
989  );  );
990  //  //
991  $links[] = array(  $links[] = array(
992      "href" => "../scr/tab.php?obj=avis_decision",      "class" => "category",
993      "class" => "avis_decision",      "title" => _("editions"),
994      "title" => _("avis decision"),      "right" => array(
995      "right" => array("avis_decision", "avis_decision_tab", ),          "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
996      "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),          "om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab",
997            "om_logo", "om_logo_tab",
998        ),
999    );
1000    //
1001    $links[] = array(
1002        "title" => "<hr/>",
1003        "right" => array(
1004            "om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab",
1005        ),
1006    );
1007    //
1008    $links[] = array(
1009        "href" => "../scr/tab.php?obj=om_etat",
1010        "class" => "om_etat",
1011        "title" => _("om_etat"),
1012        "right" => array("om_etat", "om_etat_tab", ),
1013        "open" => array("tab.php|om_etat", "form.php|om_etat", ),
1014    );
1015    //
1016    $links[] = array(
1017        "href" => "../scr/tab.php?obj=om_lettretype",
1018        "class" => "om_lettretype",
1019        "title" => _("om_lettretype"),
1020        "right" => array("om_lettretype", "om_lettretype_tab"),
1021        "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
1022    );
1023    //
1024    $links[] = array(
1025        "title" => "<hr/>",
1026        "right" => array(
1027            "om_logo", "om_logo_tab",
1028        ),
1029    );
1030    //
1031    $links[] = array(
1032        "href" => "../scr/tab.php?obj=om_logo",
1033        "class" => "om_logo",
1034        "title" => _("om_logo"),
1035        "right" => array("om_logo", "om_logo_tab", ),
1036        "open" => array("tab.php|om_logo", "form.php|om_logo", ),
1037    );
1038    //
1039    $rubrik['links'] = $links;
1040    //
1041    $menu[] = $rubrik;
1042    // }}}
1043    
1044    // {{{ Rubrique PARAMETRAGE
1045    //
1046    $rubrik = array(
1047        "title" => _("parametrage"),
1048        "class" => "parametrage",
1049        "right" => "menu_parametrage",
1050    );
1051    //
1052    $links = array();
1053    //
1054    $links[] = array(
1055        "href" => "../scr/tab.php?obj=civilite",
1056        "class" => "civilite",
1057        "title" => _("civilite"),
1058        "right" => array("civilite", "civilite_tab", ),
1059        "open" => array("tab.php|civilite", "form.php|civilite", ),
1060    );
1061    //
1062    $links[] = array(
1063        "href" => "../scr/tab.php?obj=arrondissement",
1064        "class" => "arrondissement",
1065        "title" => _("arrondissement"),
1066        "right" => array("arrondissement", "arrondissement_tab", ),
1067        "open" => array("tab.php|arrondissement", "form.php|arrondissement", ),
1068    );
1069    //
1070    $links[] = array(
1071        "href" => "../scr/tab.php?obj=quartier",
1072        "class" => "quartier",
1073        "title" => _("quartier"),
1074        "right" => array("quartier", "quartier_tab", ),
1075        "open" => array("tab.php|quartier", "form.php|quartier", ),
1076  );  );
1077  //  //
1078  $links[] = array(  $links[] = array(
# Line 640  $links[] = array( Line 1081  $links[] = array(
1081      "right" => array(      "right" => array(
1082          "direction", "direction_tab", "division", "division_tab", "instructeur",          "direction", "direction_tab", "division", "division_tab", "instructeur",
1083          "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",          "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
1084            "signataire_arrete", "signataire_arrete_tab",
1085      ),      ),
1086  );  );
1087  $links[] = array(  $links[] = array(
# Line 647  $links[] = array( Line 1089  $links[] = array(
1089      "right" => array(      "right" => array(
1090          "direction", "direction_tab", "division", "division_tab", "instructeur",          "direction", "direction_tab", "division", "division_tab", "instructeur",
1091          "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",          "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
1092            "signataire_arrete", "signataire_arrete_tab",
1093      ),      ),
1094  );  );
1095  //  //
# Line 691  $links[] = array( Line 1134  $links[] = array(
1134  );  );
1135  //  //
1136  $links[] = array(  $links[] = array(
1137        "href" => "../scr/tab.php?obj=signataire_arrete",
1138        "class" => "signataire_arrete",
1139        "title" => _("signataire arrete"),
1140        "right" => array("signataire_arrete", "signataire_arrete", ),
1141        "open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ),
1142    );
1143    //
1144    $links[] = array(
1145      "class" => "category",      "class" => "category",
1146      "title" => _("gestion des commissions"),      "title" => _("gestion des commissions"),
1147      "right" => array(      "right" => array(
# Line 770  $links[] = array( Line 1221  $links[] = array(
1221          "dossier_autorisation_type_detaille",          "dossier_autorisation_type_detaille",
1222          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1223          "dossier_instruction_type_tab",          "dossier_instruction_type_tab",
         "lien_evenement_dossier_autorisation_type",  
         "lien_evenement_dossier_autorisation_type_tab",  
1224          "autorite_competente", "autorite_competente_tab",          "autorite_competente", "autorite_competente_tab",
1225          "affectation_automatique", "affectation_automatique_tab",          "affectation_automatique", "affectation_automatique_tab",
1226      ),      ),
# Line 784  $links[] = array( Line 1233  $links[] = array(
1233          "dossier_autorisation_type_detaille",          "dossier_autorisation_type_detaille",
1234          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",          "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
1235          "dossier_instruction_type_tab",          "dossier_instruction_type_tab",
         "lien_evenement_dossier_autorisation_type",  
         "lien_evenement_dossier_autorisation_type_tab",  
1236          "autorite_competente", "autorite_competente_tab",          "autorite_competente", "autorite_competente_tab",
1237          "affectation_automatique", "affectation_automatique_tab",          "affectation_automatique", "affectation_automatique_tab",
1238                    
# Line 793  $links[] = array( Line 1240  $links[] = array(
1240  );  );
1241  //  //
1242  $links[] = array(  $links[] = array(
1243      "href" => "../scr/tab.php?obj=dossier_autorisation_type",      "href" => "../scr/tab.php?obj=etat_dossier_autorisation",
1244      "class" => "dossier_autorisation_type",      "class" => "etat_dossier_autorisation",
1245      "title" => _("dossier")." ".("autorisation")." "._("type"),      "title" => _("etat dossiers autorisations"),
1246      "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),      "right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ),
1247      "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", ),  
1248  );  );
1249  //  //
1250  $links[] = array(  $links[] = array(
# Line 839  $links[] = array( Line 1262  $links[] = array(
1262      "right" => array("autorite_competente", "autorite_competente_tab", ),      "right" => array("autorite_competente", "autorite_competente_tab", ),
1263      "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),      "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
1264  );  );
 //  
 $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", ),  
 );  
1265    
1266  //  //
 $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",  
     ),  
 );  
 //  
 $links[] = array(  
     "title" => "<hr/>",  
     "right" => array(  
         "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",  
         "om_lettretype", "om_lettretype_tab",  
     ),  
 );  
 //  
 $links[] = array(  
     "href" => "../scr/tab.php?obj=om_etat",  
     "class" => "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_sousetat",  
     "class" => "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_lettretype",  
     "class" => "lettretype",  
     "title" => _("om_lettretype"),  
     "right" => array("om_lettretype", "om_lettretype_tab"),  
     "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),  
 );  
 //  
1267  $rubrik['links'] = $links;  $rubrik['links'] = $links;
1268  //  //
1269  $menu[] = $rubrik;  $menu[] = $rubrik;
# Line 926  $rubrik = array( Line 1275  $rubrik = array(
1275      "title" => _("sig"),      "title" => _("sig"),
1276      "class" => "sig",      "class" => "sig",
1277      "right" => "menu_sig",      "right" => "menu_sig",
1278        "parameters" => array("option_localisation" => "sig_interne", ),
1279  );  );
1280  //  //
1281  $links = array();  $links = array();
# Line 936  $links[] = array( Line 1286  $links[] = array(
1286      "title" => _("parcelle"),      "title" => _("parcelle"),
1287      "right" => array("parcelle", "parcelle_tab"),      "right" => array("parcelle", "parcelle_tab"),
1288      "open" => array("tab.php|parcelle", "form.php|parcelle", ),      "open" => array("tab.php|parcelle", "form.php|parcelle", ),
1289        "parameters" => array("option_localisation" => "sig_interne", ),
1290  );  );
1291  //  //
1292  $links[] = array(  $links[] = array(
# Line 944  $links[] = array( Line 1295  $links[] = array(
1295      "title" => _("proprietaire"),      "title" => _("proprietaire"),
1296      "right" => array("proprietaire", "proprietaire_tab"),      "right" => array("proprietaire", "proprietaire_tab"),
1297      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
1298        "parameters" => array("option_localisation" => "sig_interne", ),
1299  );  );
1300  //  //
1301  $links[] = array(  $links[] = array(
# Line 954  $links[] = array( Line 1306  $links[] = array(
1306          "servitude_ligne", "servitude_ligne_tab", "servitude_point",          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1307          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1308      ),      ),
1309        "parameters" => array("option_localisation" => "sig_interne", ),
1310  );  );
1311  //  //
1312  $links[] = array(  $links[] = array(
# Line 963  $links[] = array( Line 1316  $links[] = array(
1316          "servitude_ligne", "servitude_ligne_tab", "servitude_point",          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
1317          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
1318      ),      ),
1319        "parameters" => array("option_localisation" => "sig_interne", ),
1320  );  );
1321  //  //
1322  $links[] = array(  $links[] = array(
# Line 971  $links[] = array( Line 1325  $links[] = array(
1325      "title" => _("pos"),      "title" => _("pos"),
1326      "right" => array("pos", "pos_tab"),      "right" => array("pos", "pos_tab"),
1327      "open" => array("tab.php|pos", "form.php|pos", ),      "open" => array("tab.php|pos", "form.php|pos", ),
1328        "parameters" => array("option_localisation" => "sig_interne", ),
1329  );  );
1330  //  //
1331  $links[] = array(  $links[] = array(
# Line 981  $links[] = array( Line 1336  $links[] = array(
1336      "open" => array(      "open" => array(
1337          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
1338      ),      ),
1339        "parameters" => array("option_localisation" => "sig_interne", ),
1340  );  );
1341  //  //
1342  $links[] = array(  $links[] = array(
# Line 989  $links[] = array( Line 1345  $links[] = array(
1345      "title" => _("servitude_ligne"),      "title" => _("servitude_ligne"),
1346      "right" => array("servitude_ligne", "servitude_ligne_tab"),      "right" => array("servitude_ligne", "servitude_ligne_tab"),
1347      "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),      "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
1348        "parameters" => array("option_localisation" => "sig_interne", ),
1349  );  );
1350  //  //
1351  $links[] = array(  $links[] = array(
# Line 997  $links[] = array( Line 1354  $links[] = array(
1354      "title" => _("servitude_point"),      "title" => _("servitude_point"),
1355      "right" => array("servitude_point", "servitude_point_tab"),      "right" => array("servitude_point", "servitude_point_tab"),
1356      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
1357        "parameters" => array("option_localisation" => "sig_interne", ),
1358  );  );
1359  //  //
1360  $links[] = array(  $links[] = array(
# Line 1005  $links[] = array( Line 1363  $links[] = array(
1363      "title" => _("parcelle_lot"),      "title" => _("parcelle_lot"),
1364      "right" => array("parcelle_lot", "parcelle_lot_tab"),      "right" => array("parcelle_lot", "parcelle_lot_tab"),
1365      "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),      "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1366        "parameters" => array("option_localisation" => "sig_interne", ),
1367  );  );
1368  //  //
1369  $rubrik['links'] = $links;  $rubrik['links'] = $links;
# Line 1098  $links[] = array( Line 1457  $links[] = array(
1457      "class" => "category",      "class" => "category",
1458      "title" => _("tableaux de bord"),      "title" => _("tableaux de bord"),
1459      "right" => array(      "right" => array(
1460          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",          "om_widget", "om_widget_tab", "om_dashboard",
1461      ),      ),
1462  );  );
1463  //  //
1464  $links[] = array(  $links[] = array(
1465      "title" => "<hr/>",      "title" => "<hr/>",
1466      "right" => array(      "right" => array(
1467          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",          "om_widget", "om_widget_tab", "om_dashboard",
1468      ),      ),
1469  );  );
1470  //  //
# Line 1118  $links[] = array( Line 1477  $links[] = array(
1477  );  );
1478  //  //
1479  $links[] = array(  $links[] = array(
1480      "href" => "../scr/tab.php?obj=om_dashboard",      "href" => "../scr/dashboard_composer.php",
1481      "class" => "om_dashboard",      "class" => "om_dashboard",
1482      "title" => _("om_dashboard"),      "title" => _("composition"),
1483      "right" => array( ),      "right" => array("om_dashboard", ),
1484      "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),      "open" => array("dashboard_composer.php|", ),
1485  );  );
1486  //  //
1487  $links[] = array(  $links[] = array(
# Line 1131  $links[] = array( Line 1490  $links[] = array(
1490      "right" => array(      "right" => array(
1491          "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",
1492      ),      ),
1493        "parameters" => array("option_localisation" => "sig_interne", ),
1494  );  );
1495  //  //
1496  $links[] = array(  $links[] = array(
# Line 1138  $links[] = array( Line 1498  $links[] = array(
1498      "right" => array(      "right" => array(
1499          "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",
1500      ),      ),
1501        "parameters" => array("option_localisation" => "sig_interne", ),
1502  );  );
1503  //  //
1504  $links[] = array(  $links[] = array(
# Line 1146  $links[] = array( Line 1507  $links[] = array(
1507      "title" => _("om_sig_map"),      "title" => _("om_sig_map"),
1508      "right" => array("om_sig_map", "om_sig_map_tab", ),      "right" => array("om_sig_map", "om_sig_map_tab", ),
1509      "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),      "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1510        "parameters" => array("option_localisation" => "sig_interne", ),
1511  );  );
1512  //  //
1513  $links[] = array(  $links[] = array(
# Line 1154  $links[] = array( Line 1516  $links[] = array(
1516      "title" => _("om_sig_wms"),      "title" => _("om_sig_wms"),
1517      "right" => array("om_sig_wms", "om_sig_wms_tab", ),      "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1518      "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),      "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1519        "parameters" => array("option_localisation" => "sig_interne", ),
1520  );  );
1521  //  //
1522  $links[] = array(  $links[] = array(
1523      "class" => "category",      "class" => "category",
1524      "title" => _("options avancees"),      "title" => _("options avancees"),
1525      "right" => array("import", "gen", ),      "right" => array("import", "gen", "om_requete", "om_requete_tab",
1526                         "om_sousetat", "om_sousetat_tab",),
1527    );
1528    //
1529    $links[] = array(
1530        "title" => "<hr/>",
1531        "right" => array(
1532            "om_sousetat", "om_sousetat_tab",
1533        ),
1534    );
1535    //
1536    $links[] = array(
1537        "href" => "../scr/tab.php?obj=om_sousetat",
1538        "class" => "om_sousetat",
1539        "title" => _("om_sousetat"),
1540        "right" => array("om_sousetat", "om_sousetat_tab", ),
1541        "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
1542    );
1543    //
1544    $links[] = array(
1545        "title" => "<hr/>",
1546        "right" => array("om_requete", "om_requete_tab", ),
1547    );
1548    //
1549    $links[] = array(
1550        "href" => "../scr/tab.php?obj=om_requete",
1551        "class" => "om_requete",
1552        "title" => _("om_requete"),
1553        "right" => array("om_requete", "om_requete_tab", ),
1554        "open" => array("tab.php|om_requete", "form.php|om_requete", ),
1555  );  );
1556  //  //
1557  $links[] = array(  $links[] = array(

Legend:
Removed from v.1185  
changed lines
  Added in v.3117

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26