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

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

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

revision 142 by fraynaud, Tue Sep 27 14:52:41 2011 UTC revision 946 by nhaye, Fri Nov 30 15:58:49 2012 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(  $rubrik = array(
16      "title" => _("Instruction"),      "title" => _("autorisation"),
17      "class" => "application",      "class" => "autorisation",
18      "right" => "menu_application",      "right" => "menu_autorisation",
19  );  );
20    //
21  $links = array();  $links = array();
22  // *** APPLICATION ***  //
 // inserez ici les tables de votra application  
 // ========================================================================  
 /*  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=nom_table",  
         "class" => "nom_table",  
         "title" => _("nom_table"),  
         "right" => "nom_table"  
     ));  
 */  
 // ========================================================================  
   
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PC",  
         "class" => "dossier",  
         "title" => _("PC"),  
         "right" => "dossier"  
     ));  
     
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=DP",  
         "class" => "dossier",  
         "title" => _("DP"),  
         "right" => "dossier"  
     ));  
   
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PD",  
         "class" => "dossier",  
         "title" => _("PD"),  
         "right" => "dossier"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PA",  
         "class" => "dossier",  
         "title" => _("PA"),  
         "right" => "dossier"  
     ));  
   
 array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array("gen"),  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PC_accueil",  
         "class" => "dossier",  
         "title" => _("PC - accueil"),  
         "right" => "dossier"  
     ));  
     
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=DP_accueil",  
         "class" => "dossier",  
         "title" => _("DP - accueil"),  
         "right" => "dossier"  
     ));  
   
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PD_accueil",  
         "class" => "dossier",  
         "title" => _("PD - accueil"),  
         "right" => "dossier"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PA_accueil",  
         "class" => "dossier",  
         "title" => _("PA - accueil"),  
         "right" => "dossier"  
     ));  
     array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array("gen"),  
     ));  
   
     array_push($links,  
     array(  
         "href" => "../app/recherchedossier.php",  
         "class" => "dossier",  
         "title" => _("Recherche dossier"),  
         "right" => "recherchedossier"  
     ));  
   
