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