/[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 315 by atreal, Wed Mar 28 19:50:07 2012 UTC revision 1146 by vpihour, Fri Jan 4 15:29:05 2013 UTC
# Line 3  Line 3 
3   * Ce fichier permet de configurer quelles actions vont etre disponibles   * Ce fichier permet de configurer quelles actions vont etre disponibles
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 324 2010-12-06 16:06:21Z fraynaud $
8   */   */
9    
10  /**  //
  * $menu est le tableau associatif qui contient tout le menu de  
  * l'application, il contient lui meme un tableau par rubrique, puis chaque  
  * rubrique contient un tableau par lien  
  *  
  * Caracteristiques :  
  * --- tableau rubrik  
  *     - title [obligatoire]  
  *     - description (texte qui s'affiche au survol de la rubrique)  
  *     - href (contenu du lien href)  
  *     - class (classe css qui s'affiche sur la rubrique)  
  *     - right (droit que l'utilisateur doit avoir pour visionner cette rubrique)  
  *     - links [obligatoire]  
  *  
  * --- tableau links  
  *     - title [obligatoire]  
  *     - href [obligatoire] (contenu du lien href)  
  *     - class (classe css qui s'affiche sur l'element)  
  *     - right (droit que l'utilisateur doit avoir pour visionner cet element)  
  *     - target (pour ouvrir le lien dans une nouvelle fenetre)  
  */  
11  $menu = array();  $menu = array();
12    
13  // {{{  Rubrique application  // {{{ Rubrique AUTORISATION
14  // inserer ici vos tables principales  //
15    $rubrik = array(
16        "title" => _("autorisation"),
17        "class" => "autorisation",
18        "right" => "menu_autorisation",
19    );
20    //
21    $links = array();
22    //
23    $rubrik['links'] = $links;
24    //
25    $menu[] = $rubrik;
26    // }}}
27    
28    // {{{ Rubrique GUICHET UNIQUE
29    //
30  $rubrik = array(  $rubrik = array(
31      "title" => _("Instruction"),      "title" => _("Guichet Unique"),
32      "class" => "application",      "class" => "guichet_unique",
33      "right" => "menu_application",      "right" => "menu_guichet_unique",
34  );  );
35    //
36  $links = array();  $links = array();
37  // *** APPLICATION ***  //
38  // inserez ici les tables de votra application  $links[] = array(
39  // ========================================================================      "class" => "category",
40  /*      "title" => _("demandes"),
41    array_push($links,      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
42      array(                       "demande_dossier_existant","demande_dossier_existant_tab",),
43          "href" => "../scr/tab.php?obj=nom_table",  );
44          "class" => "nom_table",  $links[] = array(
45          "title" => _("nom_table"),      "title" => "<hr/>",
46          "right" => "nom_table"      "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
47      ));                       "demande_dossier_existant","demande_dossier_existant_tab",
48  */                       "demande_recepisse_demande","demande_recepisse_demande_tab",),
49  // ========================================================================  );
50    $links[] = array(
51        "href" => "../scr/form.php?obj=demande_nouveau_dossier&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
52    array_push($links,      "class" => "demande",
53      array(      "title" => _("nouveau dossier"),
54          "href" => "../scr/tab.php?obj=PC",      "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),
55          "class" => "dossier",      "open" => array("form.php|demande_nouveau_dossier",),
56          "title" => _("PC"),  );
57          "right" => "PC",  $links[] = array(
58          "open"  => "|PC"      "href" => "../scr/tab.php?obj=demande_dossier_existant",
59      ));      "class" => "demande_dossier_existant",
60          "title" => _("dossier existant"),
61    array_push($links,      "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),
62      array(      "open" => array("tab.php|demande_dossier_existant", "form.php|demande_dossier_existant"),
63          "href" => "../scr/tab.php?obj=DP",  );
64          "class" => "dossier",  $links[] = array(
65          "title" => _("DP"),      "href" => "../scr/tab.php?obj=demande",
66          "right" => "DP",      "class" => "demande",
67          "open"  => "|DP"      "title" => _("recepisse de demande"),
68      ));      "right" => array("demande_recepisse_demande", "demande_recepisse_demande_tab", ),
69        "open" => array("tab.php|demande","form.php|demande"),
70    );
71    array_push($links,  //
72      array(  $links[] = array(
73          "href" => "../scr/tab.php?obj=PD",      "class" => "category",
74          "class" => "dossier",      "title" => _("Affichage des dossiers"),
75          "title" => _("PD"),      "right" => array("edition_reglementaire","attestation_affichage",),
76          "right" => "PD",  );
77          "open"  => "|PD"  $links[] = array(
78      ));      "title" => "<hr/>",
79        "right" => array("edition", "attestation_affichage"),
80    array_push($links,  );
81      array(  $links[] = array(
82          "href" => "../scr/tab.php?obj=PA",      "href" => "../app/edition_reglementaire.php",
83          "class" => "dossier",      "class" => "edition",
84          "title" => _("PA"),      "title" => _("edition reglementaire"),
85          "right" => "PA",      "right" => "edition_reglementaire",
86          "open"  => "|PA"      "open" => "edition_reglementaire.php|",
87      ));  );
88    $links[] = array(
89  array_push($links,      "href" => "../app/attestation_affichage.php",
90      array(      "class" => "attestation_affichage",
91          "title" => "<hr/>",      "title" => _("attestation d'affichage"),
92          "right" => array(),      "right" => "attestation_affichage",
93      ));      "open" => "attestation_affichage.php|",
94    );
95    array_push($links,  //
96      array(  /*$links[] = array(
97          "href" => "../scr/tab.php?obj=PC_accueil",      "class" => "category",
98          "class" => "dossier",      "title" => _("Qualification"),
99          "title" => _("PC - accueil"),      "right" => array("qualification"),
100          "right" => "PC_accueil",  );
101          "open"  => "|PC_accueil"  $links[] = array(
102      ));      "title" => "<hr/>",
103          "right" => array("qualification"),
104    array_push($links,  );
105      array(  $links[] = array(
106          "href" => "../scr/tab.php?obj=DP_accueil",      "href" => "../scr/tab.php?obj=dossier",
107          "class" => "dossier",      "class" => "qualification",
108          "title" => _("DP - accueil"),      "title" => _("A Qualifier"),
109          "right" => "DP_accueil",      "right" => array("qualification", "qualification_tab", ),
110          "open"  => "|DP_accueil"      "open" => array("tab.php|qualification", "form.php|qualification", ),
111      ));  );*/
112    //
113    $rubrik['links'] = $links;
114    array_push($links,  //
115      array(  $menu[] = $rubrik;
116          "href" => "../scr/tab.php?obj=PD_accueil",  // }}}
         "class" => "dossier",  
         "title" => _("PD - accueil"),  
         "right" => "PD_accueil",  
         "open"  => "|PD_accueil"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PA_accueil",  
         "class" => "dossier",  
         "title" => _("PA - accueil"),  
         "right" => "PA_accueil",  
         "open"  => "|PA_accueil"  
     ));  
   
     array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array(),  
     ));  
   
     array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PC_modificatif",  
         "class" => "traitement",  
         "title" => _("modificatif transfert"),  
         "right" => "PC_modificatif",  
         "open"  => array("|PC_modificatif","dossier_modificatif.php|")  
     ));  
   
     array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array(),  
     ));  
   
     array_push($links,  
     array(  
         "href" => "../app/recherchedossier.php",  
         "class" => "dossier",  
         "title" => _("Recherche dossier"),  
         "right" => "recherchedossier",  
         "open"  => "recherchedossier.php|"  
     ));  
