/[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 566 by fmichon, Wed Oct 31 13:09:47 2012 UTC revision 652 by nhaye, Fri Nov 9 17:47:34 2012 UTC
# Line 10  Line 10 
10  //  //
11  $menu = array();  $menu = array();
12    
13  // {{{ Rubrique APPLICATION  // {{{ Rubrique AUTORISATION
14  //  //
15  $rubrik = array(  $rubrik = array(
16      "title" => _("instruction"),      "title" => _("autorisation"),
17      "class" => "instruction",      "class" => "autorisation",
18      "right" => "menu_instruction",      "right" => "menu_autorisation",
19  );  );
20  //  //
21  $links = array();  $links = array();
22  //  //
23  $links[] = array(  $rubrik['links'] = $links;
24      "href" => "../scr/tab.php?obj=PC",  //
25      "class" => "dossier",  $menu[] = $rubrik;
26      "title" => _("PC"),  // }}}
27      "right" => array("PC", "PC_tab", ),  
28      "open" => array("tab.php|PC", "form.php|PC", ),  // {{{ Rubrique GUICHET UNIQUE
29    //
30    $rubrik = array(
31        "title" => _("Guichet Unique"),
32        "class" => "guichet_unique",
33        "right" => "menu_guichet_unique",
34  );  );
35  //  //
36    $links = array();
37    //
38  $links[] = array(  $links[] = array(
39      "href" => "../scr/tab.php?obj=DP",      "class" => "category",
40      "class" => "dossier",      "title" => _("demandes"),
41      "title" => _("DP"),      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
42      "right" => array("DP", "DP_tab", ),                       "demande_dossier_existant","demande_dossier_existant_tab",),
43      "open" => array("tab.php|DP", "form.php|DP", ),  );
44    $links[] = array(
45        "title" => "<hr/>",
46        "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
47                         "demande_dossier_existant","demande_dossier_existant_tab",),
48  );  );
 //  