23  $rubrik['links'] = $links;  $rubrik['links'] = $links;
24  array_push($menu, $rubrik);  //
25    $menu[] = $rubrik;
26    // }}}
27    
28  // {{{ Rubrique EXPORT  // {{{ Rubrique GUICHET UNIQUE
29    //
30  $rubrik = array(  $rubrik = array(
31      "title" => _("Export"),      "title" => _("Guichet Unique"),
32        "class" => "guichet_unique",
33        "right" => "menu_guichet_unique",
34    );
35    //
36    $links = array();
37    //
38    $links[] = array(
39        "class" => "category",
40        "title" => _("demandes"),
41        "right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab",
42                         "demande_dossier_existant","demande_dossier_existant_tab",),
43    );
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(
50        "href" => "../scr/form.php?obj=demande&amp;action=0&amp;advs_id=&amp;tricol=&amp;valide=&amp;retour=tab&amp;new=",
51        "class" => "demande",
52        "title" => _("nouveau dossier"),
53        "right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ),
54        "open" => array("form.php|demande"),
55    );
56    $links[] = array(
57        "href" => "../scr/tab.php?obj=dossier_autorisation",
58        "class" => "demande_dossier_existant",
59        "title" => _("dossier existant"),
60        "right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ),
61        "open" => array("tab.php|dossier_autorisation", "form.php|dossier_autorisation"),
62    );
63    //
64    $links[] = array(
65        "class" => "category",
66        "title" => _("Affichage des dossiers"),
67        "right" => array("edition_m","attestation_affichage",),
68    );
69    $links[] = array(
70        "title" => "<hr/>",
71        "right" => array("edition", "attestation_affichage"),
72    );
73    $links[] = array(
74        "href" => "../app/edition_m.php",
75      "class" => "edition",      "class" => "edition",
76      "right" => "menu_export",      "title" => _("edition"),
77        "right" => "edition_m",
78        "open" => "edition_m.php|",
79    );
80    $links[] = array(
81        "href" => "../app/attestation_affichage.php",
82        "class" => "attestation_affichage",
83        "title" => _("attestation d'affichage"),
84        "right" => "attestation_affichage",
85        "open" => "attestation_affichage.php|",
86    );
87    //
88    /*$links[] = array(
89        "class" => "category",
90        "title" => _("Qualification"),
91        "right" => array("qualification"),
92  );  );
93    $links[] = array(
94        "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();  $links = array();
119  array_push($links,  // Catégorie DOSSIERS D'INSTRUCTION
120      array(  $links[] = array(
121          "href" => "../scr/edition.php",      "class" => "category",
122          "class" => "edition",      "title" => _("dossiers d'instruction"),
123          "title" => _("Edition"),      "right" => array(
124          "right" => "edition"          "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
125      ));          "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
126  array_push($links,          "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
127      array(          "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
128          "href" => "../app/edition_p.php",          "dossier_instruction", "dossier_instruction_tab",
129          "class" => "edition",          "PC_modificatif", "PC_modificatif_tab",
130          "title" => _("Edition date depot"),      ),
131          "right" => "edition"  );
132      ));  $links[] = array(
133        "title" => "<hr/>",
134  array_push($links,      "right" => array(
135      array(          "dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab",
136          "href" => "../app/edition_d.php",          "dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab",
137          "class" => "edition",      ),
138          "title" => _("Edition date decision"),  );
139          "right" => "edition"  //
140      ));  $links[] = array(
141        "href" => "../scr/tab.php?obj=dossier_instruction_mes_encours",
142      array_push($links,      "class" => "dossier_instruction_mes_encours",
143      array(      "title" => _("mes encours"),
144          "title" => "<hr/>",      "right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ),
145          "right" => array("reqmo", "export_pc_tab", "export_dp_tab", "export_sitadel_tab")      "open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ),
146      ));  );
147    //
148  array_push($links,  $links[] = array(
149      array(      "href" => "../scr/tab.php?obj=dossier_instruction_tous_encours",
150          "href" => "../scr/reqmo.php",      "class" => "dossier_instruction_tous_encours",
151          "class" => "reqmo",      "title" => _("tous les encours"),
152          "title" => _("Requetes memorisees"),      "right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ),
153          "right" => "reqmo"      "open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ),
154      ));  );
155    //
156      array_push($links,  $links[] = array(
157      array(      "title" => "<hr/>",
158          "href" => "../app/export_pc.php",      "right" => array(
159          "class" => "reqmo",          "dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab",
160          "title" => _("export PC Lascot"),          "dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab",
161          "right" => "ecport_pc"      ),
162      ));  );
163        //
164      array_push($links,  $links[] = array(
165      array(      "href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures",
166          "href" => "../app/export_dp.php",      "class" => "dossier_instruction_mes_clotures",
167          "class" => "reqmo",      "title" => _("mes clotures"),
168          "title" => _("export DP Lascot"),      "right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ),
169          "right" => "export_dp"      "open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ),
170      ));  );
171        //
172      array_push($links,  $links[] = array(
173      array(      "href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures",
174          "href" => "../app/export_sitadel.php",      "class" => "dossier_instruction_tous_clotures",
175          "class" => "reqmo",      "title" => _("tous les clotures"),
176          "title" => _("export sitadel"),      "right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ),
177          "right" => "export_sitadel"      "open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ),
178      ));  );
179    //
180    $links[] = array(
181        "title" => "<hr/>",
182        "right" => array("PC_modificatif", "PC_modificatif_tab", ),
183    );
184    //
185    $links[] = array(
186        "href" => "../scr/tab.php?obj=PC_modificatif",
187        "class" => "traitement",
188        "title" => _("modificatif transfert"),
189        "right" => array("PC_modificatif", "PC_modificatif_tab", ),
190        "open" => array("|PC_modificatif", "dossier_modificatif.php|", ),
191    );
192    //
193    $links[] = array(
194        "title" => "<hr/>",
195        "right" => array(
196            "dossier_instruction", "dossier_instruction_tab",
197        ),
198    );
199    //
200    $links[] = array(
201        "href" => "../scr/tab.php?obj=dossier_instruction",
202        "class" => "dossier_instruction",
203        "title" => _("recherche"),
204        "right" => array("dossier_instruction", "dossier_instruction_tab", ),
205        "open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ),
206    );
207    // Catégorie CONSULTATIONS
208    $links[] = array(
209        "class" => "category",
210        "title" => _("consultations"),
211        "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
212    );
213    $links[] = array(
214        "title" => "<hr/>",
215        "right" => array("consultation_mes_retours", "consultation_tous_retours", ),
216    );
217    $links[] = array(
218        "href" => "../scr/tab.php?obj=consultation_mes_retours",
219        "class" => "consultation_mes_retours",
220        "title" => _("Mes retours"),
221        "right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ),
222        "open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ),
223    );
224    $links[] = array(
225        "href" => "../scr/tab.php?obj=consultation_tous_retours",
226        "class" => "consultation_tous_retours",
227        "title" => _("Tous les retours"),
228        "right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ),
229        "open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ),
230    );
231    // Catégorie MESSAGES
232    $links[] = array(
233        "class" => "category",
234        "title" => _("Messages"),
235        "right" => array("messages_mes_retours", "messages_tous_retours"),
236        "parameters" => array("option_ERP" => "true", ),
237    );
238    //
239    $links[] = array(
240        "title" => "<hr/>",
241        "right" => array("messages_mes_retours", "messages_tous_retours"),
242        "parameters" => array("option_ERP" => "true", ),
243    );
244    //
245    $links[] = array(
246        "href" => "../scr/tab.php?obj=messages_mes_retours",
247        "class" => "messages_mes_retours",
248        "title" => _("Mes messages"),
249        "right" => array("messages_mes_retours", "messages_mes_retours_tab", ),
250        "open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ),
251        "parameters" => array("option_ERP" => "true", ),
252    );
253    //
254    $links[] = array(
255        "href" => "../scr/tab.php?obj=messages_tous_retours",
256        "class" => "messages_tous_retours",
257        "title" => _("Tous les messages"),
258        "right" => array("messages_tous_retours", "messages_tous_retours_tab", ),
259        "open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ),
260        "parameters" => array("option_ERP" => "true", ),
261    );
262    
263    //
264  $rubrik['links'] = $links;  $rubrik['links'] = $links;
265  array_push($menu, $rubrik);  //
266    $menu[] = $rubrik;
267  // }}}  // }}}
268    
269  // {{{ Rubrique TRAITEMENT  // {{{ Rubrique SUIVI
270    //
271    $rubrik = array(
272        "title" => _("Suivi"),
273        "class" => "suivi",
274        "right" => "menu_suivi",
275    );
276    //
277    $links = array();
278    //
279    $links[] = array(
280        "href" => "../app/avis_code_barre.php",
281        "class" => "avis_code_barre",
282        "title" => _("Retour de consultation"),
283        "right" => array("avis_code_barre", ),
284        "open" => array("avis_code_barre.php|"),
285    );
286    //
287    $rubrik['links'] = $links;
288    //
289    $menu[] = $rubrik;
290    // }}}
291    
292    // {{{ Rubrique DEMANDES D'AVIS
293    //
294  $rubrik = array(  $rubrik = array(
295      "title" => _("Traitement"),      "title" => _("Demandes d'avis"),
296      "class" => "traitement",      "class" => "demande_avis",
297      "right" => "menu_traitement",      "right" => "menu_demande_avis",
298  );  );
299    //
300  $links = array();  $links = array();
301  // *** TRAITEMENT ***  //
302  // inserez le lien d acces au traitement  $links[] = array(
303  // ========================================================================      "href" => "../scr/tab.php?obj=demande_avis_encours",
304  /*      "class" => "demande_avis_encours",
305   array_push($links,      "title" => _("Demandes en cours"),
306      array(      "right" => array("demande_avis_encours", "demande_avis_encours_tab", ),
307          "href" => "../trt/nom_du_traitement.php",      "open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ),
308          "class" => "traitement",  );
309          "title" => _("Traitement"),  
310          "right" => "traitement"  $links[] = array(
311      ));      "href" => "../scr/tab.php?obj=demande_avis_passee",
312  */      "class" => "demande_avis_passee",
313  // ========================================================================      "title" => _("Demandes passees"),
314      array_push($links,      "right" => array("demande_avis_passee", "demande_avis_passee_tab", ),
315      array(      "open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ),
316          "href" => "../scr/form.php?obj=dossier_numeromanuel",  );
         "class" => "traitement",  
         "title" => _("numero manuel"),  
         "right" => "traitement"  
     ));  
   
     array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=PC_modificatif",  
         "class" => "traitement",  
         "title" => _("modificatif transfert"),  
         "right" => "traitement"  
     ));      
   
     array_push($links,  
     array(  
         "href" => "../app/num_dossier.php",  
         "class" => "traitement",  
         "title" => _("remise a 0"),  
         "right" => "traitement"  
     ));  