117    
118    // {{{ Rubrique INSTRUCTION
119    //
120    $rubrik = array(
121        "title" => _("instruction"),
122        "class" => "instruction",
123        "right" => "menu_instruction",
124    );
125    //
126    $links = array();
127    // Catégorie DOSSIERS D'INSTRUCTION
128    $links[] = array(
129        "class" => "category",
130        "title" => _("dossiers d'instruction"),
131        "right" => array(
132            "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
133            "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
134            "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
135            "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
136            "dossier_instruction", "dossier_instruction_tab",
137            "dossiers_limites", "dossiers_limites_tab",
138            "PC_modificatif", "PC_modificatif_tab",
139        ),
140    );
141    $links[] = array(
142        "title" => "<hr/>",
143        "right" => array(
144            "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
145            "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
146        ),
147    );
148    //
149    $links[] = array(
150        "href" => "../scr/tab.php?obj=dossier_instruction_mes_encours",
151        "class" => "dossier_instruction_mes_encours",
152        "title" => _("mes encours"),
153        "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
154        "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ),
155    );
156    //
157    $links[] = array(
158        "href" => "../scr/tab.php?obj=dossier_instruction_tous_encours",
159        "class" => "dossier_instruction_tous_encours",
160        "title" => _("tous les encours"),
161        "right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ),
162        "open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ),
163    );
164    //
165    $links[] = array(
166        "title" => "<hr/>",
167        "right" => array(
168            "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
169            "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
170        ),
171    );
172    //
173    $links[] = array(
174        "title" => "<hr/>",
175        "right" => array(
176            "dossiers_limites", "dossiers_limites_tab",
177            "dossiers_limites", "dossiers_limites_tab",
178        ),
179    );
180    //
181    $links[] = array(
182        "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",
183        "class" => "dossier_instruction_mes_clotures",
184        "title" => _("mes clotures"),
185        "right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ),
186        "open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ),
187    );
188    //
189    $links[] = array(
190        "href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures",
191        "class" => "dossier_instruction_tous_clotures",
192        "title" => _("tous les clotures"),
193        "right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ),
194        "open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ),
195    );
196    //
197    $links[] = array(
198        "title" => "<hr/>",
199        "right" => array("PC_modificatif", "PC_modificatif_tab", ),
200    );
201    //
202    $links[] = array(
203        "href" => "../scr/tab.php?obj=PC_modificatif",
204        "class" => "traitement",
205        "title" => _("modificatif transfert"),
206        "right" => array("PC_modificatif", "PC_modificatif_tab", ),
207        "open" => array("|PC_modificatif", "dossier_modificatif.php|", ),
208    );
209    //
210    $links[] = array(
211        "title" => "<hr/>",
212        "right" => array(
213            "dossiers_limites", "dossiers_limites_tab",
214        ),
215    );
216    //
217    $links[] = array(
218        "href" => "../scr/tab.php?obj=dossiers_limites",
219        "class" => "dossiers_limites",
220        "title" => _("dossiers limites"),
221        "right" => array("dossiers_limites", "dossiers_limites_tab", ),
222        "open" => array("tab.php|dossiers_limites", "form.php|dossiers_limites", ),
223    );
224    //
225    $links[] = array(
226        "title" => "<hr/>",
227        "right" => array(
228            "dossier_instruction", "dossier_instruction_tab",
229        ),
230    );
231    //
232    $links[] = array(
233        "href" => "../scr/tab.php?obj=dossier_instruction",
234        "class" => "dossier_instruction",
235        "title" => _("recherche"),
236        "right" => array("dossier_instruction", "dossier_instruction_tab", ),
237        "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
238    );
239    // Catégorie CONSULTATIONS
240    $links[] = array(
241        "class" => "category",
242        "title" => _("consultations"),
243        "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
244    );
245    $links[] = array(
246        "title" => "<hr/>",
247        "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
248    );
249    $links[] = array(
250        "href" => "../scr/tab.php?obj=consultation_mes_retours",
251        "class" => "consultation_mes_retours",
252        "title" => _("Mes retours"),
253        "right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ),
254        "open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ),
255    );
256    $links[] = array(
257        "href" => "../scr/tab.php?obj=consultation_tous_retours",
258        "class" => "consultation_tous_retours",
259        "title" => _("Tous les retours"),
260        "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),
261        "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),
262    );
263    // Catégorie MESSAGES
264    $links[] = array(
265        "class" => "category",
266        "title" => _("Messages"),
267        "right" => array("messages_mes_retours", "messages_tous_retours"),
268        "parameters" => array("option_ERP" => "true", ),
269    );
270    //
271    $links[] = array(
272        "title" => "<hr/>",
273        "right" => array("messages_mes_retours", "messages_tous_retours"),
274        "parameters" => array("option_ERP" => "true", ),
275    );
276    //
277    $links[] = array(
278        "href" => "../scr/tab.php?obj=messages_mes_retours",
279        "class" => "messages_mes_retours",
280        "title" => _("Mes messages"),
281        "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
282        "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
283        "parameters" => array("option_ERP" => "true", ),
284    );
285    //
286    $links[] = array(
287        "href" => "../scr/tab.php?obj=messages_tous_retours",
288        "class" => "messages_tous_retours",
289        "title" => _("Tous les messages"),
290        "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
291        "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
292        "parameters" => array("option_ERP" => "true", ),
293    );
294    // Catégorie COMMISSIONS
295    $links[] = array(
296        "class" => "category",
297        "title" => _("commissions"),
298        "right" => array(
299            "commission_mes_retours", "commission_mes_retours_tab",
300            "commission_tous_retours", "commission_tous_retours_tab",
301        ),
302    );
303    $links[] = array(
304        "title" => "<hr/>",
305        "right" => array(
306            "commission_mes_retours", "commission_mes_retours_tab",
307            "commission_tous_retours", "commission_tous_retours_tab",
308        ),
309    );
310    $links[] = array(
311        "href" => "../scr/tab.php?obj=commission_mes_retours",
312        "class" => "commission_mes_retours",
313        "title" => _("Mes retours"),
314        "right" => array("commission_mes_retours", "commission_mes_retours_tab", ),
315        "open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ),
316    );
317    $links[] = array(
318        "href" => "../scr/tab.php?obj=commission_tous_retours",
319        "class" => "commission_tous_retours",
320        "title" => _("Tous les retours"),
321        "right" => array("commission_tous_retours", "commission_tous_retours_tab", ),
322        "open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ),
323    );
324    
325    //
326    $rubrik['links'] = $links;
327    //
328    $menu[] = $rubrik;
329    // }}}
330    
331    // {{{ Rubrique SUIVI
332    //
333    $rubrik = array(
334        "title" => _("Suivi"),
335        "class" => "suivi",
336        "right" => "menu_suivi",
337    );
338    //
339    $links = array();
340    //
341    $links[] = array(
342        "href" => "../app/avis_code_barre.php",
343        "class" => "avis_code_barre",
344        "title" => _("Retour de consultation"),
345        "right" => array("avis_code_barre", ),
346        "open" => array("avis_code_barre.php|", "form.php|consultation", ),
347    );
348    //
349    $rubrik['links'] = $links;
350    //
351    $menu[] = $rubrik;
352    // }}}
353    
354    // {{{ Rubrique DEMANDES D'AVIS
355    //
356    $rubrik = array(
357        "title" => _("Demandes d'avis"),
358        "class" => "demande_avis",
359        "right" => "menu_demande_avis",
360    );
361    //
362    $links = array();
363    //
364    $links[] = array(
365        "href" => "../scr/tab.php?obj=demande_avis_encours",
366        "class" => "demande_avis_encours",
367        "title" => _("Demandes en cours"),
368        "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
369        "open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ),
370    );
371    
372    $links[] = array(
373        "href" => "../scr/tab.php?obj=demande_avis_passee",
374        "class" => "demande_avis_passee",
375        "title" => _("Demandes passees"),
376        "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
377        "open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ),
378    );
379    
380    $links[] = array(
381        "href" => "../scr/tab.php?obj=demande_avis",
382        "class" => "demande_avis",
383        "title" => _("Exports"),
384        "right" => array("demande_avis", "demande_avis_tab", ),
385        "open" => array("tab.php|demande_avis", "form.php|demande_avis", ),
386    );
387    
388    //
389  $rubrik['links'] = $links;  $rubrik['links'] = $links;
390  array_push($menu, $rubrik);  //
391    $menu[] = $rubrik;
392    // }}}
393    
394    
 //}}}  
