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