1 |
fraynaud |
3 |
<?php |
2 |
|
|
/** |
3 |
|
|
* Ce fichier permet de configurer quelles actions vont etre disponibles |
4 |
|
|
* dans le menu. |
5 |
|
|
* |
6 |
|
|
* @package openmairie_exemple |
7 |
|
|
* @version SVN : $Id: menu.inc.php 324 2010-12-06 16:06:21Z fraynaud $ |
8 |
|
|
*/ |
9 |
|
|
|
10 |
fmichon |
380 |
// |
11 |
fraynaud |
3 |
$menu = array(); |
12 |
fmichon |
647 |
|
13 |
|
|
// {{{ Rubrique AUTORISATION |
14 |
|
|
// |
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 |
vpihour |
624 |
// }}} |
27 |
fmichon |
647 |
|
28 |
|
|
// {{{ Rubrique GUICHET UNIQUE |
29 |
fmichon |
380 |
// |
30 |
fraynaud |
3 |
$rubrik = array( |
31 |
vpihour |
624 |
"title" => _("Guichet Unique"), |
32 |
fmichon |
647 |
"class" => "guichet_unique", |
33 |
vpihour |
624 |
"right" => "menu_guichet_unique", |
34 |
|
|
); |
35 |
|
|
// |
36 |
|
|
$links = array(); |
37 |
|
|
// |
38 |
|
|
$links[] = array( |
39 |
|
|
"class" => "category", |
40 |
vpihour |
635 |
"title" => _("demandes"), |
41 |
|
|
"right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab", |
42 |
|
|
"demande_dossier_existant","demande_dossier_existant_tab",), |
43 |
vpihour |
624 |
); |
44 |
|
|
$links[] = array( |
45 |
|
|
"title" => "<hr/>", |
46 |
vpihour |
635 |
"right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab", |
47 |
|
|
"demande_dossier_existant","demande_dossier_existant_tab",), |
48 |
vpihour |
624 |
); |
49 |
|
|
$links[] = array( |
50 |
vpihour |
635 |
"href" => "../scr/form.php?obj=demande&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
51 |
vpihour |
624 |
"class" => "demande", |
52 |
vpihour |
635 |
"title" => _("nouveau dossier"), |
53 |
vpihour |
624 |
"right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ), |
54 |
vpihour |
635 |
"open" => array("tab.php|demande", "form.php|demande", ), |
55 |
vpihour |
624 |
); |
56 |
|
|
$links[] = array( |
57 |
|
|
"href" => "../scr/tab.php?obj=demande", |
58 |
|
|
"class" => "demande", |
59 |
vpihour |
635 |
"title" => _("dossier existant"), |
60 |
vpihour |
624 |
"right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ), |
61 |
vpihour |
635 |
"open" => array("tab.php|demande", "form.php|demande", ), |
62 |
vpihour |
624 |
); |
63 |
|
|
// |
64 |
|
|
$links[] = array( |
65 |
|
|
"class" => "category", |
66 |
|
|
"title" => _("Affichage des dossiers"), |
67 |
vpihour |
635 |
"right" => array("edition", "edition_tab","attestation_affichage","attestation_affichage_tab",), |
68 |
vpihour |
624 |
); |
69 |
|
|
$links[] = array( |
70 |
|
|
"title" => "<hr/>", |
71 |
|
|
"right" => array("edition", "attestation_affichage"), |
72 |
|
|
); |
73 |
|
|
$links[] = array( |
74 |
|
|
"href" => "../app/edition_affichage.php", |
75 |
|
|
"class" => "edition", |
76 |
vpihour |
635 |
"title" => _("edition"), |
77 |
vpihour |
624 |
"right" => array("edition", "edition_tab", ), |
78 |
|
|
"open" => array("tab.php|edition", "form.php|edition", ), |
79 |
|
|
); |
80 |
|
|
$links[] = array( |
81 |
|
|
"href" => "../app/attestation_affichage.php", |
82 |
|
|
"class" => "attestation_affichage", |
83 |
vpihour |
635 |
"title" => _("attestation d'affichage"), |
84 |
vpihour |
624 |
"right" => array("attestation_affichage", "attestation_affichage_tab", ), |
85 |
|
|
"open" => array("tab.php|attestation_affichage", "form.php|attestation_affichage", ), |
86 |
|
|
); |
87 |
|
|
// |
88 |
|
|
/*$links[] = array( |
89 |
|
|
"class" => "category", |
90 |
|
|
"title" => _("Qualification"), |
91 |
|
|
"right" => array("qualification"), |
92 |
|
|
); |
93 |
|
|
$links[] = array( |
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 |
fmichon |
647 |
|
110 |
|
|
// {{{ Rubrique INSTRUCTION |
111 |
vpihour |
624 |
// |
112 |
|
|
$rubrik = array( |
113 |
fmichon |
380 |
"title" => _("instruction"), |
114 |
fmichon |
566 |
"class" => "instruction", |
115 |
|
|
"right" => "menu_instruction", |
116 |
fraynaud |
3 |
); |
117 |
fmichon |
380 |
// |
118 |
fraynaud |
3 |
$links = array(); |
119 |
fmichon |
380 |
// |
120 |
|
|
$links[] = array( |
121 |
fmichon |
647 |
"class" => "category", |
122 |
|
|
"title" => _("dossiers d'instruction"), |
123 |
|
|
"right" => array( |
124 |
|
|
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
125 |
|
|
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
126 |
|
|
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
127 |
|
|
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
128 |
|
|
"dossier_instruction", "dossier_instruction_tab", |
129 |
|
|
"PC_modificatif", "PC_modificatif_tab", |
130 |
|
|
), |
131 |
fmichon |
380 |
); |
132 |
|
|
// |
133 |
|
|
$links[] = array( |
134 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_encours", |
135 |
|
|
"class" => "dossier_instruction_mes_encours", |
136 |
|
|
"title" => _("mes encours"), |
137 |
|
|
"right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ), |
138 |
|
|
"open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ), |
139 |
fmichon |
380 |
); |
140 |
|
|
// |
141 |
|
|
$links[] = array( |
142 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_tous_encours", |
143 |
|
|
"class" => "dossier_instruction_tous_encours", |
144 |
|
|
"title" => _("tous les encours"), |
145 |
|
|
"right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ), |
146 |
|
|
"open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ), |
147 |
fmichon |
380 |
); |
148 |
|
|
// |
149 |
|
|
$links[] = array( |
150 |
|
|
"title" => "<hr/>", |
151 |
|
|
"right" => array( |
152 |
fmichon |
647 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
153 |
|
|
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
154 |
fmichon |
380 |
), |
155 |
|
|
); |
156 |
|
|
// |
157 |
|
|
$links[] = array( |
158 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures", |
159 |
|
|
"class" => "dossier_instruction_mes_clotures", |
160 |
|
|
"title" => _("mes clotures"), |
161 |
|
|
"right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ), |
162 |
|
|
"open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ), |
163 |
fmichon |
380 |
); |
164 |
|
|
// |
165 |
|
|
$links[] = array( |
166 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures", |
167 |
|
|
"class" => "dossier_instruction_tous_clotures", |
168 |
|
|
"title" => _("tous les clotures"), |
169 |
|
|
"right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ), |
170 |
|
|
"open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ), |
171 |
fmichon |
380 |
); |
172 |
|
|
// |
173 |
|
|
$links[] = array( |
174 |
|
|
"title" => "<hr/>", |
175 |
|
|
"right" => array("PC_modificatif", "PC_modificatif_tab", ), |
176 |
|
|
); |
177 |
|
|
// |
178 |
|
|
$links[] = array( |
179 |
|
|
"href" => "../scr/tab.php?obj=PC_modificatif", |
180 |
|
|
"class" => "traitement", |
181 |
|
|
"title" => _("modificatif transfert"), |
182 |
|
|
"right" => array("PC_modificatif", "PC_modificatif_tab", ), |
183 |
|
|
"open" => array("|PC_modificatif", "dossier_modificatif.php|", ), |
184 |
|
|
); |
185 |
|
|
// |
186 |
|
|
$links[] = array( |
187 |
|
|
"title" => "<hr/>", |
188 |
fmichon |
647 |
"right" => array( |
189 |
|
|
"dossier_instruction", "dossier_instruction_tab", |
190 |
|
|
), |
191 |
fmichon |
380 |
); |
192 |
|
|
// |
193 |
|
|
$links[] = array( |
194 |
fmichon |
647 |
"href" => "../scr/tab.php?obj=dossier_instruction", |
195 |
|
|
"class" => "dossier_instruction", |
196 |
|
|
"title" => _("recherche"), |
197 |
|
|
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
198 |
|
|
"open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ), |
199 |
fmichon |
380 |
); |
200 |
fmichon |
647 |
// |
201 |
nhaye |
496 |
$links[] = array( |
202 |
nhaye |
519 |
"class" => "category", |
203 |
fmichon |
647 |
"title" => _("consultations"), |
204 |
nhaye |
533 |
"right" => array("consultation_mes_retours", "consultation_tous_retours","avis_code_barre"), |
205 |
nhaye |
496 |
); |
206 |
|
|
$links[] = array( |
207 |
nhaye |
519 |
"title" => "<hr/>", |
208 |
nhaye |
533 |
"right" => array("consultation_mes_retours", "consultation_tous_retours","avis_code_barre"), |
209 |
nhaye |
519 |
); |
210 |
|
|
$links[] = array( |
211 |
nhaye |
509 |
"href" => "../scr/tab.php?obj=consultation_mes_retours", |
212 |
|
|
"class" => "consultation_mes_retours", |
213 |
|
|
"title" => _("Mes retours"), |
214 |
|
|
"right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ), |
215 |
|
|
"open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ), |
216 |
nhaye |
496 |
); |
217 |
nhaye |
498 |
$links[] = array( |
218 |
nhaye |
509 |
"href" => "../scr/tab.php?obj=consultation_tous_retours", |
219 |
|
|
"class" => "consultation_tous_retours", |
220 |
|
|
"title" => _("Tous les retours"), |
221 |
|
|
"right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ), |
222 |
|
|
"open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ), |
223 |
nhaye |
498 |
); |
224 |
mlimic |
599 |
|
225 |
|
|
|
226 |
|
|
$links[] = array( |
227 |
|
|
"class" => "category", |
228 |
|
|
"title" => _("Messages"), |
229 |
|
|
"right" => array("messages_mes_retours", "messages_tous_retours"), |
230 |
|
|
); |
231 |
|
|
$links[] = array( |
232 |
|
|
"title" => "<hr/>", |
233 |
|
|
"right" => array("messages_mes_retours", "messages_tous_retours"), |
234 |
|
|
); |
235 |
|
|
$links[] = array( |
236 |
|
|
"href" => "../scr/tab.php?obj=messages_mes_retours", |
237 |
|
|
"class" => "messages_mes_retours", |
238 |
|
|
"title" => _("Mes messages"), |
239 |
|
|
"right" => array("messages_mes_retours", "messages_mes_retours_tab", ), |
240 |
|
|
"open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ), |
241 |
|
|
); |
242 |
|
|
$links[] = array( |
243 |
|
|
"href" => "../scr/tab.php?obj=messages_tous_retours", |
244 |
|
|
"class" => "messages_tous_retours", |
245 |
|
|
"title" => _("Tous les messages"), |
246 |
|
|
"right" => array("messages_tous_retours", "messages_tous_retours_tab", ), |
247 |
|
|
"open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ), |
248 |
|
|
); |
249 |
|
|
|
250 |
nhaye |
583 |
// |
251 |
|
|
$rubrik['links'] = $links; |
252 |
|
|
// |
253 |
|
|
$menu[] = $rubrik; |
254 |
|
|
// }}} |
255 |
|
|
// {{{ Rubrique Demandes d'avis |
256 |
|
|
// |
257 |
|
|
$rubrik = array( |
258 |
|
|
"title" => _("Suivi"), |
259 |
|
|
"class" => "suivi", |
260 |
|
|
"right" => "menu_suivi", |
261 |
|
|
); |
262 |
vpihour |
635 |
// |
263 |
nhaye |
583 |
$links = array(); |
264 |
|
|
// |
265 |
nhaye |
533 |
$links[] = array( |
266 |
|
|
"href" => "../app/avis_code_barre.php", |
267 |
|
|
"class" => "avis_code_barre", |
268 |
|
|
"title" => _("Retour de consultation"), |
269 |
|
|
"right" => array("avis_code_barre", ), |
270 |
nhaye |
538 |
"open" => array("avis_code_barre.php|"), |
271 |
nhaye |
533 |
); |
272 |
fmichon |
380 |
// |
273 |
fraynaud |
3 |
$rubrik['links'] = $links; |
274 |
fmichon |
380 |
// |
275 |
|
|
$menu[] = $rubrik; |
276 |
|
|
// }}} |
277 |
fmichon |
647 |
|
278 |
|
|
// {{{ Rubrique DEMANDES D'AVIS |
279 |
nhaye |
538 |
// |
280 |
|
|
$rubrik = array( |
281 |
|
|
"title" => _("Demandes d'avis"), |
282 |
|
|
"class" => "demande_avis", |
283 |
fmichon |
566 |
"right" => "menu_demande_avis", |
284 |
nhaye |
538 |
); |
285 |
|
|
// |
286 |
|
|
$links = array(); |
287 |
|
|
// |
288 |
|
|
$links[] = array( |
289 |
nhaye |
571 |
"href" => "../scr/tab.php?obj=demande_avis_encours", |
290 |
|
|
"class" => "demande_avis_encours", |
291 |
nhaye |
538 |
"title" => _("Demandes en cours"), |
292 |
nhaye |
571 |
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
293 |
|
|
"open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ), |
294 |
nhaye |
538 |
); |
295 |
|
|
|
296 |
|
|
$links[] = array( |
297 |
nhaye |
571 |
"href" => "../scr/tab.php?obj=demande_avis_passee", |
298 |
|
|
"class" => "demande_avis_passee", |
299 |
nhaye |
538 |
"title" => _("Demandes passees"), |
300 |
nhaye |
571 |
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
301 |
|
|
"open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ), |
302 |
nhaye |
538 |
); |
303 |
|
|
|
304 |
|
|
$links[] = array( |
305 |
nhaye |
652 |
"href" => "../scr/tab.php?obj=demande_avis", |
306 |
|
|
"class" => "demande_avis", |
307 |
nhaye |
538 |
"title" => _("Exports"), |
308 |
nhaye |
652 |
"right" => array("demande_avis", "demande_avis_tab", ), |
309 |
|
|
"open" => array("tab.php|demande_avis", "form.php|demande_avis", ), |
310 |
nhaye |
538 |
); |
311 |
|
|
|
312 |
|
|
// |
313 |
|
|
$rubrik['links'] = $links; |
314 |
|
|
// |
315 |
|
|
$menu[] = $rubrik; |
316 |
|
|
// }}} |
317 |
|
|
|
318 |
|
|
|
319 |
|
|
|
320 |
fraynaud |
3 |
// {{{ Rubrique EXPORT |
321 |
fmichon |
380 |
// |
322 |
fraynaud |
3 |
$rubrik = array( |
323 |
fmichon |
380 |
"title" => _("export"), |
324 |
fraynaud |
3 |
"class" => "edition", |
325 |
|
|
"right" => "menu_export", |
326 |
|
|
); |
327 |
fmichon |
380 |
// |
328 |
fraynaud |
3 |
$links = array(); |
329 |
fmichon |
380 |
// |
330 |
|
|
$links[] = array( |
331 |
|
|
"href" => "../scr/edition.php", |
332 |
|
|
"class" => "edition", |
333 |
|
|
"title" => _("edition"), |
334 |
|
|
"right" => "edition", |
335 |
|
|
"open" => "edition.php|", |
336 |
|
|
); |
337 |
|
|
// |
338 |
|
|
$links[] = array( |
339 |
|
|
"href" => "../app/edition_p.php", |
340 |
|
|
"class" => "edition", |
341 |
|
|
"title" => _("edition date depot"), |
342 |
|
|
"right" => "edition_p", |
343 |
|
|
"open" => "edition_p.php|", |
344 |
|
|
); |
345 |
|
|
// |
346 |
|
|
$links[] = array( |
347 |
|
|
"href" => "../app/edition_d.php", |
348 |
|
|
"class" => "edition", |
349 |
|
|
"title" => _("edition date decision"), |
350 |
|
|
"right" => "edition_d", |
351 |
|
|
"open" => "edition_d.php|", |
352 |
|
|
); |
353 |
|
|
// |
354 |
|
|
$links[] = array( |
355 |
|
|
"title" => "<hr/>", |
356 |
|
|
"right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ), |
357 |
|
|
); |
358 |
|
|
// |
359 |
|
|
$links[] = array( |
360 |
|
|
"href" => "../scr/reqmo.php", |
361 |
|
|
"class" => "reqmo", |
362 |
|
|
"title" => _("requetes memorisees"), |
363 |
|
|
"right" => "reqmo", |
364 |
|
|
"open" => array("reqmo.php|", "requeteur.php|", ), |
365 |
|
|
); |
366 |
|
|
// |
367 |
|
|
$links[] = array( |
368 |
|
|
"href" => "../app/export_pc.php", |
369 |
|
|
"class" => "reqmo", |
370 |
|
|
"title" => _("export PC Lascot"), |
371 |
|
|
"right" => "export_pc", |
372 |
|
|
"open" => "export_pc.php|", |
373 |
|
|
); |
374 |
|
|
// |
375 |
|
|
$links[] = array( |
376 |
|
|
"href" => "../app/export_dp.php", |
377 |
|
|
"class" => "reqmo", |
378 |
|
|
"title" => _("export DP Lascot"), |
379 |
|
|
"right" => "export_dp", |
380 |
|
|
"open" => "export_dp.php|", |
381 |
|
|
); |
382 |
|
|
// |
383 |
|
|
$links[] = array( |
384 |
|
|
"href" => "../app/sitadel.php", |
385 |
|
|
"class" => "reqmo", |
386 |
|
|
"title" => _("export sitadel")." 2", |
387 |
|
|
"right" => "export_sitadel", |
388 |
|
|
"open" => "sitadel.php|", |
389 |
|
|
); |
390 |
|
|
// |
391 |
fraynaud |
3 |
$rubrik['links'] = $links; |
392 |
fmichon |
380 |
// |
393 |
|
|
$menu[] = $rubrik; |
394 |
fraynaud |
3 |
// }}} |
395 |
|
|
|
396 |
fmichon |
380 |
// {{{ Rubrique PARAMETRAGE |
397 |
|
|
// |
398 |
fraynaud |
3 |
$rubrik = array( |
399 |
fmichon |
380 |
"title" => _("parametrage"), |
400 |
atreal |
306 |
"class" => "parametrage", |
401 |
|
|
"right" => "menu_parametrage", |
402 |
fraynaud |
3 |
); |
403 |
fmichon |
380 |
// |
404 |
fraynaud |
3 |
$links = array(); |
405 |
fmichon |
380 |
// |
406 |
|
|
// GENERAUX |
407 |
|
|
$links[] = array( |
408 |
|
|
"href" => "../scr/form.php?obj=dossier_numeromanuel", |
409 |
|
|
"class" => "traitement", |
410 |
|
|
"title" => _("numero manuel"), |
411 |
|
|
"right" => "dossier_numeromanuel", |
412 |
|
|
"open" => "|dossier_numeromanuel", |
413 |
|
|
); |
414 |
|
|
// |
415 |
|
|
$links[] = array( |
416 |
|
|
"href" => "../app/num_dossier.php", |
417 |
|
|
"class" => "traitement", |
418 |
|
|
"title" => _("remise a 0"), |
419 |
|
|
"right" => "num_dossier", |
420 |
|
|
"open" => "num_dossier.php|", |
421 |
|
|
); |
422 |
|
|
// |
423 |
|
|
$links[] = array( |
424 |
|
|
"title" => "<hr/>", |
425 |
|
|
"right" => array( |
426 |
vpihour |
555 |
"architecte", "architecte_tab", "service", "service_tab", "instructeur", "instructeur_tab", "service_categorie", "service_categorie_tab", "lien_service_service_categorie", "lien_service_service_categorie_tab", |
427 |
|
|
"lien_localisation_nature", "lien_localisation_nature_tab", |
428 |
vpihour |
490 |
"travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab", |
429 |
fmichon |
380 |
"destination", "destination_tab", "nature", "nature_tab", "rivoli", |
430 |
|
|
"rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab", |
431 |
|
|
), |
432 |
|
|
); |
433 |
|
|
// |
434 |
|
|
$links[] = array( |
435 |
|
|
"href" => "../scr/tab.php?obj=architecte", |
436 |
|
|
"class" => "architecte", |
437 |
|
|
"title" => _("architecte"), |
438 |
|
|
"right" => array("architecte", "architecte_tab", ), |
439 |
|
|
"open" => array("tab.php|architecte", "form.php|architecte", ), |
440 |
|
|
); |
441 |
|
|
// |
442 |
|
|
$links[] = array( |
443 |
|
|
"href" => "../scr/tab.php?obj=service", |
444 |
|
|
"class" => "service", |
445 |
|
|
"title" => _("service"), |
446 |
|
|
"right" => array("service", "service_tab", ), |
447 |
|
|
"open" => array("tab.php|service", "form.php|service", ), |
448 |
|
|
); |
449 |
vpihour |
490 |
$links[] = array( |
450 |
|
|
"href" => "../scr/tab.php?obj=service_categorie", |
451 |
|
|
"class" => "service_categorie", |
452 |
vpihour |
491 |
"title" => _("thematique des services"), |
453 |
vpihour |
490 |
"right" => array("service_categorie", "service_categorie_tab", ), |
454 |
|
|
"open" => array("tab.php|service_categorie", "form.php|service_categorie", ), |
455 |
|
|
); |
456 |
|
|
$links[] = array( |
457 |
|
|
"href" => "../scr/tab.php?obj=lien_service_service_categorie", |
458 |
|
|
"class" => "lien_service_service_categorie", |
459 |
vpihour |
491 |
"title" => _("Lien service / thematique"), |
460 |
vpihour |
490 |
"right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ), |
461 |
|
|
"open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ), |
462 |
|
|
); |
463 |
fmichon |
380 |
// |
464 |
|
|
$links[] = array( |
465 |
vpihour |
555 |
"href" => "../scr/tab.php?obj=instructeur", |
466 |
|
|
"class" => "instructeur", |
467 |
|
|
"title" => _("instructeur"), |
468 |
|
|
"right" => array("instructeur", "instructeur_tab", ), |
469 |
|
|
"open" => array("tab.php|instructeur", "form.php|instructeur", ), |
470 |
|
|
); |
471 |
|
|
// |
472 |
|
|
$links[] = array( |
473 |
|
|
"href" => "../scr/tab.php?obj=lien_localisation_nature", |
474 |
|
|
"class" => "lien_localisation_nature", |
475 |
|
|
"title" => _("Lien instructeur / localisation / type de dossier"), |
476 |
|
|
"right" => array("lien_localisation_nature", "lien_localisation_nature_tab", ), |
477 |
|
|
"open" => array("tab.php|lien_localisation_nature", "form.php|lien_localisation_nature", ), |
478 |
|
|
); |
479 |
|
|
// |
480 |
|
|
$links[] = array( |
481 |
fmichon |
380 |
"href" => "../scr/tab.php?obj=travaux", |
482 |
|
|
"class" => "travaux", |
483 |
|
|
"title" => _("travaux"), |
484 |
|
|
"right" => array("travaux", "travaux_tab", ), |
485 |
|
|
"open" => array("tab.php|travaux", "form.php|travaux", ), |
486 |
|
|
); |
487 |
|
|
// |
488 |
|
|
$links[] = array( |
489 |
|
|
"href" => "../scr/tab.php?obj=categorie_demandeur", |
490 |
|
|
"class" => "categorie_demandeur", |
491 |
|
|
"title" => _("categorie_demandeur"), |
492 |
|
|
"right" => array("categorie_demandeur", "categorie_demandeur_tab", ), |
493 |
|
|
"open" => array( |
494 |
|
|
"tab.php|categorie_demandeur", "form.php|categorie_demandeur", |
495 |
|
|
), |
496 |
|
|
); |
497 |
|
|
// |
498 |
|
|
$links[] = array( |
499 |
|
|
"href" => "../scr/tab.php?obj=destination", |
500 |
|
|
"class" => "destination", |
501 |
|
|
"title" => _("destination"), |
502 |
|
|
"right" => array("destination", "destination_tab", ), |
503 |
|
|
"open" => array("tab.php|destination", "form.php|destination", ), |
504 |
|
|
); |
505 |
|
|
// |
506 |
|
|
$links[] = array( |
507 |
|
|
"href" => "../scr/tab.php?obj=nature", |
508 |
|
|
"class" => "nature", |
509 |
|
|
"title" => _("nature"), |
510 |
|
|
"right" => array("nature", "nature_tab", ), |
511 |
|
|
"open" => array("tab.php|nature", "form.php|nature", ), |
512 |
|
|
); |
513 |
|
|
// |
514 |
|
|
$links[] = array( |
515 |
|
|
"href" => "../scr/tab.php?obj=rivoli", |
516 |
|
|
"class" => "rivoli", |
517 |
|
|
"title" => _("rivoli"), |
518 |
|
|
"right" => array("rivoli", "rivoli_tab", ), |
519 |
|
|
"open" => array("tab.php|rivoli", "form.php|rivoli", ), |
520 |
|
|
); |
521 |
|
|
// |
522 |
|
|
$links[] = array( |
523 |
|
|
"href" => "../scr/tab.php?obj=civilite", |
524 |
|
|
"class" => "civilite", |
525 |
|
|
"title" => _("civilite"), |
526 |
|
|
"right" => array("civilite", "civilite_tab", ), |
527 |
|
|
"open" => array("tab.php|civilite", "form.php|civilite", ), |
528 |
|
|
); |
529 |
|
|
// |
530 |
|
|
$links[] = array( |
531 |
|
|
"href" => "../scr/tab.php?obj=parametre", |
532 |
|
|
"class" => "parametre", |
533 |
|
|
"title" => _("parametre")." "._("statistique"), |
534 |
|
|
"right" => array("parametre", "parametre_tab", ), |
535 |
|
|
"open" => array("tab.php|parametre", "form.php|parametre", ), |
536 |
|
|
); |
537 |
|
|
// |
538 |
|
|
$links[] = array( |
539 |
|
|
"class" => "category", |
540 |
|
|
"title" => _("workflows"), |
541 |
|
|
"right" => array( |
542 |
|
|
"action", "action_tab", "transition", "transition_tab", "etat", |
543 |
vpihour |
491 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
544 |
|
|
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
545 |
fmichon |
380 |
), |
546 |
|
|
); |
547 |
|
|
// |
548 |
|
|
$links[] = array( |
549 |
|
|
"title" => "<hr/>", |
550 |
|
|
"right" => array( |
551 |
|
|
"action", "action_tab", "transition", "transition_tab", "etat", |
552 |
vpihour |
491 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
553 |
|
|
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
554 |
fmichon |
380 |
), |
555 |
|
|
); |
556 |
|
|
// |
557 |
|
|
$links[] = array( |
558 |
|
|
"href" => "../scr/tab.php?obj=action", |
559 |
|
|
"class" => "action", |
560 |
|
|
"title" => _("action"), |
561 |
|
|
"right" => array("action", "action_tab", ), |
562 |
|
|
"open" => array("tab.php|action", "form.php|action", ), |
563 |
|
|
); |
564 |
|
|
// |
565 |
|
|
$links[] = array( |
566 |
|
|
"href" => "../scr/tab.php?obj=transition", |
567 |
|
|
"class" => "transition", |
568 |
|
|
"title" => _("transition"), |
569 |
|
|
"right" => array("transition", "transition_tab", ), |
570 |
|
|
"open" => array("tab.php|transition", "form.php|transition", ), |
571 |
|
|
); |
572 |
|
|
// |
573 |
|
|
$links[] = array( |
574 |
|
|
"href" => "../scr/tab.php?obj=etat", |
575 |
|
|
"class" => "etat", |
576 |
|
|
"title" => _("etat"), |
577 |
|
|
"right" => array("etat", "etat_tab", ), |
578 |
|
|
"open" => array("tab.php|etat", "form.php|etat", ), |
579 |
|
|
); |
580 |
|
|
// |
581 |
|
|
$links[] = array( |
582 |
|
|
"href" => "../scr/tab.php?obj=evenement", |
583 |
|
|
"class" => "evenement", |
584 |
|
|
"title" => _("evenement"), |
585 |
|
|
"right" => array("evenement", "evenement_tab", ), |
586 |
|
|
"open" => array("tab.php|evenement", "form.php|evenement", ), |
587 |
|
|
); |
588 |
|
|
// |
589 |
|
|
$links[] = array( |
590 |
|
|
"href" => "../scr/tab.php?obj=bible", |
591 |
|
|
"class" => "bible", |
592 |
|
|
"title" => _("bible"), |
593 |
|
|
"right" => array("bible", "bible_tab", ), |
594 |
|
|
"open" => array("tab.php|bible", "form.php|bible", ), |
595 |
|
|
); |
596 |
|
|
// |
597 |
|
|
$links[] = array( |
598 |
vpihour |
491 |
"href" => "../scr/tab.php?obj=avis_decision", |
599 |
|
|
"class" => "avis_decision", |
600 |
|
|
"title" => _("avis decision"), |
601 |
|
|
"right" => array("avis_decision", "avis_decision_tab", ), |
602 |
|
|
"open" => array("tab.php|avis_decision", "form.php|avis_decision", ), |
603 |
fmichon |
380 |
); |
604 |
|
|
// |
605 |
|
|
$links[] = array( |
606 |
vpihour |
491 |
"href" => "../scr/tab.php?obj=avis_consultation", |
607 |
|
|
"class" => "avis_consultation", |
608 |
|
|
"title" => _("avis consultation"), |
609 |
|
|
"right" => array("avis_consultation", "avis_consultation_tab", ), |
610 |
|
|
"open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ), |
611 |
|
|
); |
612 |
|
|
// |
613 |
|
|
$links[] = array( |
614 |
fmichon |
380 |
"class" => "category", |
615 |
nhaye |
521 |
"title" => _("Organisation"), |
616 |
|
|
"right" => array("direction", "division", "instructeur"), |
617 |
|
|
); |
618 |
|
|
$links[] = array( |
619 |
|
|
"title" => "<hr/>", |
620 |
|
|
"right" => array("direction", "division", "instructeur"), |
621 |
|
|
); |
622 |
|
|
// |
623 |
|
|
$links[] = array( |
624 |
|
|
"href" => "../scr/tab.php?obj=direction", |
625 |
|
|
"class" => "direction", |
626 |
|
|
"title" => _("direction"), |
627 |
|
|
"right" => array("direction", "direction_tab", ), |
628 |
|
|
"open" => array("tab.php|direction", "form.php|direction", ), |
629 |
|
|
); |
630 |
|
|
// |
631 |
|
|
$links[] = array( |
632 |
|
|
"href" => "../scr/tab.php?obj=division", |
633 |
|
|
"class" => "division", |
634 |
|
|
"title" => _("division"), |
635 |
|
|
"right" => array("division", "division_tab", ), |
636 |
|
|
"open" => array("tab.php|division", "form.php|division", ), |
637 |
|
|
); |
638 |
|
|
// |
639 |
|
|
$links[] = array( |
640 |
|
|
"href" => "../scr/tab.php?obj=instructeur", |
641 |
|
|
"class" => "instructeur", |
642 |
|
|
"title" => _("instructeur"), |
643 |
|
|
"right" => array("instructeur", "instructeur_tab", ), |
644 |
|
|
"open" => array("tab.php|instructeur", "form.php|instructeur", ), |
645 |
|
|
); |
646 |
|
|
// |
647 |
|
|
$links[] = array( |
648 |
|
|
"class" => "category", |
649 |
fmichon |
380 |
"title" => _("editions"), |
650 |
|
|
"right" => array( |
651 |
|
|
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
652 |
|
|
"om_lettretype", "om_lettretype_tab", |
653 |
|
|
), |
654 |
|
|
); |
655 |
|
|
// |
656 |
|
|
$links[] = array( |
657 |
|
|
"title" => "<hr/>", |
658 |
|
|
"right" => array( |
659 |
|
|
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
660 |
|
|
"om_lettretype", "om_lettretype_tab", |
661 |
|
|
), |
662 |
|
|
); |
663 |
|
|
// |
664 |
|
|
$links[] = array( |
665 |
|
|
"href" => "../scr/tab.php?obj=om_etat", |
666 |
|
|
"class" => "etat", |
667 |
|
|
"title" => _("om_etat"), |
668 |
|
|
"right" => array("om_etat", "om_etat_tab", ), |
669 |
|
|
"open" => array("tab.php|om_etat", "form.php|om_etat", ), |
670 |
|
|
); |
671 |
|
|
// |
672 |
|
|
$links[] = array( |
673 |
|
|
"href" => "../scr/tab.php?obj=om_sousetat", |
674 |
|
|
"class" => "sousetat", |
675 |
|
|
"title" => _("om_sousetat"), |
676 |
|
|
"right" => array("om_sousetat", "om_sousetat_tab", ), |
677 |
|
|
"open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ), |
678 |
|
|
); |
679 |
|
|
// |
680 |
|
|
$links[] = array( |
681 |
|
|
"href" => "../scr/tab.php?obj=om_lettretype", |
682 |
|
|
"class" => "lettretype", |
683 |
|
|
"title" => _("om_lettretype"), |
684 |
|
|
"right" => array("om_lettretype", "om_lettretype_tab"), |
685 |
|
|
"open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ), |
686 |
|
|
); |
687 |
|
|
// |
688 |
fraynaud |
196 |
$rubrik['links'] = $links; |
689 |
fmichon |
380 |
// |
690 |
|
|
$menu[] = $rubrik; |
691 |
|
|
// }}} |
692 |
fraynaud |
196 |
|
693 |
fmichon |
380 |
// {{{ Rubrique SIG |
694 |
|
|
// |
695 |
fraynaud |
196 |
$rubrik = array( |
696 |
fmichon |
380 |
"title" => _("sig"), |
697 |
fraynaud |
196 |
"class" => "sig", |
698 |
|
|
"right" => "menu_sig", |
699 |
|
|
); |
700 |
fmichon |
380 |
// |
701 |
fraynaud |
196 |
$links = array(); |
702 |
fmichon |
380 |
// |
703 |
|
|
$links[] = array( |
704 |
|
|
"href" => "../scr/tab.php?obj=parcelle", |
705 |
|
|
"class" => "parcelle", |
706 |
|
|
"title" => _("parcelle"), |
707 |
|
|
"right" => array("parcelle", "parcelle_tab"), |
708 |
|
|
"open" => array("tab.php|parcelle", "form.php|parcelle", ), |
709 |
|
|
); |
710 |
|
|
// |
711 |
|
|
$links[] = array( |
712 |
|
|
"href" => "../scr/tab.php?obj=proprietaire", |
713 |
|
|
"class" => "proprietaire", |
714 |
|
|
"title" => _("proprietaire"), |
715 |
|
|
"right" => array("proprietaire", "proprietaire_tab"), |
716 |
|
|
"open" => array("tab.php|proprietaire", "form.php|proprietaire", ), |
717 |
|
|
); |
718 |
|
|
// |
719 |
|
|
$links[] = array( |
720 |
|
|
"class" => "category", |
721 |
|
|
"title" => _("servitudes"), |
722 |
|
|
"right" => array( |
723 |
|
|
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
724 |
|
|
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
725 |
|
|
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
726 |
|
|
), |
727 |
|
|
); |
728 |
|
|
// |
729 |
|
|
$links[] = array( |
730 |
|
|
"title" => "<hr/>", |
731 |
|
|
"right" => array( |
732 |
|
|
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
733 |
|
|
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
734 |
|
|
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
735 |
|
|
), |
736 |
|
|
); |
737 |
|
|
// |
738 |
|
|
$links[] = array( |
739 |
|
|
"href" => "../scr/tab.php?obj=pos", |
740 |
|
|
"class" => "pos", |
741 |
|
|
"title" => _("pos"), |
742 |
|
|
"right" => array("pos", "pos_tab"), |
743 |
|
|
"open" => array("tab.php|pos", "form.php|pos", ), |
744 |
|
|
); |
745 |
|
|
// |
746 |
|
|
$links[] = array( |
747 |
|
|
"href" => "../scr/tab.php?obj=servitude_surfacique", |
748 |
|
|
"class" => "servitude_surfacique", |
749 |
|
|
"title" => _("servitude_surfacique"), |
750 |
|
|
"right" => array("servitude_surfacique", "servitude_surfacique_tab"), |
751 |
|
|
"open" => array( |
752 |
|
|
"tab.php|servitude_surfacique", "form.php|servitude_surfacique", |
753 |
|
|
), |
754 |
|
|
); |
755 |
|
|
// |
756 |
|
|
$links[] = array( |
757 |
|
|
"href" => "../scr/tab.php?obj=servitude_ligne", |
758 |
|
|
"class" => "servitude_ligne", |
759 |
|
|
"title" => _("servitude_ligne"), |
760 |
|
|
"right" => array("servitude_ligne", "servitude_ligne_tab"), |
761 |
|
|
"open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ), |
762 |
|
|
); |
763 |
|
|
// |
764 |
|
|
$links[] = array( |
765 |
|
|
"href" => "../scr/tab.php?obj=servitude_point", |
766 |
|
|
"class" => "servitude_point", |
767 |
|
|
"title" => _("servitude_point"), |
768 |
|
|
"right" => array("servitude_point", "servitude_point_tab"), |
769 |
|
|
"open" => array("tab.php|servitude_point", "form.php|servitude_point", ), |
770 |
|
|
); |
771 |
|
|
// |
772 |
|
|
$links[] = array( |
773 |
|
|
"href" => "../scr/tab.php?obj=parcelle_lot", |
774 |
|
|
"class" => "parcelle_lot", |
775 |
|
|
"title" => _("parcelle_lot"), |
776 |
|
|
"right" => array("parcelle_lot", "parcelle_lot_tab"), |
777 |
|
|
"open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ), |
778 |
|
|
); |
779 |
|
|
// |
780 |
fraynaud |
3 |
$rubrik['links'] = $links; |
781 |
fmichon |
380 |
// |
782 |
|
|
$menu[] = $rubrik; |
783 |
|
|
// }}} |
784 |
fraynaud |
3 |
|
785 |
|
|
// {{{ Rubrique ADMINISTRATION |
786 |
|
|
// |
787 |
|
|
$rubrik = array( |
788 |
fmichon |
380 |
"title" => _("administration"), |
789 |
fraynaud |
3 |
"class" => "administration", |
790 |
|
|
"right" => "menu_administration", |
791 |
|
|
); |
792 |
|
|
// |
793 |
|
|
$links = array(); |
794 |
fmichon |
380 |
// |
795 |
|
|
$links[] = array( |
796 |
|
|
"href" => "../scr/tab.php?obj=om_collectivite", |
797 |
|
|
"class" => "collectivite", |
798 |
|
|
"title" => _("om_collectivite"), |
799 |
|
|
"right" => array("om_collectivite", "om_collectivite_tab", ), |
800 |
|
|
"open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ), |
801 |
|
|
); |
802 |
|
|
// |
803 |
|
|
$links[] = array( |
804 |
|
|
"href" => "../scr/tab.php?obj=om_parametre", |
805 |
|
|
"class" => "parametre", |
806 |
|
|
"title" => _("om_parametre"), |
807 |
|
|
"right" => array("om_parametre", "om_parametre_tab", ), |
808 |
|
|
"open" => array("tab.php|om_parametre", "form.php|om_parametre", ), |
809 |
|
|
); |
810 |
|
|
// |
811 |
|
|
$links[] = array( |
812 |
|
|
"class" => "category", |
813 |
|
|
"title" => _("gestion des utilisateurs"), |
814 |
|
|
"right" => array( |
815 |
|
|
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
816 |
|
|
"om_droit", "om_droit_tab", "directory", |
817 |
|
|
), |
818 |
|
|
); |
819 |
|
|
// |
820 |
|
|
$links[] = array( |
821 |
|
|
"title" => "<hr/>", |
822 |
|
|
"right" => array( |
823 |
|
|
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
824 |
|
|
"om_droit", "om_droit_tab", |
825 |
|
|
), |
826 |
|
|
); |
827 |
|
|
// |
828 |
|
|
$links[] = array( |
829 |
|
|
"href" => "../scr/tab.php?obj=om_profil", |
830 |
|
|
"class" => "profil", |
831 |
|
|
"title" => _("om_profil"), |
832 |
|
|
"right" => array("om_profil", "om_profil_tab", ), |
833 |
|
|
"open" => array("tab.php|om_profil", "form.php|om_profil", ), |
834 |
|
|
); |
835 |
|
|
// |
836 |
|
|
$links[] = array( |
837 |
|
|
"href" => "../scr/tab.php?obj=om_droit", |
838 |
|
|
"class" => "droit", |
839 |
|
|
"title" => _("om_droit"), |
840 |
|
|
"right" => array("om_droit", "om_droit_tab", ), |
841 |
|
|
"open" => array("tab.php|om_droit", "form.php|om_droit", ), |
842 |
|
|
); |
843 |
|
|
// |
844 |
|
|
$links[] = array( |
845 |
|
|
"href" => "../scr/tab.php?obj=om_utilisateur", |
846 |
|
|
"class" => "utilisateur", |
847 |
|
|
"title" => _("om_utilisateur"), |
848 |
|
|
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
849 |
|
|
"open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ), |
850 |
|
|
); |
851 |
|
|
// |
852 |
|
|
$links[] = array( |
853 |
|
|
"title" => "<hr/>", |
854 |
|
|
"right" => array("directory", ), |
855 |
|
|
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
856 |
|
|
); |
857 |
|
|
// |
858 |
|
|
$links[] = array( |
859 |
|
|
"href" => "../scr/directory.php", |
860 |
|
|
"class" => "directory", |
861 |
|
|
"title" => _("annuaire"), |
862 |
|
|
"right" => array("directory", ), |
863 |
|
|
"open" => array("directory.php|", ), |
864 |
|
|
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
865 |
|
|
); |
866 |
|
|
// |
867 |
|
|
$links[] = array( |
868 |
|
|
"class" => "category", |
869 |
|
|
"title" => _("tableaux de bord"), |
870 |
|
|
"right" => array("om_widget", "om_widget_tab", ), |
871 |
|
|
); |
872 |
|
|
// |
873 |
|
|
$links[] = array( |
874 |
|
|
"title" => "<hr/>", |
875 |
|
|
"right" => array("om_widget", "om_widget_tab", ), |
876 |
|
|
); |
877 |
|
|
// |
878 |
|
|
$links[] = array( |
879 |
|
|
"href" => "../scr/tab.php?obj=om_widget", |
880 |
|
|
"class" => "om_widget", |
881 |
|
|
"title" => _("widget"), |
882 |
|
|
"right" => array("om_widget", "om_widget_tab", ), |
883 |
|
|
"open" => array("tab.php|om_widget", "form.php|om_widget", ), |
884 |
|
|
); |
885 |
|
|
// |
886 |
|
|
$links[] = array( |
887 |
|
|
"class" => "category", |
888 |
|
|
"title" => _("sig"), |
889 |
|
|
"right" => array( |
890 |
|
|
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
891 |
|
|
), |
892 |
|
|
); |
893 |
|
|
// |
894 |
|
|
$links[] = array( |
895 |
|
|
"title" => "<hr/>", |
896 |
|
|
"right" => array( |
897 |
|
|
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
898 |
|
|
), |
899 |
|
|
); |
900 |
|
|
// |
901 |
|
|
$links[] = array( |
902 |
|
|
"href" => "../scr/tab.php?obj=om_sig_map", |
903 |
|
|
"class" => "om_sig_map", |
904 |
|
|
"title" => _("om_sig_map"), |
905 |
|
|
"right" => array("om_sig_map", "om_sig_map_tab", ), |
906 |
|
|
"open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ), |
907 |
|
|
); |
908 |
|
|
// |
909 |
|
|
$links[] = array( |
910 |
|
|
"href" => "../scr/tab.php?obj=om_sig_wms", |
911 |
|
|
"class" => "om_sig_wms", |
912 |
|
|
"title" => _("om_sig_wms"), |
913 |
|
|
"right" => array("om_sig_wms", "om_sig_wms_tab", ), |
914 |
|
|
"open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ), |
915 |
|
|
); |
916 |
|
|
// |
917 |
|
|
$links[] = array( |
918 |
|
|
"class" => "category", |
919 |
|
|
"title" => _("options avancees"), |
920 |
|
|
"right" => array("import", "gen", ), |
921 |
|
|
); |
922 |
|
|
// |
923 |
|
|
$links[] = array( |
924 |
|
|
"title" => "<hr/>", |
925 |
|
|
"right" => array("import", ), |
926 |
|
|
); |
927 |
|
|
// |
928 |
|
|
$links[] = array( |
929 |
|
|
"href" => "../scr/import.php", |
930 |
|
|
"class" => "import", |
931 |
|
|
"title" => _("Import"), |
932 |
|
|
"right" => array("import", ), |
933 |
|
|
"open" => array("import.php|", ), |
934 |
|
|
); |
935 |
|
|
// |
936 |
|
|
$links[] = array( |
937 |
|
|
"title" => "<hr/>", |
938 |
|
|
"right" => array("gen", ), |
939 |
|
|
); |
940 |
|
|
// |
941 |
|
|
$links[] = array( |
942 |
|
|
"title" => _("Generateur"), |
943 |
|
|
"href" => "../scr/gen.php", |
944 |
|
|
"class" => "generator", |
945 |
|
|
"right" => array("gen", ), |
946 |
|
|
"open" => array( |
947 |
|
|
"gen.php|","genauto.php|", "gensup.php|", "genfull.php|", |
948 |
|
|
"genetat.php|", "gensousetat.php|", "genlettretype.php|", |
949 |
|
|
"genimport.php|", |
950 |
|
|
), |
951 |
|
|
); |
952 |
|
|
// |
953 |
fraynaud |
3 |
$rubrik['links'] = $links; |
954 |
fmichon |
380 |
// |
955 |
|
|
$menu[] = $rubrik; |
956 |
fraynaud |
3 |
// }}} |
957 |
|
|
|
958 |
|
|
?> |