395    
396  // {{{ Rubrique EXPORT  // {{{ Rubrique EXPORT
397    //
398  $rubrik = array(  $rubrik = array(
399      "title" => _("Export"),      "title" => _("export"),
400      "class" => "edition",      "class" => "edition",
401      "right" => "menu_export",      "right" => "menu_export",
402  );  );
403    //
404  $links = array();  $links = array();
405  array_push($links,  //
406      array(  $links[] = array(
407          "href" => "../scr/edition.php",      "href" => "../scr/edition.php",
408          "class" => "edition",      "class" => "edition",
409          "title" => _("Edition"),      "title" => _("edition"),
410          "right" => "edition",      "right" => "edition",
411          "open"  => "edition.php|"      "open" => "edition.php|",
412      ));  );
413  array_push($links,  //
414      array(  $links[] = array(
415          "href" => "../app/edition_p.php",      "href" => "../app/edition_p.php",
416          "class" => "edition",      "class" => "edition",
417          "title" => _("Edition date depot"),      "title" => _("edition date depot"),
418          "right" => "edition_p",      "right" => "edition_p",
419          "open"  => "edition_p.php|"      "open" => "edition_p.php|",
420      ));  );
421    //
422  array_push($links,  $links[] = array(
423      array(      "href" => "../app/edition_d.php",
424          "href" => "../app/edition_d.php",      "class" => "edition",
425          "class" => "edition",      "title" => _("edition date decision"),
426          "title" => _("Edition date decision"),      "right" => "edition_d",
427          "right" => "edition_d",      "open" => "edition_d.php|",
428          "open"  => "edition_d.php|"  );
429      ));  //
430    $links[] = array(
431      array_push($links,      "title" => "<hr/>",
432      array(      "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),
433          "title" => "<hr/>",  );
434          "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel")  //
435      ));  $links[] = array(
436        "href" => "../scr/reqmo.php",
437  array_push($links,      "class" => "reqmo",
438      array(      "title" => _("requetes memorisees"),
439          "href" => "../scr/reqmo.php",      "right" => "reqmo",
440          "class" => "reqmo",      "open" => array("reqmo.php|", "requeteur.php|", ),
441          "title" => _("Requetes memorisees"),  );
442          "right" => "reqmo",  //
443          "open"  => array("reqmo.php|","requeteur.php|",),  $links[] = array(
444      ));      "href" => "../app/export_pc.php",
445        "class" => "reqmo",
446      array_push($links,      "title" => _("export PC Lascot"),
447      array(      "right" => "export_pc",
448          "href" => "../app/export_pc.php",      "open" => "export_pc.php|",
449          "class" => "reqmo",  );
450          "title" => _("export PC Lascot"),  //
451          "right" => "export_pc",  $links[] = array(
452          "open"  => "export_pc.php|"      "href" => "../app/export_dp.php",
453      ));      "class" => "reqmo",
454            "title" => _("export DP Lascot"),
455      array_push($links,      "right" => "export_dp",
456      array(      "open" => "export_dp.php|",
457          "href" => "../app/export_dp.php",  );
458          "class" => "reqmo",  //
459          "title" => _("export DP Lascot"),  $links[] = array(
460          "right" => "export_dp",      "href" => "../app/sitadel.php",
461          "open"  => "export_dp.php|"      "class" => "reqmo",
462      ));      "title" => _("export sitadel")." 2",
463        "right" => "export_sitadel",
464      array_push($links,      "open" => "sitadel.php|",
465      array(  );
466          "href" => "../app/sitadel.php",  //
         "class" => "reqmo",  
         "title" => _("export")._("sitadel")." 2",  
         "right" => "export_sitadel",  
         "open"  => "sitadel.php|"  
     ));  
   
   
467  $rubrik['links'] = $links;  $rubrik['links'] = $links;
468  array_push($menu, $rubrik);  //
469    $menu[] = $rubrik;
470  // }}}  // }}}
 // {{{  Rubrique parametrage de l'application  