317    
318    $links[] = array(
319        "href" => "../scr/tab.php?obj=demande_avis",
320        "class" => "demande_avis",
321        "title" => _("Exports"),
322        "right" => array("demande_avis", "demande_avis_tab", ),
323        "open" => array("tab.php|demande_avis", "form.php|demande_avis", ),
324    );
325    
326    //
327  $rubrik['links'] = $links;  $rubrik['links'] = $links;
328  array_push($menu, $rubrik);  //
329    $menu[] = $rubrik;
330  // }}}  // }}}
331    
332    
333    
334  // {{{  Rubrique parametrage de l'application  // {{{ Rubrique EXPORT
335    //
336    $rubrik = array(
337        "title" => _("export"),
338        "class" => "edition",
339        "right" => "menu_export",
340    );
341    //
342    $links = array();
343    //
344    $links[] = array(
345        "href" => "../scr/edition.php",
346        "class" => "edition",
347        "title" => _("edition"),
348        "right" => "edition",
349        "open" => "edition.php|",
350    );
351    //
352    $links[] = array(
353        "href" => "../app/edition_p.php",
354        "class" => "edition",
355        "title" => _("edition date depot"),
356        "right" => "edition_p",
357        "open" => "edition_p.php|",
358    );
359    //
360    $links[] = array(
361        "href" => "../app/edition_d.php",
362        "class" => "edition",
363        "title" => _("edition date decision"),
364        "right" => "edition_d",
365        "open" => "edition_d.php|",
366    );
367    //
368    $links[] = array(
369        "title" => "<hr/>",
370        "right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ),
371    );
372    //
373    $links[] = array(
374        "href" => "../scr/reqmo.php",
375        "class" => "reqmo",
376        "title" => _("requetes memorisees"),
377        "right" => "reqmo",
378        "open" => array("reqmo.php|", "requeteur.php|", ),
379    );
380    //
381    $links[] = array(
382        "href" => "../app/export_pc.php",
383        "class" => "reqmo",
384        "title" => _("export PC Lascot"),
385        "right" => "export_pc",
386        "open" => "export_pc.php|",
387    );
388    //
389    $links[] = array(
390        "href" => "../app/export_dp.php",
391        "class" => "reqmo",
392        "title" => _("export DP Lascot"),
393        "right" => "export_dp",
394        "open" => "export_dp.php|",
395    );
396    //
397    $links[] = array(
398        "href" => "../app/sitadel.php",
399        "class" => "reqmo",
400        "title" => _("export sitadel")." 2",
401        "right" => "export_sitadel",
402        "open" => "sitadel.php|",
403    );
404    //
405    $rubrik['links'] = $links;
406    //
407    $menu[] = $rubrik;
408    // }}}
409    
410    // {{{ Rubrique PARAMETRAGE
411    //
412  $rubrik = array(  $rubrik = array(
413      "title" => _("Parametrage"),      "title" => _("parametrage"),
414      "class" => "parametrage",      "class" => "parametrage",
415      "right" => "menu_parametrage",      "right" => "menu_parametrage",
416  );  );
417    //
418  $links = array();  $links = array();
419  // *** TABLES DE PARAMETRAGE ***  //
420  // inserer ici vos tables de parametres  // GENERAUX
421  // ========================================================================  $links[] = array(
422  /*      "href" => "../scr/form.php?obj=dossier_numeromanuel",
423    array_push($links,      "class" => "traitement",
424      array(      "title" => _("numero manuel"),
425          "href" => "../scr/tab.php?obj=nom_table",      "right" => "dossier_numeromanuel",
426          "class" => "nom_table",      "open" => "|dossier_numeromanuel",
427          "title" => _("nom_table"),  );
428          "right" => "nom_table"  //
429      ));  $links[] = array(
430  */      "href" => "../app/num_dossier.php",
431  // ========================================================================      "class" => "traitement",
432        "title" => _("remise a 0"),
433        "right" => "num_dossier",
434  // param gaux      "open" => "num_dossier.php|",
435    );
436    array_push($links,  //
437      array(  $links[] = array(
438          "href" => "../scr/tab.php?obj=architecte",      "title" => "<hr/>",
439          "class" => "architecte",      "right" => array(
440          "title" => _("architecte"),          "architecte", "architecte_tab",
441          "right" => "architecte"          "affectation_automatique", "affectation_automatique_tab",
442      ));           "travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab",
443            "destination", "destination_tab", "nature", "nature_tab", "rivoli",
444            "rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab",
445            "dossier_autorisation_type","dossier_autorisation_type_tab",
446    array_push($links,          "dossier_autorisation_type_detaille","dossier_autorisation_type_detaille_tab",
447      array(          "dossier_instruction_type","dossier_instruction_type_tab",
448          "href" => "../scr/tab.php?obj=service",          "lien_evenement_dossier_instruction_type","lien_evenement_dossier_instruction_type_tab",
449          "class" => "service",          "autorite_competente","autorite_competente_tab",
450          "title" => _("service"),      ),
451          "right" => "service"  );
452      ));  //
453      $links[] = array(
454    array_push($links,      "href" => "../scr/tab.php?obj=architecte",
455      array(      "class" => "architecte",
456          "href" => "../scr/tab.php?obj=travaux",      "title" => _("architecte"),
457          "class" => "travaux",      "right" => array("architecte", "architecte_tab", ),
458          "title" => _("travaux"),      "open" => array("tab.php|architecte", "form.php|architecte", ),
459          "right" => "travaux"  );
460      ));  //
461    $links[] = array(
462    array_push($links,      "href" => "../scr/tab.php?obj=affectation_automatique",
463      array(      "class" => "affectation_automatique",
464          "href" => "../scr/tab.php?obj=regle",      "title" => _("affectation automatique"),
465          "class" => "regle",      "right" => array("affectation_automatique", "affectation_automatique_tab", ),
466          "title" => _("regle"),      "open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ),
467          "right" => "regle"  );
468      ));  //
469    $links[] = array(
470    array_push($links,      "href" => "../scr/tab.php?obj=travaux",
471      array(      "class" => "travaux",
472          "href" => "../scr/tab.php?obj=categorie_demandeur",      "title" => _("travaux"),
473          "class" => "categorie_demandeur",      "right" => array("travaux", "travaux_tab", ),
474          "title" => _("categorie_demandeur"),      "open" => array("tab.php|travaux", "form.php|travaux", ),
475          "right" => "categorie_demandeur"  );
476      ));  //
477      $links[] = array(
478    array_push($links,      "href" => "../scr/tab.php?obj=categorie_demandeur",
479      array(      "class" => "categorie_demandeur",
480          "href" => "../scr/tab.php?obj=destination",      "title" => _("categorie_demandeur"),
481          "class" => "destination",      "right" => array("categorie_demandeur", "categorie_demandeur_tab", ),
482          "title" => _("destination"),      "open" => array(
483          "right" => "destination"          "tab.php|categorie_demandeur", "form.php|categorie_demandeur",
484      ));      ),
485    );
486    array_push($links,  //
487      array(  $links[] = array(
488          "href" => "../scr/tab.php?obj=nature",      "href" => "../scr/tab.php?obj=destination",
489          "class" => "nature",      "class" => "destination",
490          "title" => _("nature"),      "title" => _("destination"),
491          "right" => "nature"      "right" => array("destination", "destination_tab", ),
492      ));      "open" => array("tab.php|destination", "form.php|destination", ),
493    );
494  // workflows  //
495      array_push($links,  $links[] = array(
496      array(      "href" => "../scr/tab.php?obj=nature",
497          "title" => "<hr/>",      "class" => "nature",
498          "right" => array("action_tab", "transition_tab", "etat_tab",      "title" => _("nature"),
499                           "evenement_tab", "bible", "avis")      "right" => array("nature", "nature_tab", ),
500      ));      "open" => array("tab.php|nature", "form.php|nature", ),
501    );
502    array_push($links,  //
503      array(  $links[] = array(
504          "href" => "../scr/tab.php?obj=action",      "href" => "../scr/tab.php?obj=rivoli",
505          "class" => "action",      "class" => "rivoli",
506          "title" => _("action"),      "title" => _("rivoli"),
507          "right" => "action"      "right" => array("rivoli", "rivoli_tab", ),
508      ));      "open" => array("tab.php|rivoli", "form.php|rivoli", ),
509    );
510    array_push($links,  //
511      array(  $links[] = array(
512          "href" => "../scr/tab.php?obj=transition",      "href" => "../scr/tab.php?obj=civilite",
513          "class" => "transition",      "class" => "civilite",
514          "title" => _("transition"),      "title" => _("civilite"),
515          "right" => "transition"      "right" => array("civilite", "civilite_tab", ),
516      ));      "open" => array("tab.php|civilite", "form.php|civilite", ),
517      );
518      array_push($links,  //
519      array(  $links[] = array(
520          "href" => "../scr/tab.php?obj=etat",      "href" => "../scr/tab.php?obj=parametre",
521          "class" => "etat",      "class" => "parametre",
522          "title" => _("etat"),      "title" => _("parametre")." "._("statistique"),
523          "right" => "etat"      "right" => array("parametre", "parametre_tab", ),
524      ));      "open" => array("tab.php|parametre", "form.php|parametre", ),
525    );
526      array_push($links,  //
527        array(  $links[] = array(
528            "href" => "../scr/tab.php?obj=evenement",      "href" => "../scr/tab.php?obj=dossier_autorisation_type",
529            "class" => "evenement",      "class" => "dossier_autorisation_type",
530            "title" => _("evenement"),      "title" => _("dossier")." ".("autorisation")." "._("type"),
531            "right" => "evenement"      "right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ),
532        ));      "open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ),
533        );
534        array_push($links,  //
535      array(  $links[] = array(
536          "href" => "../scr/tab.php?obj=bible",      "href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille",
537          "class" => "bible",      "class" => "dossier_autorisation_type_detaille",
538          "title" => _("bible"),      "title" => _("dossier")." ".("autorisation")." "._("type")." "._("detaille"),
539          "right" => "bible"      "right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ),
540      ));      "open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ),
541          );
542    array_push($links,  //
543      array(  $links[] = array(
544          "href" => "../scr/tab.php?obj=avis",      "href" => "../scr/tab.php?obj=dossier_instruction_type",
545          "class" => "avis",      "class" => "dossier_instruction_type",
546          "title" => _("avis"),      "title" => _("dossier")." "._("instruction")." "._("type"),
547          "right" => "avis"      "right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ),
548      ));      "open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ),
549    );
550  // cadastre interne  //
551      array_push($links,  $links[] = array(
552      array(      "href" => "../scr/tab.php?obj=lien_evenement_dossier_autorisation_type",
553          "title" => "<hr/>",      "class" => "lien_evenement_dossier_autorisation_type",
554          "right" => array("parcelle_tab", "proprietaire_tab", "civilite_tab", "pos_tab", "rivoli_tab")      "title" => _("lien")." "._("evenement")." "._("dossier")." "._("autorisation")." "._("type"),
555      ));      "right" => array("lien_evenement_dossier_autorisation_type", "lien_evenement_dossier_autorisation_type_tab", ),
556    array_push($links,      "open" => array("tab.php|lien_evenement_dossier_autorisation_type", "form.php|lien_evenement_dossier_autorisation_type", ),
557      array(  );
         "href" => "../scr/tab.php?obj=parcelle",  
         "class" => "parcelle",  
         "title" => _("parcelle"),  
         "right" => "parcelle"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=proprietaire",  
         "class" => "proprietaire",  
         "title" => _("proprietaire"),  
         "right" => "proprietaire"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=civilite",  
         "class" => "civilite",  
         "title" => _("civilite"),  
         "right" => "civilite"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=pos",  
         "class" => "pos",  
         "title" => _("pos"),  
         "right" => "pos"  
     ));  
     
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=rivoli",  
         "class" => "rivoli",  
         "title" => _("rivoli"),  
         "right" => "rivoli"  
     ));  
     
   // servitudes  
   array_push($links,  
     array(  
         "title" => "<hr/>",  
         "right" => array("servitude_tab", "servitude_tab", "servitude_tab")  
     ));  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=servitude_surfacique",  
         "class" => "servitude",  
         "title" => _("servitude")." "._("surfacique"),  
         "right" => "servitude"  
     ));  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=servitude_ligne",  
         "class" => "servitude",  
         "title" => _("servitude")." "._("ligne"),  
         "right" => "servitude"  
     ));  
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=servitude_point",  
         "class" => "servitude",  
         "title" => _("servitude")." "._("point"),  
         "right" => "servitude"  
     ));  
   
   array_push($links,  
     array(  
         "href" => "../scr/tab.php?obj=parcelle_lot",  
         "class" => "parcelle",  
         "title" => _("parcelle")." "._("lot"),  
         "right" => "parcelle_lot"  
     ));  
   
 $rubrik['links'] = $links;  
 array_push($menu, $rubrik);  
