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