471    
472    // {{{ Rubrique PARAMETRAGE
473    //
474  $rubrik = array(  $rubrik = array(
475      "title" => _("Parametrage"),      "title" => _("parametrage"),
476      "class" => "parametrage",      "class" => "parametrage",
477      "right" => "menu_parametrage",      "right" => "menu_parametrage",
478  );  );
479    //
480  $links = array();  $links = array();
481  // *** TABLES DE PARAMETRAGE ***  //
482  // inserer ici vos tables de parametres  // GENERAUX
483  // ========================================================================  $links[] = array(
484  /*      "href" => "../scr/form.php?obj=dossier_numeromanuel",
485    array_push($links,      "class" => "traitement",
486      array(      "title" => _("numero manuel"),
487          "href" => "../scr/tab.php?obj=nom_table",      "right" => "dossier_numeromanuel",
488          "class" => "nom_table",      "open" => "|dossier_numeromanuel",
489          "title" => _("nom_table"),  );
490          "right" => "nom_table"  //
491      ));  $links[] = array(
492  */      "href" => "../app/num_dossier.php",
493  // ========================================================================      "class" => "traitement",
494        "title" => _("remise a 0"),
495        "right" => "num_dossier",
496  // param gaux      "open" => "num_dossier.php|",
497    );
498      array_push($links,  //
499      array(  $links[] = array(
500          "href" => "../scr/form.php?obj=dossier_numeromanuel",      "title" => "<hr/>",
501          "class" => "traitement",      "right" => array(
502          "title" => _("numero manuel"),          "architecte", "architecte_tab",
503          "right" => "dossier_numeromanuel",           "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",
504          "open"  => "|dossier_numeromanuel"          "destination", "destination_tab", "nature", "nature_tab", "rivoli",
505      ));          "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",
506        ),
507      array_push($links,  );
508      array(  //
509          "href" => "../app/num_dossier.php",  $links[] = array(
510          "class" => "traitement",      "href" => "../scr/tab.php?obj=architecte",
511          "title" => _("remise a 0"),      "class" => "architecte",
512          "right" => "num_dossier",      "title" => _("architecte"),
513          "open"  => "num_dossier.php|"      "right" => array("architecte", "architecte_tab", ),
514      ));      "open" => array("tab.php|architecte", "form.php|architecte", ),
515    );
516      array_push($links,  
517      array(  //
518          "title" => "<hr/>",  $links[] = array(
519          "right" => array(),      "href" => "../scr/tab.php?obj=travaux",
520      ));      "class" => "travaux",
521        "title" => _("travaux"),
522        "right" => array("travaux", "travaux_tab", ),
523    array_push($links,      "open" => array("tab.php|travaux", "form.php|travaux", ),
524      array(  );
525          "href" => "../scr/tab.php?obj=architecte",  //
526          "class" => "architecte",  $links[] = array(
527          "title" => _("architecte"),      "href" => "../scr/tab.php?obj=categorie_demandeur",
528          "right" => "architecte",      "class" => "categorie_demandeur",
529          "open"  => "|architecte"      "title" => _("categorie_demandeur"),
530      ));      "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),
531        "open" => array(
532            "tab.php|categorie_demandeur", "form.php|categorie_demandeur",
533        ),
534    array_push($links,  );
535      array(  //
536          "href" => "../scr/tab.php?obj=service",  $links[] = array(
537          "class" => "service",      "href" => "../scr/tab.php?obj=destination",
538          "title" => _("service"),      "class" => "destination",
539          "right" => "service",      "title" => _("destination"),
540          "open"  => "|service"      "right" => array("destination", "destination_tab", ),
541      ));      "open" => array("tab.php|destination", "form.php|destination", ),
542      );
543    array_push($links,  //
544      array(  $links[] = array(
545          "href" => "../scr/tab.php?obj=travaux",      "href" => "../scr/tab.php?obj=rivoli",
546          "class" => "travaux",      "class" => "rivoli",
547          "title" => _("travaux"),      "title" => _("rivoli"),
548          "right" => "travaux",      "right" => array("rivoli", "rivoli_tab", ),
549          "open"  => "|travaux",      "open" => array("tab.php|rivoli", "form.php|rivoli", ),
550      ));  );
551    //
552    array_push($links,  $links[] = array(
553      array(      "href" => "../scr/tab.php?obj=civilite",
554          "href" => "../scr/tab.php?obj=categorie_demandeur",      "class" => "civilite",
555          "class" => "categorie_demandeur",      "title" => _("civilite"),
556          "title" => _("categorie_demandeur"),      "right" => array("civilite", "civilite_tab", ),
557          "right" => "categorie_demandeur",      "open" => array("tab.php|civilite", "form.php|civilite", ),
558          "open"  => "|categorie_demandeur"  );
559      ));  //
560      $links[] = array(
561    array_push($links,      "href" => "../scr/tab.php?obj=parametre",
562      array(      "class" => "parametre",
563          "href" => "../scr/tab.php?obj=destination",      "title" => _("parametre")." "._("statistique"),
564          "class" => "destination",      "right" => array("parametre", "parametre_tab", ),
565          "title" => _("destination"),      "open" => array("tab.php|parametre", "form.php|parametre", ),
566          "right" => "destination",  );
         "open"  => "|destination"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=nature",  
         "class" => "nature",  
         "title" => _("nature"),  
         "right" => "nature",  
         "open"  => "|nature"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=rivoli",  
         "class" => "rivoli",  
         "title" => _("rivoli"),  
         "right" => "rivoli",  
         "open"  => "|rivoli"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=civilite",  
         "class" => "civilite",  
         "title" => _("civilite"),  
         "right" => "civilite",  
         "open"  => "|civilite"  
     ));  
   
   
   
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=parametre",  
         "class" => "parametre",  
         "title" => _("parametre")." "._("statistique"),  
         "right" => "parametre",  
         "open"  => "|parametre"  
     ));  
   
   
   
 // workflows  
     array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array("action_tab", "transition_tab", "etat_tab",  
                          "evenement_tab", "bible", "avis")  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=action",  
         "class" => "action",  
         "title" => _("action"),  
         "right" => "action",  
         "open"  => "|action"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=transition",  
         "class" => "transition",  
         "title" => _("transition"),  
         "right" => "transition",  
         "open"  => "|transition"  
     ));  
     
     array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=etat",  
         "class" => "etat",  
         "title" => _("etat"),  
         "right" => "etat",  
         "open"  => "|etat"  
     ));  
   
     array_push($links,  
       array(  
           "href" => "../scr/tab.php?obj=evenement",  
           "class" => "evenement",  
           "title" => _("evenement"),  
           "right" => "evenement",  
           "open"  => "|evenement"  
       ));  
       
     array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=bible",  
         "class" => "bible",  
         "title" => _("bible"),  
         "right" => "bible",  
         "open"  => "|bible"  
     ));  
         
     array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=avis",  
         "class" => "avis",  
         "title" => _("avis"),  
         "right" => "avis",  
         "open"  => "|avis"  
     ));  
   array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array("om_etat_tab", "om_sousetat_tab", "om_lettretype_tab"),  
     ));  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=om_etat",  
         "class" => "etat",  
         "title" => _("om_etat"),  
         "right" => "om_etat_tab",  
         "open"  => "|om_etat"  
     ));  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=om_sousetat",  
         "class" => "sousetat",  
         "title" => _("om_sousetat"),  
         "right" => "om_sousetat_tab",  
         "open"  => "|om_sousetat"  
     ));  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=om_lettretype",  
         "class" => "lettretype",  
         "title" => _("om_lettretype"),  
         "right" => "om_lettretype_tab",  
         "open"  => "|om_lettretype"  
     ));  