49  $links[] = array(  $links[] = array(
50      "href" => "../scr/tab.php?obj=PD",      "href" => "../scr/form.php?obj=demande&action=0&advs_id=&tricol=&valide=&retour=tab&new=",
51      "class" => "dossier",      "class" => "demande",
52      "title" => _("PD"),      "title" => _("nouveau dossier"),
53      "right" => array("PD", "PD_tab", ),      "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),
54      "open" => array("tab.php|PD", "form.php|PD", ),      "open" => array("tab.php|demande", "form.php|demande", ),
55    );
56    $links[] = array(
57        "href" => "../scr/tab.php?obj=demande",
58        "class" => "demande",
59        "title" => _("dossier existant"),
60        "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),
61        "open" => array("tab.php|demande", "form.php|demande", ),
62  );  );
63  //  //
64  $links[] = array(  $links[] = array(
65      "href" => "../scr/tab.php?obj=PA",      "class" => "category",
66      "class" => "dossier",      "title" => _("Affichage des dossiers"),
67      "title" => _("PA"),      "right" => array("edition", "edition_tab","attestation_affichage","attestation_affichage_tab",),
68      "right" => array("PA", "PA_tab", ),  );
69      "open" => array("tab.php|PA", "form.php|PA", ),  $links[] = array(
70        "title" => "<hr/>",
71        "right" => array("edition", "attestation_affichage"),
72    );
73    $links[] = array(
74        "href" => "../app/edition_affichage.php",
75        "class" => "edition",
76        "title" => _("edition"),
77        "right" => array("edition", "edition_tab", ),
78        "open" => array("tab.php|edition", "form.php|edition", ),
79    );
80    $links[] = array(
81        "href" => "../app/attestation_affichage.php",
82        "class" => "attestation_affichage",
83        "title" => _("attestation d'affichage"),
84        "right" => array("attestation_affichage", "attestation_affichage_tab", ),
85        "open" => array("tab.php|attestation_affichage", "form.php|attestation_affichage", ),
86  );  );
87  //  //
88    /*$links[] = array(
89        "class" => "category",
90        "title" => _("Qualification"),
91        "right" => array("qualification"),
92    );
93  $links[] = array(  $links[] = array(
94      "title" => "<hr/>",      "title" => "<hr/>",
95        "right" => array("qualification"),
96    );
97    $links[] = array(
98        "href" => "../scr/tab.php?obj=dossier",
99        "class" => "qualification",
100        "title" => _("A Qualifier"),
101        "right" => array("qualification", "qualification_tab", ),
102        "open" => array("tab.php|qualification", "form.php|qualification", ),
103    );*/
104    //
105    $rubrik['links'] = $links;
106    //
107    $menu[] = $rubrik;
108    // }}}
109    
110    // {{{ Rubrique INSTRUCTION
111    //
112    $rubrik = array(
113        "title" => _("instruction"),
114        "class" => "instruction",
115        "right" => "menu_instruction",
116    );
117    //
118    $links = array();
119    //
120    $links[] = array(
121        "class" => "category",
122        "title" => _("dossiers d'instruction"),
123      "right" => array(      "right" => array(
124          "PC_accueil", "PC_accueil_tab", "DP_accueil", "DP_accueil_tab",          "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
125          "PD_accueil", "PD_accueil_tab", "PA_accueil", "PA_accueil_tab",          "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
126            "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
127            "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
128            "dossier_instruction", "dossier_instruction_tab",
129            "PC_modificatif", "PC_modificatif_tab",
130      ),      ),
131  );  );
132  //  //
133  $links[] = array(  $links[] = array(
134      "href" => "../scr/tab.php?obj=PC_accueil",      "href" => "../scr/tab.php?obj=dossier_instruction_mes_encours",
135      "class" => "dossier",      "class" => "dossier_instruction_mes_encours",
136      "title" => _("PC - accueil"),      "title" => _("mes encours"),
137      "right" => array("PC_accueil", "PC_accueil_tab", ),      "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
138      "open" => array("tab.php|PC_accueil", "form.php|PC_accueil", ),      "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ),
139  );  );
140  //  //
141  $links[] = array(  $links[] = array(
142      "href" => "../scr/tab.php?obj=DP_accueil",      "href" => "../scr/tab.php?obj=dossier_instruction_tous_encours",
143      "class" => "dossier",      "class" => "dossier_instruction_tous_encours",
144      "title" => _("DP - accueil"),      "title" => _("tous les encours"),
145      "right" => array("DP_accueil", "DP_accueil_tab", ),      "right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ),
146      "open" => array("tab.php|DP_accueil", "form.php|DP_accueil", ),      "open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ),
147    );
148    //
149    $links[] = array(
150        "title" => "<hr/>",
151        "right" => array(
152            "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
153            "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
154        ),
155  );  );
156  //  //
157  $links[] = array(  $links[] = array(
158      "href" => "../scr/tab.php?obj=PD_accueil",      "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",
159      "class" => "dossier",      "class" => "dossier_instruction_mes_clotures",
160      "title" => _("PD - accueil"),      "title" => _("mes clotures"),
161      "right" => array("PD_accueil", "PD_accueil_tab", ),      "right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ),
162      "open" => array("tab.php|PD_accueil", "form.php|PD_accueil", ),      "open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ),
163  );  );
164  //  //
165  $links[] = array(  $links[] = array(
166      "href" => "../scr/tab.php?obj=PA_accueil",      "href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures",
167      "class" => "dossier",      "class" => "dossier_instruction_tous_clotures",
168      "title" => _("PA - accueil"),      "title" => _("tous les clotures"),
169      "right" => array("PA_accueil", "PA_accueil_tab", ),      "right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ),
170      "open" => array("tab.php|PA_accueil", "form.php|PA_accueil", ),      "open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ),
171  );  );
172  //  //
173  $links[] = array(  $links[] = array(
# Line 107  $links[] = array( Line 185  $links[] = array(
185  //  //
186  $links[] = array(  $links[] = array(
187      "title" => "<hr/>",      "title" => "<hr/>",
188      "right" => array("recherchedossier", ),      "right" => array(
189            "dossier_instruction", "dossier_instruction_tab",
190        ),
191  );  );
192  //  //
193  $links[] = array(  $links[] = array(
194      "href" => "../app/recherchedossier.php",      "href" => "../scr/tab.php?obj=dossier_instruction",
195      "class" => "dossier",      "class" => "dossier_instruction",
196      "title" => _("Recherche dossier"),      "title" => _("recherche"),
197      "right" => "recherchedossier",      "right" => array("dossier_instruction", "dossier_instruction_tab", ),
198      "open" => "recherchedossier.php|",      "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
199  );  );
200    //
201  $links[] = array(  $links[] = array(
202      "class" => "category",      "class" => "category",
203      "title" => _("Consultation"),      "title" => _("consultations"),
204      "right" => array("consultation_mes_retours", "consultation_tous_retours","avis_code_barre"),      "right" => array("consultation_mes_retours", "consultation_tous_retours","avis_code_barre"),
205  );  );
206  $links[] = array(  $links[] = array(
# Line 140  $links[] = array( Line 221  $links[] = array(
221      "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),      "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),
222      "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),      "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),
223  );  );
224    
225    
226    $links[] = array(
227        "class" => "category",
228        "title" => _("Messages"),
229        "right" => array("messages_mes_retours", "messages_tous_retours"),
230    );
231    $links[] = array(
232        "title" => "<hr/>",
233        "right" => array("messages_mes_retours", "messages_tous_retours"),
234    );
235    $links[] = array(
236        "href" => "../scr/tab.php?obj=messages_mes_retours",
237        "class" => "messages_mes_retours",
238        "title" => _("Mes messages"),
239        "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
240        "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
241    );
242    $links[] = array(
243        "href" => "../scr/tab.php?obj=messages_tous_retours",
244        "class" => "messages_tous_retours",
245        "title" => _("Tous les messages"),
246        "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
247        "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
248    );
249    
250    //
251    $rubrik['links'] = $links;
252    //
253    $menu[] = $rubrik;
254    // }}}
255    // {{{ Rubrique Demandes d'avis
256    //
257    $rubrik = array(
258        "title" => _("Suivi"),
259        "class" => "suivi",
260        "right" => "menu_suivi",
261    );
262    //
263    $links = array();
264    //
265  $links[] = array(  $links[] = array(
266      "href" => "../app/avis_code_barre.php",      "href" => "../app/avis_code_barre.php",
267      "class" => "avis_code_barre",      "class" => "avis_code_barre",
# Line 153  $rubrik['links'] = $links; Line 275  $rubrik['links'] = $links;
275  $menu[] = $rubrik;  $menu[] = $rubrik;
276  // }}}  // }}}
277    
278    // {{{ Rubrique DEMANDES D'AVIS
 // {{{ Rubrique Demandes d'avis  
279  //  //
280  $rubrik = array(  $rubrik = array(
281      "title" => _("Demandes d'avis"),      "title" => _("Demandes d'avis"),
# Line 165  $rubrik = array( Line 286  $rubrik = array(
286  $links = array();  $links = array();
287  //  //
288  $links[] = array(  $links[] = array(
289      "href" => "../scr/tab.php?obj=demande_encours",      "href" => "../scr/tab.php?obj=demande_avis_encours",
290      "class" => "demande_encours",      "class" => "demande_avis_encours",
291      "title" => _("Demandes en cours"),      "title" => _("Demandes en cours"),
292      "right" => array("demande_encours", "demande_encours_tab", ),      "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
293      "open" => array("tab.php|demande_encours", "form.php|demande_encours", ),      "open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ),
294  );  );
295    
296  $links[] = array(  $links[] = array(
297      "href" => "../scr/tab.php?obj=demande_passee",      "href" => "../scr/tab.php?obj=demande_avis_passee",
298      "class" => "demande_passee",      "class" => "demande_avis_passee",
299      "title" => _("Demandes passees"),      "title" => _("Demandes passees"),
300      "right" => array("demande_passee", "demande_passee_tab", ),      "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
301      "open" => array("tab.php|demande_passee", "form.php|demande_passee", ),      "open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ),
302  );  );
303    
304  $links[] = array(  $links[] = array(
305      "href" => "../scr/tab.php?obj=demande_export",      "href" => "../scr/tab.php?obj=demande_avis",
306      "class" => "demande_export",      "class" => "demande_avis",
307      "title" => _("Exports"),      "title" => _("Exports"),
308      "right" => array("demande_export", "demande_export_tab", ),      "right" => array("demande_avis", "demande_avis_tab", ),
309      "open" => array("tab.php|demande_export", "form.php|demande_export", ),      "open" => array("tab.php|demande_avis", "form.php|demande_avis", ),
310  );  );
311    
312  //  //

Legend:
Removed from v.566  
changed lines
  Added in v.652

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26