558    
559    
560    //
561    $links[] = array(
562        "href" => "../scr/tab.php?obj=autorite_competente",
563        "class" => "autorite_competente",
564        "title" => _("autorite")." "._("competente"),
565        "right" => array("autorite_competente", "autorite_competente_tab", ),
566        "open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ),
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 consultations"),
695        "right" => array(
696            "avis_consultation", "avis_consultation_tab", "service", "service_tab",
697            "service_categorie", "service_categorie_tab",
698            "lien_service_service_categorie", "lien_service_service_categorie_tab",
699        ),
700    );
701    //
702    $links[] = array(
703        "title" => "<hr/>",
704        "right" => array(
705            "avis_consultation", "avis_consultation_tab", "service", "service_tab",
706            "service_categorie", "service_categorie_tab",
707            "lien_service_service_categorie", "lien_service_service_categorie_tab",
708        ),
709    );
710    //
711    $links[] = array(
712        "href" => "../scr/tab.php?obj=avis_consultation",
713        "class" => "avis_consultation",
714        "title" => _("avis consultation"),
715        "right" => array("avis_consultation", "avis_consultation_tab", ),
716        "open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ),
717    );
718    //
719    $links[] = array(
720        "href" => "../scr/tab.php?obj=service",
721        "class" => "service",
722        "title" => _("service"),
723        "right" => array("service", "service_tab", ),
724        "open" => array("tab.php|service", "form.php|service", ),
725    );
726    $links[] = array(
727        "href" => "../scr/tab.php?obj=service_categorie",
728        "class" => "service_categorie",
729        "title" => _("thematique des services"),
730        "right" => array("service_categorie", "service_categorie_tab", ),
731        "open" => array("tab.php|service_categorie", "form.php|service_categorie", ),
732    );
733    $links[] = array(
734        "href" => "../scr/tab.php?obj=lien_service_service_categorie",
735        "class" => "lien_service_service_categorie",
736        "title" => _("Lien service / thematique"),
737        "right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ),
738        "open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ),
739    );
740    //
741    $links[] = array(
742        "class" => "category",
743        "title" => _("gestion du guichet unique"),
744        "right" => array(
745            "demande_type",
746            "demande_type_tab", "demande_nature", "demande_nature_tab",
747        ),
748    );
749    //
750    $links[] = array(
751        "title" => "<hr/>",
752        "right" => array(
753            "demande_type",
754            "demande_type_tab", "demande_nature", "demande_nature_tab",
755        ),
756    );
757    //
758    $links[] = array(
759        "href" => "../scr/tab.php?obj=demande_nature",
760        "class" => "demande_nature",
761        "title" => _("nature de la demande"),
762        "right" => array("demande_nature", "demande_nature_tab", ),
763        "open" => array("tab.php|demande_nature", "form.php|demande_nature", ),
764    );
765    
766    //
767    $links[] = array(
768        "href" => "../scr/tab.php?obj=demande_type",
769        "class" => "demande_type",
770        "title" => _("type de la demande"),
771        "right" => array("demande_type", "demande_type_tab",),
772        "open" => array("tab.php|demande_type", "form.php|demande_type", ),
773    );
774    //
775    $links[] = array(
776        "class" => "category",
777        "title" => _("editions"),
778        "right" => array(
779            "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
780            "om_lettretype", "om_lettretype_tab",
781        ),
782    );
783    //
784    $links[] = array(
785        "title" => "<hr/>",
786        "right" => array(
787            "om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab",
788            "om_lettretype", "om_lettretype_tab",
789        ),
790    );
791    //
792    $links[] = array(
793        "href" => "../scr/tab.php?obj=om_etat",
794        "class" => "etat",
795        "title" => _("om_etat"),
796        "right" => array("om_etat", "om_etat_tab", ),
797        "open" => array("tab.php|om_etat", "form.php|om_etat", ),
798    );
799    //
800    $links[] = array(
801        "href" => "../scr/tab.php?obj=om_sousetat",
802        "class" => "sousetat",
803        "title" => _("om_sousetat"),
804        "right" => array("om_sousetat", "om_sousetat_tab", ),
805        "open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ),
806    );
807    //
808    $links[] = array(
809        "href" => "../scr/tab.php?obj=om_lettretype",
810        "class" => "lettretype",
811        "title" => _("om_lettretype"),
812        "right" => array("om_lettretype", "om_lettretype_tab"),
813        "open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ),
814    );
815    //
816    $rubrik['links'] = $links;
817    //
818    $menu[] = $rubrik;
819    // }}}
820    
821    // {{{ Rubrique SIG
822    //
823    $rubrik = array(
824        "title" => _("sig"),
825        "class" => "sig",
826        "right" => "menu_sig",
827    );
828    //
829    $links = array();
830    //
831    $links[] = array(
832        "href" => "../scr/tab.php?obj=parcelle",
833        "class" => "parcelle",
834        "title" => _("parcelle"),
835        "right" => array("parcelle", "parcelle_tab"),
836        "open" => array("tab.php|parcelle", "form.php|parcelle", ),
837    );
838    //
839    $links[] = array(
840        "href" => "../scr/tab.php?obj=proprietaire",
841        "class" => "proprietaire",
842        "title" => _("proprietaire"),
843        "right" => array("proprietaire", "proprietaire_tab"),
844        "open" => array("tab.php|proprietaire", "form.php|proprietaire", ),
845    );
846    //
847    $links[] = array(
848        "class" => "category",
849        "title" => _("servitudes"),
850        "right" => array(
851            "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
852            "servitude_ligne", "servitude_ligne_tab", "servitude_point",
853            "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
854        ),
855    );
856    //
857    $links[] = array(
858        "title" => "<hr/>",
859        "right" => array(
860            "pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab",
861            "servitude_ligne", "servitude_ligne_tab", "servitude_point",
862            "servitude_point_tab", "parcelle_lot", "parcelle_lot_tab",
863        ),
864    );
865    //
866    $links[] = array(
867        "href" => "../scr/tab.php?obj=pos",
868        "class" => "pos",
869        "title" => _("pos"),
870        "right" => array("pos", "pos_tab"),
871        "open" => array("tab.php|pos", "form.php|pos", ),
872    );
873    //
874    $links[] = array(
875        "href" => "../scr/tab.php?obj=servitude_surfacique",
876        "class" => "servitude_surfacique",
877        "title" => _("servitude_surfacique"),
878        "right" => array("servitude_surfacique", "servitude_surfacique_tab"),
879        "open" => array(
880            "tab.php|servitude_surfacique", "form.php|servitude_surfacique",
881        ),
882    );
883    //
884    $links[] = array(
885        "href" => "../scr/tab.php?obj=servitude_ligne",
886        "class" => "servitude_ligne",
887        "title" => _("servitude_ligne"),
888        "right" => array("servitude_ligne", "servitude_ligne_tab"),
889        "open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ),
890    );
891    //
892    $links[] = array(
893        "href" => "../scr/tab.php?obj=servitude_point",
894        "class" => "servitude_point",
895        "title" => _("servitude_point"),
896        "right" => array("servitude_point", "servitude_point_tab"),
897        "open" => array("tab.php|servitude_point", "form.php|servitude_point", ),
898    );
899    //
900    $links[] = array(
901        "href" => "../scr/tab.php?obj=parcelle_lot",
902        "class" => "parcelle_lot",
903        "title" => _("parcelle_lot"),
904        "right" => array("parcelle_lot", "parcelle_lot_tab"),
905        "open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ),
906    );
907    //
908    $rubrik['links'] = $links;
909    //
910    $menu[] = $rubrik;
911    // }}}
912    
913  // {{{ Rubrique ADMINISTRATION  // {{{ Rubrique ADMINISTRATION
914  //  //
915  $rubrik = array(  $rubrik = array(
916      "title" => _("Administration"),      "title" => _("administration"),
917      "class" => "administration",      "class" => "administration",
918      "right" => "menu_administration",      "right" => "menu_administration",
919  );  );
920  //  //
921  $links = array();  $links = array();
922  array_push($links,  //
923      array(  $links[] = array(
924          "href" => "../scr/tab.php?obj=om_collectivite",      "href" => "../scr/tab.php?obj=om_collectivite",
925          "class" => "collectivite",      "class" => "collectivite",
926          "title" => _("om_collectivite"),      "title" => _("om_collectivite"),
927          "right" => "om_collectivite_tab"      "right" => array("om_collectivite", "om_collectivite_tab", ),
928      ));      "open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ),
929  array_push($links,  );
930      array(  //
931          "href" => "../scr/tab.php?obj=om_parametre",  $links[] = array(
932          "class" => "collectivite",      "href" => "../scr/tab.php?obj=om_parametre",
933          "title" => _("om_parametre"),      "class" => "parametre",
934          "right" => "om_parametre_tab"      "title" => _("om_parametre"),
935      ));      "right" => array("om_parametre", "om_parametre_tab", ),
936        "open" => array("tab.php|om_parametre", "form.php|om_parametre", ),
937    );
938  array_push($links,  //
939      array(  $links[] = array(
940          "title" => "<hr/>",      "class" => "category",
941          "right" => array("om_utilisateur_tab", "om_profil_tab", "om_droit_tab")      "title" => _("gestion des utilisateurs"),
942      ));      "right" => array(
943  array_push($links,          "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
944      array(          "om_droit", "om_droit_tab", "directory",
945          "href" => "../scr/tab.php?obj=om_profil",      ),
946          "class" => "profil",  );
947          "title" => _("om_profil"),  //
948          "right" => "om_profil_tab"  $links[] = array(
949      ));      "title" => "<hr/>",
950  array_push($links,      "right" => array(
951      array(          "om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab",
952          "href" => "../scr/tab.php?obj=om_droit",          "om_droit", "om_droit_tab",
953          "class" => "droit",      ),
954          "title" => _("om_droit"),  );
955          "right" => "om_droit_multi"  //
956      ));  $links[] = array(
957  array_push($links,      "href" => "../scr/tab.php?obj=om_profil",
958      array(      "class" => "profil",
959          "href" => "../scr/tab.php?obj=om_utilisateur",      "title" => _("om_profil"),
960          "class" => "utilisateur",      "right" => array("om_profil", "om_profil_tab", ),
961          "title" => _("om_utilisateur"),      "open" => array("tab.php|om_profil", "form.php|om_profil", ),
962          "right" => "om_utilisateur_tab"  );
963      ));  //
964  array_push($links,  $links[] = array(
965      array(      "href" => "../scr/tab.php?obj=om_droit",
966          "title" => "<hr/>",      "class" => "droit",
967          "right" => array("om_etat_tab", "om_sousetat_tab", "om_lettretype_tab"),      "title" => _("om_droit"),
968      ));      "right" => array("om_droit", "om_droit_tab", ),
969  array_push($links,      "open" => array("tab.php|om_droit", "form.php|om_droit", ),
970      array(  );
971          "href" => "../scr/tab.php?obj=om_etat",  //
972          "class" => "etat",  $links[] = array(
973          "title" => _("om_etat"),      "href" => "../scr/tab.php?obj=om_utilisateur",
974          "right" => "om_etat_tab"      "class" => "utilisateur",
975      ));      "title" => _("om_utilisateur"),
976  array_push($links,      "right" => array("om_utilisateur", "om_utilisateur_tab", ),
977      array(      "open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ),
978          "href" => "../scr/tab.php?obj=om_sousetat",  );
979          "class" => "sousetat",  //
980          "title" => _("om_sousetat"),  $links[] = array(
981          "right" => "om_sousetat_tab"      "title" => "<hr/>",
982      ));      "right" => array("directory", ),
983  array_push($links,      "parameters" => array("isDirectoryOptionEnabled" => true, ),
984      array(  );
985          "href" => "../scr/tab.php?obj=om_lettretype",  //
986          "class" => "lettretype",  $links[] = array(
987          "title" => _("om_lettretype"),      "href" => "../scr/directory.php",
988          "right" => "om_lettretype_tab"      "class" => "directory",
989      ));      "title" => _("annuaire"),
990  array_push($links,      "right" => array("directory", ),
991      array(      "open" => array("directory.php|", ),
992          "href" => "../scr/tab.php?obj=om_sig_point",      "parameters" => array("isDirectoryOptionEnabled" => true, ),
993          "class" => "om_sig_point",  );
994          "title" => _("om SIG"),  //
995          "right" => "om_sig_point_tab"  $links[] = array(
996      ));      "class" => "category",
997  array_push($links,      "title" => _("tableaux de bord"),
998      array(      "right" => array(
999          "href" => "../scr/tab.php?obj=om_widget",          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1000          "class" => "om_widget",      ),
1001          "title" => _("widget"),  );
1002          "right" => "om_widget"  //
1003      ));  $links[] = array(
1004  array_push($links,      "title" => "<hr/>",
1005      array(      "right" => array(
1006          "title" => "<hr/>",          "om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab",
1007          "right" => array("import"),      ),
1008      ));  );
1009  array_push($links,  //
1010      array(  $links[] = array(
1011          "href" => "../scr/import.php",      "href" => "../scr/tab.php?obj=om_widget",
1012          "class" => "import",      "class" => "om_widget",
1013          "title" => _("Import"),      "title" => _("om_widget"),
1014          "right" => "import"      "right" => array("om_widget", "om_widget_tab", ),
1015      ));      "open" => array("tab.php|om_widget", "form.php|om_widget", ),
1016    );
1017  array_push($links,  //
1018      array(  $links[] = array(
1019          "title" => "<hr/>",      "href" => "../scr/tab.php?obj=om_dashboard",
1020          "right" => array("gen"),      "class" => "om_dashboard",
1021      ));      "title" => _("om_dashboard"),
1022  array_push($links,      "right" => array( ),
1023      array(      "open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ),
1024          "title" => _("Generateur"),  );
1025          "href" => "../scr/gen.php",  //
1026          "class" => "generator",  $links[] = array(
1027          "right" => "gen",      "class" => "category",
1028      ));      "title" => _("sig"),
1029        "right" => array(
1030            "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1031        ),
1032    );
1033    //
1034    $links[] = array(
1035        "title" => "<hr/>",
1036        "right" => array(
1037            "om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab",
1038        ),
1039    );
1040    //
1041    $links[] = array(
1042        "href" => "../scr/tab.php?obj=om_sig_map",
1043        "class" => "om_sig_map",
1044        "title" => _("om_sig_map"),
1045        "right" => array("om_sig_map", "om_sig_map_tab", ),
1046        "open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ),
1047    );
1048    //
1049    $links[] = array(
1050        "href" => "../scr/tab.php?obj=om_sig_wms",
1051        "class" => "om_sig_wms",
1052        "title" => _("om_sig_wms"),
1053        "right" => array("om_sig_wms", "om_sig_wms_tab", ),
1054        "open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ),
1055    );
1056    //
1057    $links[] = array(
1058        "class" => "category",
1059        "title" => _("options avancees"),
1060        "right" => array("import", "gen", ),
1061    );
1062    //
1063    $links[] = array(
1064        "title" => "<hr/>",
1065        "right" => array("import", ),
1066    );
1067    //
1068    $links[] = array(
1069        "href" => "../scr/import.php",
1070        "class" => "import",
1071        "title" => _("Import"),
1072        "right" => array("import", ),
1073        "open" => array("import.php|", ),
1074    );
1075    //
1076    $links[] = array(
1077        "title" => "<hr/>",
1078        "right" => array("gen", ),
1079    );
1080    //
1081    $links[] = array(
1082        "title" => _("Generateur"),
1083        "href" => "../scr/gen.php",
1084        "class" => "generator",
1085        "right" => array("gen", ),
1086        "open" => array(
1087            "gen.php|","genauto.php|", "gensup.php|", "genfull.php|",
1088            "genetat.php|", "gensousetat.php|", "genlettretype.php|",
1089            "genimport.php|",
1090        ),
1091    );
1092    //
1093  $rubrik['links'] = $links;  $rubrik['links'] = $links;
1094  array_push($menu, $rubrik);  //
1095    $menu[] = $rubrik;
1096  // }}}  // }}}
1097    
1098  ?>  ?>

Legend:
Removed from v.142  
changed lines
  Added in v.946

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26