567    
568    //
569    $links[] = array(
570        "class" => "category",
571        "title" => _("workflows"),
572        "right" => array(
573            "action", "action_tab", "transition", "transition_tab", "etat",
574            "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
575            "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
576        ),
577    );
578    //
579    $links[] = array(
580        "title" => "<hr/>",
581        "right" => array(
582            "action", "action_tab", "transition", "transition_tab", "etat",
583            "etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision",
584            "avis_decision_tab", "avis_consultation", "avis_consultation_tab",
585        ),
586    );
587    //
588    $links[] = array(
589        "href" => "../scr/tab.php?obj=action",
590        "class" => "action",
591        "title" => _("action"),
592        "right" => array("action", "action_tab", ),
593        "open" => array("tab.php|action", "form.php|action", ),
594    );
595    //
596    $links[] = array(
597        "href" => "../scr/tab.php?obj=transition",
598        "class" => "transition",
599        "title" => _("transition"),
600        "right" => array("transition", "transition_tab", ),
601        "open" => array("tab.php|transition", "form.php|transition", ),
602    );
603    //
604    $links[] = array(
605        "href" => "../scr/tab.php?obj=etat",
606        "class" => "etat",
607        "title" => _("etat"),
608        "right" => array("etat", "etat_tab", ),
609        "open" => array("tab.php|etat", "form.php|etat", ),
610    );
611    //
612    $links[] = array(
613        "href" => "../scr/tab.php?obj=evenement",
614        "class" => "evenement",
615        "title" => _("evenement"),
616        "right" => array("evenement", "evenement_tab", ),
617        "open" => array("tab.php|evenement", "form.php|evenement", ),
618    );
619    //
620    $links[] = array(
621        "href" => "../scr/tab.php?obj=bible",
622        "class" => "bible",
623        "title" => _("bible"),
624        "right" => array("bible", "bible_tab", ),
625        "open" => array("tab.php|bible", "form.php|bible", ),
626    );
627    //
628    $links[] = array(
629        "href" => "../scr/tab.php?obj=avis_decision",
630        "class" => "avis_decision",
631        "title" => _("avis decision"),
632        "right" => array("avis_decision", "avis_decision_tab", ),
633        "open" => array("tab.php|avis_decision", "form.php|avis_decision", ),
634    );
635    //
636    $links[] = array(
637        "class" => "category",
638        "title" => _("Organisation"),
639        "right" => array(
640            "direction", "direction_tab", "division", "division_tab", "instructeur",
641            "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
642        ),
643    );
644    $links[] = array(
645        "title" => "<hr/>",
646        "right" => array(
647            "direction", "direction_tab", "division", "division_tab", "instructeur",
648            "instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab",
649        ),
650    );
651    //
652    $links[] = array(
653        "href" => "../scr/tab.php?obj=genre",
654        "class" => "genre",
655        "title" => _("genre"),
656        "right" => array("genre", "genre_tab", ),
657        "open" => array("tab.php|genre", "form.php|genre", ),
658    );
659    //
660    $links[] = array(
661        "href" => "../scr/tab.php?obj=groupe",
662        "class" => "groupe",
663        "title" => _("groupe"),
664        "right" => array("groupe", "groupe_tab", ),
665        "open" => array("tab.php|groupe", "form.php|groupe", ),
666    );
667    //
668    $links[] = array(
669        "href" => "../scr/tab.php?obj=direction",
670        "class" => "direction",
671        "title" => _("direction"),
672        "right" => array("direction", "direction_tab", ),
673        "open" => array("tab.php|direction", "form.php|direction", ),
674    );
675    //
676    $links[] = array(
677        "href" => "../scr/tab.php?obj=division",
678        "class" => "division",
679        "title" => _("division"),
680        "right" => array("division", "division_tab", ),
681        "open" => array("tab.php|division", "form.php|division", ),
682    );
683    //
684    $links[] = array(
685        "href" => "../scr/tab.php?obj=instructeur",
686        "class" => "instructeur",
687        "title" => _("instructeur"),
688        "right" => array("instructeur", "instructeur_tab", ),
689        "open" => array("tab.php|instructeur", "form.php|instructeur", ),
690    );
691    //
692    $links[] = array(
693        "class" => "category",
694        "title" => _("gestion des commissions"),
695        "right" => array(
696            "comission_type", "comission_type_tab",
697        ),
698    );
699    //
700    $links[] = array(
701        "title" => "<hr/>",
702        "right" => array(
703            "comission_type", "comission_type_tab",
704        ),
705    );
706    //
707    $links[] = array(
708        "href" => "../scr/tab.php?obj=commission_type",
709        "class" => "commission-type",
710        "title" => _("commission_type"),
711        "right" => array("commission_type", "commission_type_tab", ),
712        "open" => array("tab.php|commission_type", "form.php|commission_type", ),
713    );
714    //
715    $links[] = array(
716        "class" => "category",
717        "title" => _("gestion des consultations"),
718        "right" => array(
719            "avis_consultation", "avis_consultation_tab", "service", "service_tab",
720            "service_categorie", "service_categorie_tab",
721            "lien_service_service_categorie", "lien_service_service_categorie_tab",
722        ),
723    );
724    //
725    $links[] = array(
726        "title" => "<hr/>",
727        "right" => array(
728            "avis_consultation", "avis_consultation_tab", "service", "service_tab",
729            "service_categorie", "service_categorie_tab",
730            "lien_service_service_categorie", "lien_service_service_categorie_tab",
731        ),
732    );
733    //
734    $links[] = array(
735        "href" => "../scr/tab.php?obj=avis_consultation",
736        "class" => "avis_consultation",
737        "title" => _("avis consultation"),
738        "right" => array("avis_consultation", "avis_consultation_tab", ),
739        "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
740    );
741    //
742    $links[] = array(
743        "href" => "../scr/tab.php?obj=service",
744        "class" => "service",
745        "title" => _("service"),
746        "right" => array("service", "service_tab", ),
747        "open" => array("tab.php|service", "form.php|service", ),
748    );
749    $links[] = array(
750        "href" => "../scr/tab.php?obj=service_categorie",
751        "class" => "service_categorie",
752        "title" => _("thematique des services"),
753        "right" => array("service_categorie", "service_categorie_tab", ),
754        "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
755    );
756    $links[] = array(
757        "href" => "../scr/tab.php?obj=lien_service_service_categorie",
758        "class" => "lien_service_service_categorie",
759        "title" => _("Lien service / thematique"),
760        "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),
761        "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),
762    );
763    //
764    $links[] = array(
765        "class" => "category",
766        "title" => _("Gestion des dossiers"),
767        "right" => array(
768            "dossier_autorisation_type", "dossier_autorisation_type_tab",
769            "dossier_autorisation_type_detaille",
770            "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
771            "dossier_instruction_type_tab",
772            "lien_evenement_dossier_autorisation_type",
773            "lien_evenement_dossier_autorisation_type_tab",
774            "autorite_competente", "autorite_competente_tab",
775            "affectation_automatique", "affectation_automatique_tab",
776        ),
777    );
778    //
779    $links[] = array(
780        "title" => "<hr/>",
781        "right" => array(
782            "dossier_autorisation_type", "dossier_autorisation_type_tab",
783            "dossier_autorisation_type_detaille",
784            "dossier_autorisation_type_detaille_tab", "dossier_instruction_type",
785            "dossier_instruction_type_tab",
786            "lien_evenement_dossier_autorisation_type",
787            "lien_evenement_dossier_autorisation_type_tab",
788            "autorite_competente", "autorite_competente_tab",
789            "affectation_automatique", "affectation_automatique_tab",
790            
791        ),
792    );
793    //
794    $links[] = array(
795        "href" => "../scr/tab.php?obj=dossier_autorisation_type",
796        "class" => "dossier_autorisation_type",
797        "title" => _("dossier")." ".("autorisation")." "._("type"),
798        "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
799        "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
800    );
801    //
802    $links[] = array(
803        "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
804        "class" => "dossier_autorisation_type_detaille",
805        "title" => _("dossier")." ".("autorisation")." "._("type")." "._("detaille"),
806        "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
807        "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
808    );
809    //
810    $links[] = array(
811        "href" => "../scr/tab.php?obj=dossier_instruction_type",
812        "class" => "dossier_instruction_type",
813        "title" => _("dossier")." "._("instruction")." "._("type"),
814        "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
815        "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
816    );
817    //
818    $links[] = array(
819        "href" => "../scr/tab.php?obj=lien_evenement_dossier_autorisation_type",
820        "class" => "lien_evenement_dossier_autorisation_type",
821        "title" => _("lien")." "._("evenement")." "._("dossier")." "._("autorisation")." "._("type"),
822        "right" => array("lien_evenement_dossier_autorisation_type", "lien_evenement_dossier_autorisation_type_tab", ),
823        "open" => array("tab.php|lien_evenement_dossier_autorisation_type", "form.php|lien_evenement_dossier_autorisation_type", ),
824    );
825    //
826    $links[] = array(
827        "href" => "../scr/tab.php?obj=affectation_automatique",
828        "class" => "affectation_automatique",
829        "title" => _("affectation automatique"),
830        "right" => array("affectation_automatique", "affectation_automatique_tab", ),
831        "open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ),
832    );
833    //
834    $links[] = array(
835        "href" => "../scr/tab.php?obj=autorite_competente",
836        "class" => "autorite_competente",
837        "title" => _("autorite")." "._("competente"),
838        "right" => array("autorite_competente", "autorite_competente_tab", ),
839        "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
840    );
841    //
842    $links[] = array(
843        "class" => "category",
844        "title" => _("gestion du guichet unique"),
845        "right" => array(
846            "demande_type",
847            "demande_type_tab", "demande_nature", "demande_nature_tab",
848        ),
849    );
850    //
851    $links[] = array(
852        "title" => "<hr/>",
853        "right" => array(
854            "demande_type",
855            "demande_type_tab", "demande_nature", "demande_nature_tab",
856        ),
857    );
858    //
859    $links[] = array(
860        "href" => "../scr/tab.php?obj=demande_nature",
861        "class" => "demande_nature",
862        "title" => _("nature de la demande"),
863        "right" => array("demande_nature", "demande_nature_tab", ),
864        "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
865    );
866    
867    //
868    $links[] = array(
869        "href" => "../scr/tab.php?obj=demande_type",
870        "class" => "demande_type",
871        "title" => _("type de la demande"),
872        "right" => array("demande_type", "demande_type_tab",),
873        "open" => array("tab.php|demande_type", "form.php|demande_type", ),
874    );
875    //
876    $links[] = array(
877        "class" => "category",
878        "title" => _("editions"),
879        "right" => array(
880            "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
881            "om_lettretype", "om_lettretype_tab",
882        ),
883    );
884    //
885    $links[] = array(
886        "title" => "<hr/>",
887        "right" => array(
888            "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
889            "om_lettretype", "om_lettretype_tab",
890        ),
891    );
892    //
893    $links[] = array(
894        "href" => "../scr/tab.php?obj=om_etat",
895        "class" => "etat",
896        "title" => _("om_etat"),
897        "right" => array("om_etat", "om_etat_tab", ),
898        "open" => array("tab.php|om_etat", "form.php|om_etat", ),
899    );
900    //
901    $links[] = array(
902        "href" => "../scr/tab.php?obj=om_sousetat",
903        "class" => "sousetat",
904        "title" => _("om_sousetat"),
905        "right" => array("om_sousetat", "om_sousetat_tab", ),
906        "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
907    );
908    //
909    $links[] = array(
910        "href" => "../scr/tab.php?obj=om_lettretype",
911        "class" => "lettretype",
912        "title" => _("om_lettretype"),
913        "right" => array("om_lettretype", "om_lettretype_tab"),
914        "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
915    );
916    //
917  $rubrik['links'] = $links;  $rubrik['links'] = $links;
918  array_push($menu, $rubrik);  //
919  //}}}  $menu[] = $rubrik;
920  //{{{ SIG  // }}}
921    
922    // {{{ Rubrique SIG
923    //
924  $rubrik = array(  $rubrik = array(
925      "title" => _("SIG"),      "title" => _("sig"),
926      "class" => "sig",      "class" => "sig",
927      "right" => "menu_sig",      "right" => "menu_sig",
928  );  );
929    //
930  $links = array();  $links = array();
931    array_push($links,  //
932      array(  $links[] = array(
933          "href" => "../scr/tab.php?obj=parcelle",      "href" => "../scr/tab.php?obj=parcelle",
934          "class" => "parcelle",      "class" => "parcelle",
935          "title" => _("parcelle"),      "title" => _("parcelle"),
936          "right" => "parcelle",      "right" => array("parcelle", "parcelle_tab"),
937          "open"  => "|parcelle",      "open" => array("tab.php|parcelle", "form.php|parcelle", ),
938      ));  );
939    //
940    array_push($links,  $links[] = array(
941      array(      "href" => "../scr/tab.php?obj=proprietaire",
942          "href" => "../scr/tab.php?obj=proprietaire",      "class" => "proprietaire",
943          "class" => "proprietaire",      "title" => _("proprietaire"),
944          "title" => _("proprietaire"),      "right" => array("proprietaire", "proprietaire_tab"),
945          "right" => "proprietaire",      "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
946          "open"  => "|proprietaire"  );
947      ));  //
948    $links[] = array(
949        "class" => "category",
950        "title" => _("servitudes"),
951          "right" => array(
952    // servitudes          "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
953    array_push($links,          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
954      array(          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
955          "title" => "<hr/>",      ),
956          "right" => array("pos_tab", "servitude_tab", "servitude_tab", "servitude_tab")  );
957          ));  //
958      array_push($links,  $links[] = array(
959      array(      "title" => "<hr/>",
960          "href" => "../scr/tab.php?obj=pos",      "right" => array(
961          "class" => "pos",          "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
962          "title" => _("pos"),          "servitude_ligne", "servitude_ligne_tab", "servitude_point",
963          "right" => "pos",          "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
964          "open"  => "|pos",      ),
965      ));  );
966    array_push($links,  //
967      array(  $links[] = array(
968          "href" => "../scr/tab.php?obj=servitude_surfacique",      "href" => "../scr/tab.php?obj=pos",
969          "class" => "servitude",      "class" => "pos",
970          "title" => _("servitude")." "._("surfacique"),      "title" => _("pos"),
971          "right" => "servitude_surfacique",      "right" => array("pos", "pos_tab"),
972          "open"  => "|servitude_surfacique"      "open" => array("tab.php|pos", "form.php|pos", ),
973      ));  );
974    array_push($links,  //
975      array(  $links[] = array(
976          "href" => "../scr/tab.php?obj=servitude_ligne",      "href" => "../scr/tab.php?obj=servitude_surfacique",
977          "class" => "servitude",      "class" => "servitude_surfacique",
978          "title" => _("servitude")." "._("ligne"),      "title" => _("servitude_surfacique"),
979          "right" => "servitude_ligne",      "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
980          "open"  => "|servitude_ligne"      "open" => array(
981      ));          "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
982    array_push($links,      ),
983      array(  );
984          "href" => "../scr/tab.php?obj=servitude_point",  //
985          "class" => "servitude",  $links[] = array(
986          "title" => _("servitude")." "._("point"),      "href" => "../scr/tab.php?obj=servitude_ligne",
987          "right" => "servitude_point",      "class" => "servitude_ligne",
988          "open"  => "|servitude_point"      "title" => _("servitude_ligne"),
989      ));      "right" => array("servitude_ligne", "servitude_ligne_tab"),
990        "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
991    array_push($links,  );
992      array(  //
993          "href" => "../scr/tab.php?obj=parcelle_lot",  $links[] = array(
994          "class" => "parcelle",      "href" => "../scr/tab.php?obj=servitude_point",
995          "title" => _("parcelle")." "._("lot"),      "class" => "servitude_point",
996          "right" => "parcelle_lot",      "title" => _("servitude_point"),
997          "open"  => "|parcelle_lot"      "right" => array("servitude_point", "servitude_point_tab"),
998      ));      "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
999    );
1000    //
1001    $links[] = array(
1002        "href" => "../scr/tab.php?obj=parcelle_lot",
1003        "class" => "parcelle_lot",
1004        "title" => _("parcelle_lot"),
1005        "right" => array("parcelle_lot", "parcelle_lot_tab"),
1006        "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
1007    );
1008    //
1009  $rubrik['links'] = $links;  $rubrik['links'] = $links;
1010  array_push($menu, $rubrik);  //
1011    $menu[] = $rubrik;
1012    // }}}
1013    
 //}}}  
