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