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