1014  // {{{ Rubrique ADMINISTRATION  // {{{ Rubrique ADMINISTRATION
1015  //  //
1016  $rubrik = array(  $rubrik = array(
1017      "title" => _("Administration"),      "title" => _("administration"),
1018      "class" => "administration",      "class" => "administration",
1019      "right" => "menu_administration",      "right" => "menu_administration",
1020  );  );
1021  //  //
1022  $links = array();  $links = array();
1023  array_push($links,  //
1024      array(  $links[] = array(
1025          "href" => "../scr/tab.php?obj=om_collectivite",      "href" => "../scr/tab.php?obj=om_collectivite",
1026          "class" => "collectivite",      "class" => "collectivite",
1027          "title" => _("om_collectivite"),      "title" => _("om_collectivite"),
1028          "right" => "om_collectivite_tab",      "right" => array("om_collectivite", "om_collectivite_tab", ),
1029          "open"  => "|om_collectivite"      "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
1030      ));  );
1031  array_push($links,  //
1032      array(  $links[] = array(
1033          "href" => "../scr/tab.php?obj=om_parametre",      "href" => "../scr/tab.php?obj=om_parametre",
1034          "class" => "collectivite",      "class" => "parametre",
1035          "title" => _("om_parametre"),      "title" => _("om_parametre"),
1036          "right" => "om_parametre_tab",      "right" => array("om_parametre", "om_parametre_tab", ),
1037          "open"  => "|om_parametre"      "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
1038      ));  );
1039    //
1040    $links[] = array(
1041  array_push($links,      "class" => "category",
1042      array(      "title" => _("gestion des utilisateurs"),
1043          "title" => "<hr/>",      "right" => array(
1044          "right" => array("om_utilisateur_tab", "om_profil_tab", "om_droit_tab")          "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1045      ));          "om_droit", "om_droit_tab", "directory",
1046  array_push($links,      ),
1047      array(  );
1048          "href" => "../scr/tab.php?obj=om_profil",  //
1049          "class" => "profil",  $links[] = array(
1050          "title" => _("om_profil"),      "title" => "<hr/>",
1051          "right" => "om_profil_tab",      "right" => array(
1052          "open"  => "|om_profil"          "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
1053      ));          "om_droit", "om_droit_tab",
1054  array_push($links,      ),
1055      array(  );
1056          "href" => "../scr/tab.php?obj=om_droit",  //
1057          "class" => "droit",  $links[] = array(
1058          "title" => _("om_droit"),      "href" => "../scr/tab.php?obj=om_profil",
1059          "right" => "om_droit_multi",      "class" => "profil",
1060          "open"  => "|om_droit"      "title" => _("om_profil"),
1061      ));      "right" => array("om_profil", "om_profil_tab", ),
1062  array_push($links,      "open" => array("tab.php|om_profil", "form.php|om_profil", ),
1063      array(  );
1064          "href" => "../scr/tab.php?obj=om_utilisateur",  //
1065          "class" => "utilisateur",  $links[] = array(
1066          "title" => _("om_utilisateur"),      "href" => "../scr/tab.php?obj=om_droit",
1067          "right" => "om_utilisateur_tab",      "class" => "droit",
1068          "open"  => "|om_utilisateur"      "title" => _("om_droit"),
1069      ));      "right" => array("om_droit", "om_droit_tab", ),
1070  array_push($links,      "open" => array("tab.php|om_droit", "form.php|om_droit", ),
1071      array(  );
1072          "title" => "<hr />",  //
1073          "right" => array("directory"),  $links[] = array(
1074      ));      "href" => "../scr/tab.php?obj=om_utilisateur",
1075  array_push($links,      "class" => "utilisateur",
1076      array(      "title" => _("om_utilisateur"),
1077          "href" => "../scr/directory.php",      "right" => array("om_utilisateur", "om_utilisateur_tab", ),
1078          "title" => _("Annuaire"),      "open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ),
1079          "right" => "directory",  );
1080          "class" => "utilisateur",  //
1081          "open"  => "directory.php|"  $links[] = array(
1082      ));      "title" => "<hr/>",
1083  array_push($links,      "right" => array("directory", ),
1084      array(      "parameters" => array("isDirectoryOptionEnabled" => true, ),
1085          "title" => "<hr/>",  );
1086          "right" => array("om_etat_tab", "om_sousetat_tab", "om_lettretype_tab"),  //
1087      ));  $links[] = array(
1088  array_push($links,      "href" => "../scr/directory.php",
1089      array(      "class" => "directory",
1090          "href" => "../scr/tab.php?obj=om_sig_point",      "title" => _("annuaire"),
1091          "class" => "om_sig_point",      "right" => array("directory", ),
1092          "title" => _("om SIG"),      "open" => array("directory.php|", ),
1093          "right" => "om_sig_point_tab",      "parameters" => array("isDirectoryOptionEnabled" => true, ),
1094          "open"  => "|om_sig_point"  );
1095      ));  //
1096  array_push($links,  $links[] = array(
1097      array(      "class" => "category",
1098          "href" => "../scr/tab.php?obj=om_widget",      "title" => _("tableaux de bord"),
1099          "class" => "om_widget",      "right" => array(
1100          "title" => _("widget"),          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1101          "right" => "om_widget",      ),
1102          "open"  => "|om_widget"  );
1103      ));  //
1104  array_push($links,  $links[] = array(
1105      array(      "title" => "<hr/>",
1106          "title" => "<hr/>",      "right" => array(
1107          "right" => array("import"),          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1108      ));      ),
1109  array_push($links,  );
1110      array(  //
1111          "href" => "../scr/import.php",  $links[] = array(
1112          "class" => "import",      "href" => "../scr/tab.php?obj=om_widget",
1113          "title" => _("Import"),      "class" => "om_widget",
1114          "right" => "import",      "title" => _("om_widget"),
1115          "open"  => "import.php|"      "right" => array("om_widget", "om_widget_tab", ),
1116      ));      "open" => array("tab.php|om_widget", "form.php|om_widget", ),
1117    );
1118  array_push($links,  //
1119      array(  $links[] = array(
1120          "title" => "<hr/>",      "href" => "../scr/tab.php?obj=om_dashboard",
1121          "right" => array("gen"),      "class" => "om_dashboard",
1122      ));      "title" => _("om_dashboard"),
1123  array_push($links,      "right" => array( ),
1124      array(      "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),
1125          "title" => _("Generateur"),  );
1126          "href" => "../scr/gen.php",  //
1127          "class" => "generator",  $links[] = array(
1128          "right" => "gen",      "class" => "category",
1129          "open"  => "gen.php|"      "title" => _("sig"),
1130      ));      "right" => array(
1131            "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1132        ),
1133    );
1134    //
1135    $links[] = array(
1136        "title" => "<hr/>",
1137        "right" => array(
1138            "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1139        ),
1140    );
1141    //
1142    $links[] = array(
1143        "href" => "../scr/tab.php?obj=om_sig_map",
1144        "class" => "om_sig_map",
1145        "title" => _("om_sig_map"),
1146        "right" => array("om_sig_map", "om_sig_map_tab", ),
1147        "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1148    );
1149    //
1150    $links[] = array(
1151        "href" => "../scr/tab.php?obj=om_sig_wms",
1152        "class" => "om_sig_wms",
1153        "title" => _("om_sig_wms"),
1154        "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1155        "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1156    );
1157    //
1158    $links[] = array(
1159        "class" => "category",
1160        "title" => _("options avancees"),
1161        "right" => array("import", "gen", ),
1162    );
1163    //
1164    $links[] = array(
1165        "title" => "<hr/>",
1166        "right" => array("import", ),
1167    );
1168    //
1169    $links[] = array(
1170        "href" => "../scr/import.php",
1171        "class" => "import",
1172        "title" => _("Import"),
1173        "right" => array("import", ),
1174        "open" => array("import.php|", ),
1175    );
1176    //
1177    $links[] = array(
1178        "title" => "<hr/>",
1179        "right" => array("gen", ),
1180    );
1181    //
1182    $links[] = array(
1183        "title" => _("Generateur"),
1184        "href" => "../scr/gen.php",
1185        "class" => "generator",
1186        "right" => array("gen", ),
1187        "open" => array(
1188            "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1189            "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1190            "genimport.php|",
1191        ),
1192    );
1193    //
1194  $rubrik['links'] = $links;  $rubrik['links'] = $links;
1195  array_push($menu, $rubrik);  //
1196    $menu[] = $rubrik;
1197  // }}}  // }}}
1198    
1199  ?>  ?>

Legend:
Removed from v.315  
changed lines
  Added in v.1146

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26