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