1 |
<?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 2447 2013-08-27 16:46:03Z fmichon $ |
8 |
*/ |
9 |
|
10 |
/** |
11 |
* $menu est le tableau associatif qui contient tout le menu de |
12 |
* l'application, il contient lui meme un tableau par rubrique, puis chaque |
13 |
* rubrique contient un tableau par lien |
14 |
* |
15 |
* Caracteristiques : |
16 |
* --- tableau rubrik |
17 |
* - title [obligatoire] |
18 |
* - description (texte qui s'affiche au survol de la rubrique) |
19 |
* - href (contenu du lien href) |
20 |
* - class (classe css qui s'affiche sur la rubrique) |
21 |
* - right [optionnel] (droit que l'utilisateur doit avoir pour visionner |
22 |
* cette rubrique, si aucun droit n'est mentionne alors |
23 |
* si aucun lien n'est present dans cette rubrique, on |
24 |
* ne l'affiche pas) |
25 |
* - links [obligatoire] |
26 |
* - open [optionnel] permet de définir les critères permettant |
27 |
* de conserver la rubrique de menu ouverte. |
28 |
* La définition est une liste de criteres, de type array, contenant des chaines |
29 |
* de type "script|obj" ou "script|" ou "|obj". |
30 |
* S'il y a un unique critere on peut ne pas mettre de array |
31 |
* Si un critere correspond avec l'URL, la rubrique est ouverte. |
32 |
* |
33 |
* |
34 |
* --- tableau links |
35 |
* - title [obligatoire] |
36 |
* - href [obligatoire] (contenu du lien href) |
37 |
* - class (classe css qui s'affiche sur l'element) |
38 |
* - right (droit que l'utilisateur doit avoir pour visionner cet element) |
39 |
* - target (pour ouvrir le lien dans une nouvelle fenetre) |
40 |
* - open [optionnel] idem à ci-dessus. Les "open" de links sont utilises pour la rubrik : |
41 |
* pas besoin de definir le critere dans rubrik si il est defini dans links |
42 |
* la correspondance rend le lien actif et la rubrique est ouverte |
43 |
* exemples : |
44 |
* open => array("tab.php|users", "form.php|users"), |
45 |
* open => "|users" |
46 |
* open => "script.php|" |
47 |
*/ |
48 |
// |
49 |
$menu = array(); |
50 |
|
51 |
// {{{ Rubrique AUTORISATION |
52 |
// |
53 |
$rubrik = array( |
54 |
"title" => _("Autorisation"), |
55 |
"class" => "autorisation", |
56 |
"right" => "menu_autorisation", |
57 |
); |
58 |
// |
59 |
$links = array(); |
60 |
|
61 |
$links[] = array( |
62 |
"href" => "../scr/tab.php?obj=dossier_autorisation", |
63 |
"class" => "dossier_autorisation", |
64 |
"title" => _("Dossiers d'autorisation"), |
65 |
"right" => array("dossier_autorisation", "dossier_autorisation_tab", ), |
66 |
"open" => array("tab.php|dossier_autorisation", "dossier_autorisation.php|", ), |
67 |
); |
68 |
|
69 |
// Lien vers les dossiers d'autorisations qui ont une demande d'avis |
70 |
$links[] = array( |
71 |
"href" => "../scr/tab.php?obj=dossier_autorisation_avis", |
72 |
"class" => "dossier_autorisation", |
73 |
"title" => _("Dossiers d'autorisation"), |
74 |
"right" => array("dossier_autorisation_avis", "dossier_autorisation_avis_tab", ), |
75 |
"open" => array("tab.php|dossier_autorisation_avis", "dossier_autorisation_avis.php|", ), |
76 |
); |
77 |
|
78 |
// |
79 |
$rubrik['links'] = $links; |
80 |
// |
81 |
$menu[] = $rubrik; |
82 |
// }}} |
83 |
|
84 |
// {{{ Rubrique GUICHET UNIQUE |
85 |
// |
86 |
$rubrik = array( |
87 |
"title" => _("Guichet Unique"), |
88 |
"class" => "guichet_unique", |
89 |
"right" => "menu_guichet_unique", |
90 |
); |
91 |
// |
92 |
$links = array(); |
93 |
// |
94 |
$links[] = array( |
95 |
"href" => "../scr/dashboard.php", |
96 |
"class" => "tableau-de-bord", |
97 |
"title" => _("tableau de bord"), |
98 |
"right" => "menu_guichet_unique_dashboard", |
99 |
"open" => array("dashboard.php|",), |
100 |
); |
101 |
// |
102 |
$links[] = array( |
103 |
"class" => "category", |
104 |
"title" => _("nouvelle demande"), |
105 |
"right" => array( |
106 |
"demande_nouveau_dossier_ajouter", |
107 |
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
108 |
"demande_autre_dossier_ajouter", "demande_autre_dossier_tab", |
109 |
"demande_consulter","demande_tab", |
110 |
), |
111 |
); |
112 |
$links[] = array( |
113 |
"title" => "<hr/>", |
114 |
"right" => array( |
115 |
"demande_dossier_encours_ajouter", |
116 |
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
117 |
), |
118 |
); |
119 |
$links[] = array( |
120 |
"href" => "../scr/form.php?obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
121 |
"class" => "nouveau-dossier", |
122 |
"title" => _("nouveau dossier"), |
123 |
"right" => array( |
124 |
"demande_nouveau_dossier_ajouter", |
125 |
), |
126 |
"open" => array("form.php|demande_nouveau_dossier",), |
127 |
); |
128 |
$links[] = array( |
129 |
"href" => "../scr/tab.php?obj=demande_dossier_encours", |
130 |
"class" => "dossier-existant", |
131 |
"title" => _("dossier en cours"), |
132 |
"right" => array( |
133 |
"demande_dossier_encours_ajouter","demande_dossier_encours_tab", |
134 |
), |
135 |
"open" => array("tab.php|demande_dossier_encours", "form.php|demande_dossier_encours"), |
136 |
); |
137 |
$links[] = array( |
138 |
"href" => "../scr/tab.php?obj=demande_autre_dossier", |
139 |
"class" => "autre-dossier", |
140 |
"title" => _("autre dossier"), |
141 |
"right" => array( |
142 |
"demande_autre_dossier_ajouter","demande_autre_dossier_tab", |
143 |
), |
144 |
"open" => array("tab.php|demande_autre_dossier", "form.php|demande_autre_dossier"), |
145 |
); |
146 |
$links[] = array( |
147 |
"title" => "<hr/>", |
148 |
"right" => array( |
149 |
"demande_consulter", "demande_tab" |
150 |
), |
151 |
); |
152 |
$links[] = array( |
153 |
"href" => "../scr/tab.php?obj=demande", |
154 |
"class" => "pdf", |
155 |
"title" => _("recepisse"), |
156 |
"right" => array( |
157 |
"demande_consulter", "demande_tab" |
158 |
), |
159 |
"open" => array("tab.php|demande","form.php|demande"), |
160 |
); |
161 |
$links[] = array( |
162 |
"title" => "<hr/>", |
163 |
"right" => array( |
164 |
"petitionnaire_frequent_consulter", "petitionnaire_frequent_tab" |
165 |
), |
166 |
); |
167 |
$links[] = array( |
168 |
"href" => "../scr/tab.php?obj=petitionnaire_frequent", |
169 |
"class" => "petitionnaire_frequent", |
170 |
"title" => _("petitionnaire_frequent"), |
171 |
"right" => array( |
172 |
"petitionnaire_frequent_consulter", "petitionnaire_frequent_tab" |
173 |
), |
174 |
"open" => array("tab.php|petitionnaire_frequent","form.php|petitionnaire_frequent"), |
175 |
); |
176 |
// |
177 |
$links[] = array( |
178 |
"class" => "category", |
179 |
"title" => _("affichage reglementaire"), |
180 |
"right" => array( |
181 |
"affichage_reglementaire_registre", |
182 |
"affichage_reglementaire_attestation", |
183 |
), |
184 |
); |
185 |
$links[] = array( |
186 |
"title" => "<hr/>", |
187 |
"right" => array( |
188 |
"affichage_reglementaire_registre", |
189 |
"affichage_reglementaire_attestation", |
190 |
), |
191 |
); |
192 |
$links[] = array( |
193 |
"href" => "../app/affichage_reglementaire_registre.php", |
194 |
"class" => "edition", |
195 |
"title" => _("registre"), |
196 |
"right" => array( |
197 |
"affichage_reglementaire_registre", |
198 |
), |
199 |
"open" => "affichage_reglementaire_registre.php|", |
200 |
); |
201 |
$links[] = array( |
202 |
"href" => "../app/affichage_reglementaire_attestation.php", |
203 |
"class" => "edition", |
204 |
"title" => _("attestation"), |
205 |
"right" => array( |
206 |
"affichage_reglementaire_attestation", |
207 |
), |
208 |
"open" => "affichage_reglementaire_attestation.php|", |
209 |
); |
210 |
// |
211 |
$rubrik['links'] = $links; |
212 |
// |
213 |
$menu[] = $rubrik; |
214 |
// }}} |
215 |
|
216 |
// {{{ Rubrique QUALIFICATION |
217 |
// |
218 |
$rubrik = array( |
219 |
"title" => _("Qualification"), |
220 |
"class" => "qualification", |
221 |
"right" => "qualification_menu", |
222 |
); |
223 |
// |
224 |
$links = array(); |
225 |
// |
226 |
$links[] = array( |
227 |
"href" => "../scr/dashboard.php", |
228 |
"class" => "tableau-de-bord", |
229 |
"title" => _("tableau de bord"), |
230 |
"right" => "menu_qualification_dashboard", |
231 |
"open" => array("dashboard.php|",), |
232 |
); |
233 |
|
234 |
// |
235 |
$links[] = array( |
236 |
"href" => "../scr/tab.php?obj=dossier_qualifier_qualificateur", |
237 |
"class" => "dossier_qualifier_qualificateur", |
238 |
"title" => _("dossiers a qualifier"), |
239 |
"right" => array("dossier_qualifier_qualificateur", "dossier_qualifier_qualificateur_tab", ), |
240 |
"open" => array("tab.php|dossier_qualifier_qualificateur", "form.php|dossier_instruction", ), |
241 |
); |
242 |
|
243 |
// |
244 |
$rubrik['links'] = $links; |
245 |
// |
246 |
$menu[] = $rubrik; |
247 |
// }}} |
248 |
|
249 |
// {{{ Rubrique INSTRUCTION |
250 |
// |
251 |
$rubrik = array( |
252 |
"title" => _("instruction"), |
253 |
"class" => "instruction", |
254 |
"right" => "menu_instruction", |
255 |
); |
256 |
// |
257 |
$links = array(); |
258 |
// |
259 |
$links[] = array( |
260 |
"href" => "../scr/dashboard.php", |
261 |
"class" => "tableau-de-bord", |
262 |
"title" => _("tableau de bord"), |
263 |
"right" => "menu_instruction_dashboard", |
264 |
"open" => array("dashboard.php|",), |
265 |
); |
266 |
// Catégorie DOSSIERS D'INSTRUCTION |
267 |
$links[] = array( |
268 |
"class" => "category", |
269 |
"title" => _("dossiers d'instruction"), |
270 |
"right" => array( |
271 |
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
272 |
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
273 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
274 |
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
275 |
"dossier_instruction", "dossier_instruction_tab", |
276 |
"PC_modificatif", "PC_modificatif_tab", |
277 |
), |
278 |
); |
279 |
$links[] = array( |
280 |
"title" => "<hr/>", |
281 |
"right" => array( |
282 |
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
283 |
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
284 |
), |
285 |
); |
286 |
// |
287 |
$links[] = array( |
288 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_encours", |
289 |
"class" => "dossier_instruction_mes_encours", |
290 |
"title" => _("mes encours"), |
291 |
"right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ), |
292 |
"open" => array("tab.php|dossier_instruction_mes_encours", "form.php|dossier_instruction_mes_encours", ), |
293 |
); |
294 |
// |
295 |
$links[] = array( |
296 |
"href" => "../scr/tab.php?obj=dossier_instruction_tous_encours", |
297 |
"class" => "dossier_instruction_tous_encours", |
298 |
"title" => _("tous les encours"), |
299 |
"right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ), |
300 |
"open" => array("tab.php|dossier_instruction_tous_encours", "form.php|dossier_instruction_tous_encours", ), |
301 |
); |
302 |
// |
303 |
$links[] = array( |
304 |
"title" => "<hr/>", |
305 |
"right" => array( |
306 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
307 |
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
308 |
), |
309 |
); |
310 |
// |
311 |
$links[] = array( |
312 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures", |
313 |
"class" => "dossier_instruction_mes_clotures", |
314 |
"title" => _("mes clotures"), |
315 |
"right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ), |
316 |
"open" => array("tab.php|dossier_instruction_mes_clotures", "form.php|dossier_instruction_mes_clotures", ), |
317 |
); |
318 |
// |
319 |
$links[] = array( |
320 |
"href" => "../scr/tab.php?obj=dossier_instruction_tous_clotures", |
321 |
"class" => "dossier_instruction_tous_clotures", |
322 |
"title" => _("tous les clotures"), |
323 |
"right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ), |
324 |
"open" => array("tab.php|dossier_instruction_tous_clotures", "form.php|dossier_instruction_tous_clotures", ), |
325 |
); |
326 |
// |
327 |
$links[] = array( |
328 |
"title" => "<hr/>", |
329 |
"right" => array( |
330 |
"dossier_instruction", "dossier_instruction_tab", |
331 |
), |
332 |
); |
333 |
// |
334 |
$links[] = array( |
335 |
"href" => "../scr/tab.php?obj=dossier_instruction", |
336 |
"class" => "dossier_instruction_recherche", |
337 |
"title" => _("recherche"), |
338 |
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
339 |
"open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ), |
340 |
); |
341 |
|
342 |
// Catégorier Qualification |
343 |
$links[] = array( |
344 |
"class" => "category", |
345 |
"title" => _("qualification"), |
346 |
"right" => array("dossier_qualifier", "architecte_frequent",), |
347 |
); |
348 |
// |
349 |
$links[] = array( |
350 |
"title" => "<hr/>", |
351 |
"right" => array("dossier_qualifier", "architecte_frequent", ), |
352 |
); |
353 |
// |
354 |
$links[] = array( |
355 |
"href" => "../scr/tab.php?obj=dossier_qualifier", |
356 |
"class" => "dossier_qualifier", |
357 |
"title" => _("dossiers a qualifier"), |
358 |
"right" => array("dossier_qualifier", "dossier_qualifier_tab", ), |
359 |
"open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ), |
360 |
); |
361 |
// |
362 |
$links[] = array( |
363 |
"href" => "../scr/tab.php?obj=architecte_frequent", |
364 |
"class" => "architecte_frequent", |
365 |
"title" => _("architecte_frequent"), |
366 |
"right" => array("architecte_frequent", "architecte_frequent_tab", ), |
367 |
"open" => array("tab.php|architecte_frequent", "form.php|architecte_frequent", ), |
368 |
); |
369 |
// Catégorie CONSULTATIONS |
370 |
$links[] = array( |
371 |
"class" => "category", |
372 |
"title" => _("consultations"), |
373 |
"right" => array("consultation_mes_retours", "consultation_tous_retours", ), |
374 |
); |
375 |
$links[] = array( |
376 |
"title" => "<hr/>", |
377 |
"right" => array("consultation_mes_retours", "consultation_tous_retours", ), |
378 |
); |
379 |
$links[] = array( |
380 |
"href" => "../scr/tab.php?obj=consultation_mes_retours", |
381 |
"class" => "consultation_mes_retours", |
382 |
"title" => _("Mes retours"), |
383 |
"right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ), |
384 |
"open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ), |
385 |
); |
386 |
$links[] = array( |
387 |
"href" => "../scr/tab.php?obj=consultation_tous_retours", |
388 |
"class" => "consultation_tous_retours", |
389 |
"title" => _("Tous les retours"), |
390 |
"right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ), |
391 |
"open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ), |
392 |
); |
393 |
// Catégorie MESSAGES |
394 |
$links[] = array( |
395 |
"class" => "category", |
396 |
"title" => _("Messages"), |
397 |
"right" => array("messages_mes_retours", "messages_tous_retours"), |
398 |
"parameters" => array("option_erp" => "true", ), |
399 |
); |
400 |
// |
401 |
$links[] = array( |
402 |
"title" => "<hr/>", |
403 |
"right" => array("messages_mes_retours", "messages_tous_retours"), |
404 |
"parameters" => array("option_erp" => "true", ), |
405 |
); |
406 |
// |
407 |
$links[] = array( |
408 |
"href" => "../scr/tab.php?obj=messages_mes_retours", |
409 |
"class" => "messages_mes_retours", |
410 |
"title" => _("Mes messages"), |
411 |
"right" => array("messages_mes_retours", "messages_mes_retours_tab", ), |
412 |
"open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ), |
413 |
"parameters" => array("option_erp" => "true", ), |
414 |
); |
415 |
// |
416 |
$links[] = array( |
417 |
"href" => "../scr/tab.php?obj=messages_tous_retours", |
418 |
"class" => "messages_tous_retours", |
419 |
"title" => _("Tous les messages"), |
420 |
"right" => array("messages_tous_retours", "messages_tous_retours_tab", ), |
421 |
"open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ), |
422 |
"parameters" => array("option_erp" => "true", ), |
423 |
); |
424 |
// Catégorie COMMISSIONS |
425 |
$links[] = array( |
426 |
"class" => "category", |
427 |
"title" => _("commissions"), |
428 |
"right" => array( |
429 |
"commission_mes_retours", "commission_mes_retours_tab", |
430 |
"commission_tous_retours", "commission_tous_retours_tab", |
431 |
), |
432 |
); |
433 |
$links[] = array( |
434 |
"title" => "<hr/>", |
435 |
"right" => array( |
436 |
"commission_mes_retours", "commission_mes_retours_tab", |
437 |
"commission_tous_retours", "commission_tous_retours_tab", |
438 |
), |
439 |
); |
440 |
$links[] = array( |
441 |
"href" => "../scr/tab.php?obj=commission_mes_retours", |
442 |
"class" => "commission_mes_retours", |
443 |
"title" => _("Mes retours"), |
444 |
"right" => array("commission_mes_retours", "commission_mes_retours_tab", ), |
445 |
"open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ), |
446 |
); |
447 |
$links[] = array( |
448 |
"href" => "../scr/tab.php?obj=commission_tous_retours", |
449 |
"class" => "commission_tous_retours", |
450 |
"title" => _("Tous les retours"), |
451 |
"right" => array("commission_tous_retours", "commission_tous_retours_tab", ), |
452 |
"open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ), |
453 |
); |
454 |
|
455 |
// |
456 |
$rubrik['links'] = $links; |
457 |
// |
458 |
$menu[] = $rubrik; |
459 |
// }}} |
460 |
|
461 |
// {{{ Rubrique SUIVI |
462 |
// |
463 |
$rubrik = array( |
464 |
"title" => _("Suivi"), |
465 |
"class" => "suivi", |
466 |
"right" => "menu_suivi", |
467 |
); |
468 |
// |
469 |
$links = array(); |
470 |
// |
471 |
$links[] = array( |
472 |
"href" => "../scr/dashboard.php", |
473 |
"class" => "tableau-de-bord", |
474 |
"title" => _("tableau de bord"), |
475 |
"right" => "menu_suivi_dashboard", |
476 |
"open" => array("dashboard.php|",), |
477 |
); |
478 |
$links[] = array( |
479 |
"class" => "category", |
480 |
"title" => _("suivi des pieces"), |
481 |
"right" => array( |
482 |
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
483 |
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
484 |
), |
485 |
); |
486 |
// |
487 |
$links[] = array( |
488 |
"title" => "<hr/>", |
489 |
"right" => array( |
490 |
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
491 |
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
492 |
), |
493 |
); |
494 |
// |
495 |
$links[] = array( |
496 |
"href" => "../app/suivi_retours_de_consultation.php", |
497 |
"class" => "consultation-retour", |
498 |
"title" => _("retours de consultation"), |
499 |
"right" => array( |
500 |
"suivi_retours_de_consultation", |
501 |
), |
502 |
"open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ), |
503 |
); |
504 |
// |
505 |
$links[] = array( |
506 |
"title" => "<hr/>", |
507 |
"right" => array( |
508 |
"suivi_mise_a_jour_des_dates", |
509 |
), |
510 |
); |
511 |
// |
512 |
$links[] = array( |
513 |
"href" => "../app/suivi_mise_a_jour_des_dates.php", |
514 |
"class" => "suivi_mise_a_jour_des_dates", |
515 |
"title" => _("Mise a jour des dates"), |
516 |
"right" => array("suivi_mise_a_jour_des_dates", ), |
517 |
"open" => array("suivi_mise_a_jour_des_dates.php|"), |
518 |
); |
519 |
// |
520 |
$links[] = array( |
521 |
"title" => "<hr/>", |
522 |
"right" => array( |
523 |
"suivi_envoi_lettre_rar", |
524 |
), |
525 |
); |
526 |
// |
527 |
$links[] = array( |
528 |
"href" => "../app/suivi_envoi_lettre_rar.php", |
529 |
"class" => "edition", |
530 |
"title" => _("envoi lettre RAR"), |
531 |
"right" => array("suivi_envoi_lettre_rar", ), |
532 |
"open" => array("suivi_envoi_lettre_rar.php|"), |
533 |
); |
534 |
// |
535 |
$links[] = array( |
536 |
"title" => "<hr/>", |
537 |
"right" => array( |
538 |
"suivi_bordereaux", |
539 |
), |
540 |
); |
541 |
// |
542 |
$links[] = array( |
543 |
"href" => "../app/suivi_bordereaux.php", |
544 |
"class" => "edition", |
545 |
"title" => _("Bordereaux"), |
546 |
"right" => array("suivi_bordereaux", ), |
547 |
"open" => array("suivi_bordereaux.php|"), |
548 |
); |
549 |
// |
550 |
$links[] = array( |
551 |
"class" => "category", |
552 |
"title" => _("Demandes d'avis"), |
553 |
"right" => array( |
554 |
"demandes_avis_mise_a_jour_des_dates", |
555 |
), |
556 |
); |
557 |
// |
558 |
$links[] = array( |
559 |
"href" => "../app/demandes_avis_mise_a_jour_des_dates.php", |
560 |
"class" => "demandes_avis_mise_a_jour_des_dates", |
561 |
"title" => _("Mise a jour des dates"), |
562 |
"right" => array("demandes_avis_mise_a_jour_des_dates", ), |
563 |
"open" => array("demandes_avis_mise_a_jour_des_dates.php|"), |
564 |
); |
565 |
// |
566 |
// Catégorie COMMISSIONS |
567 |
$links[] = array( |
568 |
"class" => "category", |
569 |
"title" => _("commissions"), |
570 |
"right" => array( |
571 |
"commission", "commission_tab", |
572 |
"commission_demandes_passage", "commission_demandes_passage_tab", |
573 |
), |
574 |
); |
575 |
// |
576 |
$links[] = array( |
577 |
"title" => "<hr/>", |
578 |
"right" => array( |
579 |
"commission", "commission_tab", |
580 |
"commission_demandes_passage", "commission_demandes_passage_tab", |
581 |
), |
582 |
); |
583 |
// |
584 |
$links[] = array( |
585 |
"href" => "../scr/tab.php?obj=commission", |
586 |
"class" => "commissions", |
587 |
"title" => _("gestion"), |
588 |
"right" => array("commission", ), |
589 |
"open" => array("tab.php|commission", "form.php|commission", ), |
590 |
); |
591 |
// |
592 |
$links[] = array( |
593 |
"href" => "../scr/tab.php?obj=commission_demandes_passage", |
594 |
"class" => "commissions-demande-passage", |
595 |
"title" => _("demandes"), |
596 |
"right" => array("commission_demandes_passage", ), |
597 |
"open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ), |
598 |
); |
599 |
// |
600 |
$rubrik['links'] = $links; |
601 |
// |
602 |
$menu[] = $rubrik; |
603 |
// }}} |
604 |
|
605 |
// {{{ Rubrique DEMANDES D'AVIS |
606 |
// |
607 |
$rubrik = array( |
608 |
"title" => _("Demandes d'avis"), |
609 |
"class" => "demande_avis", |
610 |
"right" => "menu_demande_avis", |
611 |
); |
612 |
// |
613 |
$links = array(); |
614 |
// |
615 |
$links[] = array( |
616 |
"href" => "../scr/dashboard.php", |
617 |
"class" => "tableau-de-bord", |
618 |
"title" => _("tableau de bord"), |
619 |
"right" => "menu_demande_avis_dashboard", |
620 |
"open" => array("dashboard.php|",), |
621 |
); |
622 |
// |
623 |
$links[] = array( |
624 |
"title" => "<hr/>", |
625 |
"right" => array( |
626 |
"demande_avis_encours", "demande_avis_encours_tab", |
627 |
"demande_avis_passee", "demande_avis_passee_tab", |
628 |
"demande_avis", "demande_avis_tab", |
629 |
), |
630 |
); |
631 |
// |
632 |
$links[] = array( |
633 |
"href" => "../scr/tab.php?obj=demande_avis_encours", |
634 |
"class" => "demande_avis_encours", |
635 |
"title" => _("Demandes en cours"), |
636 |
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
637 |
"open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ), |
638 |
); |
639 |
|
640 |
$links[] = array( |
641 |
"href" => "../scr/tab.php?obj=demande_avis_passee", |
642 |
"class" => "demande_avis_passee", |
643 |
"title" => _("Demandes passees"), |
644 |
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
645 |
"open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ), |
646 |
); |
647 |
|
648 |
$links[] = array( |
649 |
"href" => "../scr/tab.php?obj=demande_avis", |
650 |
"class" => "demande_avis", |
651 |
"title" => _("Exports"), |
652 |
"right" => array("demande_avis", "demande_avis_tab", ), |
653 |
"open" => array("tab.php|demande_avis", "form.php|demande_avis", ), |
654 |
); |
655 |
|
656 |
// |
657 |
$rubrik['links'] = $links; |
658 |
// |
659 |
$menu[] = $rubrik; |
660 |
// }}} |
661 |
|
662 |
|
663 |
// Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle |
664 |
// dans cette version |
665 |
// {{{ Rubrique EXPORT |
666 |
// |
667 |
$rubrik = array( |
668 |
"title" => _("export / import"), |
669 |
"class" => "edition", |
670 |
"right" => "menu_export", |
671 |
); |
672 |
// |
673 |
$links = array(); |
674 |
// // |
675 |
// $links[] = array( |
676 |
// "href" => "../scr/edition.php", |
677 |
// "class" => "edition", |
678 |
// "title" => _("edition"), |
679 |
// "right" => "edition", |
680 |
// "open" => "edition.php|", |
681 |
// ); |
682 |
// // |
683 |
// $links[] = array( |
684 |
// "href" => "../app/edition_p.php", |
685 |
// "class" => "edition", |
686 |
// "title" => _("edition date depot"), |
687 |
// "right" => "edition_p", |
688 |
// "open" => "edition_p.php|", |
689 |
// ); |
690 |
// // |
691 |
// $links[] = array( |
692 |
// "href" => "../app/edition_d.php", |
693 |
// "class" => "edition", |
694 |
// "title" => _("edition date decision"), |
695 |
// "right" => "edition_d", |
696 |
// "open" => "edition_d.php|", |
697 |
// ); |
698 |
// // |
699 |
// $links[] = array( |
700 |
// "title" => "<hr/>", |
701 |
// "right" => array("reqmo", "export_sitadel", ), |
702 |
// ); |
703 |
// // |
704 |
// $links[] = array( |
705 |
// "href" => "../scr/reqmo.php", |
706 |
// "class" => "reqmo", |
707 |
// "title" => _("requetes memorisees"), |
708 |
// "right" => "reqmo", |
709 |
// "open" => array("reqmo.php|", "requeteur.php|", ), |
710 |
// ); |
711 |
// |
712 |
$links[] = array( |
713 |
"href" => "../app/sitadel.php", |
714 |
"class" => "reqmo", |
715 |
"title" => _("export sitadel"), |
716 |
"right" => "export_sitadel", |
717 |
"open" => "sitadel.php|", |
718 |
); |
719 |
// |
720 |
$links[] = array( |
721 |
"href" => "../app/versement_archives.php", |
722 |
"class" => "versement_archives", |
723 |
"title" => _("versement aux archives"), |
724 |
"right" => "versement_archives", |
725 |
"open" => "versement_archives.php|", |
726 |
); |
727 |
// |
728 |
$links[] = array( |
729 |
"href" => "../app/reqmo_pilot.php", |
730 |
"class" => "reqmo", |
731 |
"title" => _("statistiques a la demande"), |
732 |
"right" => "reqmo_pilot", |
733 |
"open" => "reqmo_pilot.php|", |
734 |
); |
735 |
// |
736 |
$rubrik['links'] = $links; |
737 |
// |
738 |
$menu[] = $rubrik; |
739 |
// }}} |
740 |
|
741 |
|
742 |
// {{{ Rubrique PARAMETRAGE |
743 |
// |
744 |
$rubrik = array( |
745 |
"title" => _("parametrage dossiers"), |
746 |
"class" => "parametrage", |
747 |
"right" => "menu_parametrage", |
748 |
); |
749 |
// |
750 |
$links = array(); |
751 |
// |
752 |
$links[] = array( |
753 |
"class" => "category", |
754 |
"title" => _("dossiers"), |
755 |
"right" => array( |
756 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
757 |
"dossier_autorisation_type_detaille", |
758 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
759 |
"dossier_instruction_type_tab", "cerfa", "cerfa_tab", |
760 |
), |
761 |
); |
762 |
// |
763 |
$links[] = array( |
764 |
"title" => "<hr/>", |
765 |
"right" => array( |
766 |
"cerfa", "cerfa_tab", |
767 |
), |
768 |
); |
769 |
// |
770 |
$links[] = array( |
771 |
"href" => "../scr/tab.php?obj=cerfa", |
772 |
"class" => "cerfa", |
773 |
"title" => _("cerfa"), |
774 |
"right" => array("cerfa", "cerfa_tab", ), |
775 |
"open" => array("tab.php|cerfa", "form.php|cerfa", ), |
776 |
); |
777 |
// |
778 |
$links[] = array( |
779 |
"title" => "<hr/>", |
780 |
"right" => array( |
781 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
782 |
"dossier_autorisation_type_detaille", |
783 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
784 |
"dossier_instruction_type_tab", |
785 |
), |
786 |
); |
787 |
// |
788 |
$links[] = array( |
789 |
"href" => "../scr/tab.php?obj=dossier_autorisation_type", |
790 |
"class" => "dossier_autorisation_type", |
791 |
"title" => _("type DA"), |
792 |
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
793 |
"open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ), |
794 |
); |
795 |
// |
796 |
$links[] = array( |
797 |
"href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille", |
798 |
"class" => "dossier_autorisation_type_detaille", |
799 |
"title" => _("type DA detaille"), |
800 |
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
801 |
"open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ), |
802 |
); |
803 |
// |
804 |
$links[] = array( |
805 |
"href" => "../scr/tab.php?obj=dossier_instruction_type", |
806 |
"class" => "dossier_instruction_type", |
807 |
"title" => _("type DI"), |
808 |
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
809 |
"open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ), |
810 |
); |
811 |
// |
812 |
$links[] = array( |
813 |
"title" => "<hr/>", |
814 |
"right" => array( |
815 |
"contrainte", "contrainte_tab", |
816 |
"contrainte_souscategorie", "contrainte_souscategorie_tab", |
817 |
"contrainte_categorie", "contrainte_categorie_tab" |
818 |
), |
819 |
"parameters" => array( |
820 |
"option_sig" => "sig_externe", |
821 |
), |
822 |
); |
823 |
$links[] = array( |
824 |
"title" => "<hr/>", |
825 |
"right" => array( |
826 |
"contrainte", "contrainte_tab", |
827 |
"contrainte_souscategorie", "contrainte_souscategorie_tab", |
828 |
"contrainte_categorie", "contrainte_categorie_tab" |
829 |
), |
830 |
"parameters" => array( |
831 |
"option_sig" => "sig_interne", |
832 |
), |
833 |
); |
834 |
// |
835 |
$links[] = array( |
836 |
"href" => "../scr/tab.php?obj=contrainte", |
837 |
"class" => "contrainte", |
838 |
"title" => _("contrainte"), |
839 |
"right" => array("contrainte", "contrainte_tab", ), |
840 |
"open" => array("tab.php|contrainte", "form.php|contrainte", ), |
841 |
"parameters" => array( |
842 |
"option_sig" => "sig_externe", |
843 |
), |
844 |
); |
845 |
$links[] = array( |
846 |
"href" => "../scr/tab.php?obj=contrainte", |
847 |
"class" => "contrainte", |
848 |
"title" => _("contrainte"), |
849 |
"right" => array("contrainte", "contrainte_tab", ), |
850 |
"open" => array("tab.php|contrainte", "form.php|contrainte", ), |
851 |
"parameters" => array( |
852 |
"option_sig" => "sig_interne", |
853 |
), |
854 |
); |
855 |
// |
856 |
$links[] = array( |
857 |
"href" => "../app/contrainte_synchronisation.php", |
858 |
"class" => "contrainte", |
859 |
"title" => _("synchronisation des contraintes"), |
860 |
"right" => array("contrainte", "contrainte_synchronisation", ), |
861 |
"open" => array("contrainte_synchronisation.php|", ), |
862 |
"parameters" => array( |
863 |
"option_sig" => "sig_externe", |
864 |
), |
865 |
); |
866 |
// |
867 |
$links[] = array( |
868 |
"class" => "category", |
869 |
"title" => _("demandes"), |
870 |
"right" => array( |
871 |
"demande_type", |
872 |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
873 |
), |
874 |
); |
875 |
// |
876 |
$links[] = array( |
877 |
"title" => "<hr/>", |
878 |
"right" => array( |
879 |
"demande_type", |
880 |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
881 |
), |
882 |
); |
883 |
// |
884 |
$links[] = array( |
885 |
"href" => "../scr/tab.php?obj=demande_nature", |
886 |
"class" => "demande_nature", |
887 |
"title" => _("nature"), |
888 |
"right" => array("demande_nature", "demande_nature_tab", ), |
889 |
"open" => array("tab.php|demande_nature", "form.php|demande_nature", ), |
890 |
); |
891 |
// |
892 |
$links[] = array( |
893 |
"href" => "../scr/tab.php?obj=demande_type", |
894 |
"class" => "demande_type", |
895 |
"title" => _("type"), |
896 |
"right" => array("demande_type", "demande_type_tab",), |
897 |
"open" => array("tab.php|demande_type", "form.php|demande_type", ), |
898 |
); |
899 |
// |
900 |
$links[] = array( |
901 |
"class" => "category", |
902 |
"title" => _("workflows"), |
903 |
"right" => array( |
904 |
"workflows", |
905 |
"action", "action_tab", "etat", |
906 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
907 |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
908 |
), |
909 |
); |
910 |
// |
911 |
$links[] = array( |
912 |
"title" => "<hr/>", |
913 |
"right" => array( |
914 |
"workflows", |
915 |
"action", "action_tab", "etat", |
916 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
917 |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
918 |
), |
919 |
); |
920 |
// |
921 |
$links[] = array( |
922 |
"href" => "../app/workflows.php", |
923 |
"class" => "workflows", |
924 |
"title" => _("workflows"), |
925 |
"right" => array("workflows", ), |
926 |
"open" => array("workflows.php|", ), |
927 |
); |
928 |
// |
929 |
$links[] = array( |
930 |
"title" => "<hr/>", |
931 |
"right" => array( |
932 |
"evenement", "evenement_tab", |
933 |
), |
934 |
); |
935 |
// |
936 |
$links[] = array( |
937 |
"href" => "../scr/tab.php?obj=evenement", |
938 |
"class" => "evenement", |
939 |
"title" => _("evenement"), |
940 |
"right" => array("evenement", "evenement_tab", ), |
941 |
"open" => array("tab.php|evenement", "form.php|evenement", ), |
942 |
); |
943 |
// |
944 |
$links[] = array( |
945 |
"title" => "<hr/>", |
946 |
"right" => array( |
947 |
"action", "action_tab", "etat", |
948 |
"etat_tab", "avis_decision", |
949 |
"avis_decision_tab", |
950 |
), |
951 |
); |
952 |
// |
953 |
$links[] = array( |
954 |
"href" => "../scr/tab.php?obj=etat", |
955 |
"class" => "workflow-etat", |
956 |
"title" => _("etat"), |
957 |
"right" => array("etat", "etat_tab", ), |
958 |
"open" => array("tab.php|etat", "form.php|etat", ), |
959 |
); |
960 |
// |
961 |
$links[] = array( |
962 |
"href" => "../scr/tab.php?obj=avis_decision", |
963 |
"class" => "avis_decision", |
964 |
"title" => _("avis decision"), |
965 |
"right" => array("avis_decision", "avis_decision_tab", ), |
966 |
"open" => array("tab.php|avis_decision", "form.php|avis_decision", ), |
967 |
); |
968 |
// |
969 |
$links[] = array( |
970 |
"href" => "../scr/tab.php?obj=action", |
971 |
"class" => "action", |
972 |
"title" => _("action"), |
973 |
"right" => array("action", "action_tab", ), |
974 |
"open" => array("tab.php|action", "form.php|action", ), |
975 |
); |
976 |
// |
977 |
$links[] = array( |
978 |
"title" => "<hr/>", |
979 |
"right" => array( |
980 |
"bible", "bible_tab", |
981 |
), |
982 |
); |
983 |
// |
984 |
$links[] = array( |
985 |
"href" => "../scr/tab.php?obj=bible", |
986 |
"class" => "bible", |
987 |
"title" => _("bible"), |
988 |
"right" => array("bible", "bible_tab", ), |
989 |
"open" => array("tab.php|bible", "form.php|bible", ), |
990 |
); |
991 |
// |
992 |
$links[] = array( |
993 |
"class" => "category", |
994 |
"title" => _("editions"), |
995 |
"right" => array( |
996 |
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
997 |
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
998 |
"om_logo", "om_logo_tab", |
999 |
), |
1000 |
); |
1001 |
// |
1002 |
$links[] = array( |
1003 |
"title" => "<hr/>", |
1004 |
"right" => array( |
1005 |
"om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab", |
1006 |
), |
1007 |
); |
1008 |
// |
1009 |
$links[] = array( |
1010 |
"href" => "../scr/tab.php?obj=om_etat", |
1011 |
"class" => "om_etat", |
1012 |
"title" => _("om_etat"), |
1013 |
"right" => array("om_etat", "om_etat_tab", ), |
1014 |
"open" => array("tab.php|om_etat", "form.php|om_etat", ), |
1015 |
); |
1016 |
// |
1017 |
$links[] = array( |
1018 |
"href" => "../scr/tab.php?obj=om_lettretype", |
1019 |
"class" => "om_lettretype", |
1020 |
"title" => _("om_lettretype"), |
1021 |
"right" => array("om_lettretype", "om_lettretype_tab"), |
1022 |
"open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ), |
1023 |
); |
1024 |
// |
1025 |
$links[] = array( |
1026 |
"title" => "<hr/>", |
1027 |
"right" => array( |
1028 |
"om_logo", "om_logo_tab", |
1029 |
), |
1030 |
); |
1031 |
// |
1032 |
$links[] = array( |
1033 |
"href" => "../scr/tab.php?obj=om_logo", |
1034 |
"class" => "om_logo", |
1035 |
"title" => _("om_logo"), |
1036 |
"right" => array("om_logo", "om_logo_tab", ), |
1037 |
"open" => array("tab.php|om_logo", "form.php|om_logo", ), |
1038 |
); |
1039 |
// |
1040 |
$rubrik['links'] = $links; |
1041 |
// |
1042 |
$menu[] = $rubrik; |
1043 |
// }}} |
1044 |
|
1045 |
// {{{ Rubrique PARAMETRAGE |
1046 |
// |
1047 |
$rubrik = array( |
1048 |
"title" => _("parametrage"), |
1049 |
"class" => "parametrage", |
1050 |
"right" => "menu_parametrage", |
1051 |
); |
1052 |
// |
1053 |
$links = array(); |
1054 |
// |
1055 |
$links[] = array( |
1056 |
"href" => "../scr/tab.php?obj=civilite", |
1057 |
"class" => "civilite", |
1058 |
"title" => _("civilite"), |
1059 |
"right" => array("civilite", "civilite_tab", ), |
1060 |
"open" => array("tab.php|civilite", "form.php|civilite", ), |
1061 |
); |
1062 |
// |
1063 |
$links[] = array( |
1064 |
"href" => "../scr/tab.php?obj=arrondissement", |
1065 |
"class" => "arrondissement", |
1066 |
"title" => _("arrondissement"), |
1067 |
"right" => array("arrondissement", "arrondissement_tab", ), |
1068 |
"open" => array("tab.php|arrondissement", "form.php|arrondissement", ), |
1069 |
); |
1070 |
// |
1071 |
$links[] = array( |
1072 |
"href" => "../scr/tab.php?obj=quartier", |
1073 |
"class" => "quartier", |
1074 |
"title" => _("quartier"), |
1075 |
"right" => array("quartier", "quartier_tab", ), |
1076 |
"open" => array("tab.php|quartier", "form.php|quartier", ), |
1077 |
); |
1078 |
// |
1079 |
$links[] = array( |
1080 |
"class" => "category", |
1081 |
"title" => _("Organisation"), |
1082 |
"right" => array( |
1083 |
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1084 |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1085 |
"signataire_arrete", "signataire_arrete_tab", |
1086 |
), |
1087 |
); |
1088 |
$links[] = array( |
1089 |
"title" => "<hr/>", |
1090 |
"right" => array( |
1091 |
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1092 |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1093 |
"signataire_arrete", "signataire_arrete_tab", |
1094 |
), |
1095 |
); |
1096 |
// |
1097 |
$links[] = array( |
1098 |
"href" => "../scr/tab.php?obj=genre", |
1099 |
"class" => "genre", |
1100 |
"title" => _("genre"), |
1101 |
"right" => array("genre", "genre_tab", ), |
1102 |
"open" => array("tab.php|genre", "form.php|genre", ), |
1103 |
); |
1104 |
// |
1105 |
$links[] = array( |
1106 |
"href" => "../scr/tab.php?obj=groupe", |
1107 |
"class" => "groupe", |
1108 |
"title" => _("groupe"), |
1109 |
"right" => array("groupe", "groupe_tab", ), |
1110 |
"open" => array("tab.php|groupe", "form.php|groupe", ), |
1111 |
); |
1112 |
// |
1113 |
$links[] = array( |
1114 |
"href" => "../scr/tab.php?obj=direction", |
1115 |
"class" => "direction", |
1116 |
"title" => _("direction"), |
1117 |
"right" => array("direction", "direction_tab", ), |
1118 |
"open" => array("tab.php|direction", "form.php|direction", ), |
1119 |
); |
1120 |
// |
1121 |
$links[] = array( |
1122 |
"href" => "../scr/tab.php?obj=division", |
1123 |
"class" => "division", |
1124 |
"title" => _("division"), |
1125 |
"right" => array("division", "division_tab", ), |
1126 |
"open" => array("tab.php|division", "form.php|division", ), |
1127 |
); |
1128 |
// |
1129 |
$links[] = array( |
1130 |
"href" => "../scr/tab.php?obj=instructeur", |
1131 |
"class" => "instructeur", |
1132 |
"title" => _("instructeur"), |
1133 |
"right" => array("instructeur", "instructeur_tab", ), |
1134 |
"open" => array("tab.php|instructeur", "form.php|instructeur", ), |
1135 |
); |
1136 |
// |
1137 |
$links[] = array( |
1138 |
"href" => "../scr/tab.php?obj=signataire_arrete", |
1139 |
"class" => "signataire_arrete", |
1140 |
"title" => _("signataire arrete"), |
1141 |
"right" => array("signataire_arrete", "signataire_arrete", ), |
1142 |
"open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ), |
1143 |
); |
1144 |
// |
1145 |
$links[] = array( |
1146 |
"class" => "category", |
1147 |
"title" => _("gestion des commissions"), |
1148 |
"right" => array( |
1149 |
"comission_type", "comission_type_tab", |
1150 |
), |
1151 |
); |
1152 |
// |
1153 |
$links[] = array( |
1154 |
"title" => "<hr/>", |
1155 |
"right" => array( |
1156 |
"comission_type", "comission_type_tab", |
1157 |
), |
1158 |
); |
1159 |
// |
1160 |
$links[] = array( |
1161 |
"href" => "../scr/tab.php?obj=commission_type", |
1162 |
"class" => "commission-type", |
1163 |
"title" => _("commission_type"), |
1164 |
"right" => array("commission_type", "commission_type_tab", ), |
1165 |
"open" => array("tab.php|commission_type", "form.php|commission_type", ), |
1166 |
); |
1167 |
// |
1168 |
$links[] = array( |
1169 |
"class" => "category", |
1170 |
"title" => _("gestion des consultations"), |
1171 |
"right" => array( |
1172 |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1173 |
"service_categorie", "service_categorie_tab", |
1174 |
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1175 |
), |
1176 |
); |
1177 |
// |
1178 |
$links[] = array( |
1179 |
"title" => "<hr/>", |
1180 |
"right" => array( |
1181 |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1182 |
"service_categorie", "service_categorie_tab", |
1183 |
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1184 |
), |
1185 |
); |
1186 |
// |
1187 |
$links[] = array( |
1188 |
"href" => "../scr/tab.php?obj=avis_consultation", |
1189 |
"class" => "avis_consultation", |
1190 |
"title" => _("avis consultation"), |
1191 |
"right" => array("avis_consultation", "avis_consultation_tab", ), |
1192 |
"open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ), |
1193 |
); |
1194 |
// |
1195 |
$links[] = array( |
1196 |
"href" => "../scr/tab.php?obj=service", |
1197 |
"class" => "service", |
1198 |
"title" => _("service"), |
1199 |
"right" => array("service", "service_tab", ), |
1200 |
"open" => array("tab.php|service", "form.php|service", ), |
1201 |
); |
1202 |
$links[] = array( |
1203 |
"href" => "../scr/tab.php?obj=service_categorie", |
1204 |
"class" => "service_categorie", |
1205 |
"title" => _("thematique des services"), |
1206 |
"right" => array("service_categorie", "service_categorie_tab", ), |
1207 |
"open" => array("tab.php|service_categorie", "form.php|service_categorie", ), |
1208 |
); |
1209 |
$links[] = array( |
1210 |
"href" => "../scr/tab.php?obj=lien_service_service_categorie", |
1211 |
"class" => "lien_service_service_categorie", |
1212 |
"title" => _("Lien service / thematique"), |
1213 |
"right" => array("lien_service_service_categorie", "lien_service_service_categorie_tab", ), |
1214 |
"open" => array("tab.php|lien_service_service_categorie", "form.php|lien_service_service_categorie", ), |
1215 |
); |
1216 |
// |
1217 |
$links[] = array( |
1218 |
"class" => "category", |
1219 |
"title" => _("Gestion des dossiers"), |
1220 |
"right" => array( |
1221 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1222 |
"dossier_autorisation_type_detaille", |
1223 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1224 |
"dossier_instruction_type_tab", |
1225 |
"autorite_competente", "autorite_competente_tab", |
1226 |
"affectation_automatique", "affectation_automatique_tab", |
1227 |
), |
1228 |
); |
1229 |
// |
1230 |
$links[] = array( |
1231 |
"title" => "<hr/>", |
1232 |
"right" => array( |
1233 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1234 |
"dossier_autorisation_type_detaille", |
1235 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1236 |
"dossier_instruction_type_tab", |
1237 |
"autorite_competente", "autorite_competente_tab", |
1238 |
"affectation_automatique", "affectation_automatique_tab", |
1239 |
|
1240 |
), |
1241 |
); |
1242 |
// |
1243 |
$links[] = array( |
1244 |
"href" => "../scr/tab.php?obj=etat_dossier_autorisation", |
1245 |
"class" => "etat_dossier_autorisation", |
1246 |
"title" => _("etat dossiers autorisations"), |
1247 |
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
1248 |
"open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ), |
1249 |
); |
1250 |
// |
1251 |
$links[] = array( |
1252 |
"href" => "../scr/tab.php?obj=affectation_automatique", |
1253 |
"class" => "affectation_automatique", |
1254 |
"title" => _("affectation automatique"), |
1255 |
"right" => array("affectation_automatique", "affectation_automatique_tab", ), |
1256 |
"open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ), |
1257 |
); |
1258 |
// |
1259 |
$links[] = array( |
1260 |
"href" => "../scr/tab.php?obj=autorite_competente", |
1261 |
"class" => "autorite_competente", |
1262 |
"title" => _("autorite")." "._("competente"), |
1263 |
"right" => array("autorite_competente", "autorite_competente_tab", ), |
1264 |
"open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ), |
1265 |
); |
1266 |
|
1267 |
// |
1268 |
$rubrik['links'] = $links; |
1269 |
// |
1270 |
$menu[] = $rubrik; |
1271 |
// }}} |
1272 |
|
1273 |
// {{{ Rubrique SIG |
1274 |
// |
1275 |
$rubrik = array( |
1276 |
"title" => _("sig"), |
1277 |
"class" => "sig", |
1278 |
"right" => "menu_sig", |
1279 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1280 |
); |
1281 |
// |
1282 |
$links = array(); |
1283 |
// |
1284 |
$links[] = array( |
1285 |
"href" => "../scr/tab.php?obj=parcelle", |
1286 |
"class" => "parcelle", |
1287 |
"title" => _("parcelle"), |
1288 |
"right" => array("parcelle", "parcelle_tab"), |
1289 |
"open" => array("tab.php|parcelle", "form.php|parcelle", ), |
1290 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1291 |
); |
1292 |
// |
1293 |
$links[] = array( |
1294 |
"href" => "../scr/tab.php?obj=proprietaire", |
1295 |
"class" => "proprietaire", |
1296 |
"title" => _("proprietaire"), |
1297 |
"right" => array("proprietaire", "proprietaire_tab"), |
1298 |
"open" => array("tab.php|proprietaire", "form.php|proprietaire", ), |
1299 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1300 |
); |
1301 |
// |
1302 |
$links[] = array( |
1303 |
"class" => "category", |
1304 |
"title" => _("servitudes"), |
1305 |
"right" => array( |
1306 |
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
1307 |
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1308 |
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1309 |
), |
1310 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1311 |
); |
1312 |
// |
1313 |
$links[] = array( |
1314 |
"title" => "<hr/>", |
1315 |
"right" => array( |
1316 |
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
1317 |
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1318 |
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1319 |
), |
1320 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1321 |
); |
1322 |
// |
1323 |
$links[] = array( |
1324 |
"href" => "../scr/tab.php?obj=pos", |
1325 |
"class" => "pos", |
1326 |
"title" => _("pos"), |
1327 |
"right" => array("pos", "pos_tab"), |
1328 |
"open" => array("tab.php|pos", "form.php|pos", ), |
1329 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1330 |
); |
1331 |
// |
1332 |
$links[] = array( |
1333 |
"href" => "../scr/tab.php?obj=servitude_surfacique", |
1334 |
"class" => "servitude_surfacique", |
1335 |
"title" => _("servitude_surfacique"), |
1336 |
"right" => array("servitude_surfacique", "servitude_surfacique_tab"), |
1337 |
"open" => array( |
1338 |
"tab.php|servitude_surfacique", "form.php|servitude_surfacique", |
1339 |
), |
1340 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1341 |
); |
1342 |
// |
1343 |
$links[] = array( |
1344 |
"href" => "../scr/tab.php?obj=servitude_ligne", |
1345 |
"class" => "servitude_ligne", |
1346 |
"title" => _("servitude_ligne"), |
1347 |
"right" => array("servitude_ligne", "servitude_ligne_tab"), |
1348 |
"open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ), |
1349 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1350 |
); |
1351 |
// |
1352 |
$links[] = array( |
1353 |
"href" => "../scr/tab.php?obj=servitude_point", |
1354 |
"class" => "servitude_point", |
1355 |
"title" => _("servitude_point"), |
1356 |
"right" => array("servitude_point", "servitude_point_tab"), |
1357 |
"open" => array("tab.php|servitude_point", "form.php|servitude_point", ), |
1358 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1359 |
); |
1360 |
// |
1361 |
$links[] = array( |
1362 |
"href" => "../scr/tab.php?obj=parcelle_lot", |
1363 |
"class" => "parcelle_lot", |
1364 |
"title" => _("parcelle_lot"), |
1365 |
"right" => array("parcelle_lot", "parcelle_lot_tab"), |
1366 |
"open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ), |
1367 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1368 |
); |
1369 |
// |
1370 |
$rubrik['links'] = $links; |
1371 |
// |
1372 |
$menu[] = $rubrik; |
1373 |
// }}} |
1374 |
|
1375 |
// {{{ Rubrique ADMINISTRATION |
1376 |
// |
1377 |
$rubrik = array( |
1378 |
"title" => _("administration"), |
1379 |
"class" => "administration", |
1380 |
"right" => "menu_administration", |
1381 |
); |
1382 |
// |
1383 |
$links = array(); |
1384 |
// |
1385 |
$links[] = array( |
1386 |
"href" => "../scr/tab.php?obj=om_collectivite", |
1387 |
"class" => "collectivite", |
1388 |
"title" => _("om_collectivite"), |
1389 |
"right" => array("om_collectivite", "om_collectivite_tab", ), |
1390 |
"open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ), |
1391 |
); |
1392 |
// |
1393 |
$links[] = array( |
1394 |
"href" => "../scr/tab.php?obj=om_parametre", |
1395 |
"class" => "parametre", |
1396 |
"title" => _("om_parametre"), |
1397 |
"right" => array("om_parametre", "om_parametre_tab", ), |
1398 |
"open" => array("tab.php|om_parametre", "form.php|om_parametre", ), |
1399 |
); |
1400 |
// |
1401 |
$links[] = array( |
1402 |
"class" => "category", |
1403 |
"title" => _("gestion des utilisateurs"), |
1404 |
"right" => array( |
1405 |
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1406 |
"om_droit", "om_droit_tab", "directory", |
1407 |
), |
1408 |
); |
1409 |
// |
1410 |
$links[] = array( |
1411 |
"title" => "<hr/>", |
1412 |
"right" => array( |
1413 |
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1414 |
"om_droit", "om_droit_tab", |
1415 |
), |
1416 |
); |
1417 |
// |
1418 |
$links[] = array( |
1419 |
"href" => "../scr/tab.php?obj=om_profil", |
1420 |
"class" => "profil", |
1421 |
"title" => _("om_profil"), |
1422 |
"right" => array("om_profil", "om_profil_tab", ), |
1423 |
"open" => array("tab.php|om_profil", "form.php|om_profil", ), |
1424 |
); |
1425 |
// |
1426 |
$links[] = array( |
1427 |
"href" => "../scr/tab.php?obj=om_droit", |
1428 |
"class" => "droit", |
1429 |
"title" => _("om_droit"), |
1430 |
"right" => array("om_droit", "om_droit_tab", ), |
1431 |
"open" => array("tab.php|om_droit", "form.php|om_droit", ), |
1432 |
); |
1433 |
// |
1434 |
$links[] = array( |
1435 |
"href" => "../scr/tab.php?obj=om_utilisateur", |
1436 |
"class" => "utilisateur", |
1437 |
"title" => _("om_utilisateur"), |
1438 |
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
1439 |
"open" => array("tab.php|om_utilisateur", "form.php|om_utilisateur", ), |
1440 |
); |
1441 |
// |
1442 |
$links[] = array( |
1443 |
"title" => "<hr/>", |
1444 |
"right" => array("directory", ), |
1445 |
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1446 |
); |
1447 |
// |
1448 |
$links[] = array( |
1449 |
"href" => "../scr/directory.php", |
1450 |
"class" => "directory", |
1451 |
"title" => _("annuaire"), |
1452 |
"right" => array("directory", ), |
1453 |
"open" => array("directory.php|", ), |
1454 |
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1455 |
); |
1456 |
// |
1457 |
$links[] = array( |
1458 |
"class" => "category", |
1459 |
"title" => _("tableaux de bord"), |
1460 |
"right" => array( |
1461 |
"om_widget", "om_widget_tab", "om_dashboard", |
1462 |
), |
1463 |
); |
1464 |
// |
1465 |
$links[] = array( |
1466 |
"title" => "<hr/>", |
1467 |
"right" => array( |
1468 |
"om_widget", "om_widget_tab", "om_dashboard", |
1469 |
), |
1470 |
); |
1471 |
// |
1472 |
$links[] = array( |
1473 |
"href" => "../scr/tab.php?obj=om_widget", |
1474 |
"class" => "om_widget", |
1475 |
"title" => _("om_widget"), |
1476 |
"right" => array("om_widget", "om_widget_tab", ), |
1477 |
"open" => array("tab.php|om_widget", "form.php|om_widget", ), |
1478 |
); |
1479 |
// |
1480 |
$links[] = array( |
1481 |
"href" => "../scr/dashboard_composer.php", |
1482 |
"class" => "om_dashboard", |
1483 |
"title" => _("composition"), |
1484 |
"right" => array("om_dashboard", ), |
1485 |
"open" => array("dashboard_composer.php|", ), |
1486 |
); |
1487 |
// |
1488 |
$links[] = array( |
1489 |
"class" => "category", |
1490 |
"title" => _("sig"), |
1491 |
"right" => array( |
1492 |
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
1493 |
), |
1494 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1495 |
); |
1496 |
// |
1497 |
$links[] = array( |
1498 |
"title" => "<hr/>", |
1499 |
"right" => array( |
1500 |
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
1501 |
), |
1502 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1503 |
); |
1504 |
// |
1505 |
$links[] = array( |
1506 |
"href" => "../scr/tab.php?obj=om_sig_map", |
1507 |
"class" => "om_sig_map", |
1508 |
"title" => _("om_sig_map"), |
1509 |
"right" => array("om_sig_map", "om_sig_map_tab", ), |
1510 |
"open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ), |
1511 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1512 |
); |
1513 |
// |
1514 |
$links[] = array( |
1515 |
"href" => "../scr/tab.php?obj=om_sig_wms", |
1516 |
"class" => "om_sig_wms", |
1517 |
"title" => _("om_sig_wms"), |
1518 |
"right" => array("om_sig_wms", "om_sig_wms_tab", ), |
1519 |
"open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ), |
1520 |
"parameters" => array("option_localisation" => "sig_interne", ), |
1521 |
); |
1522 |
// |
1523 |
$links[] = array( |
1524 |
"class" => "category", |
1525 |
"title" => _("options avancees"), |
1526 |
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
1527 |
"om_sousetat", "om_sousetat_tab",), |
1528 |
); |
1529 |
// |
1530 |
$links[] = array( |
1531 |
"title" => "<hr/>", |
1532 |
"right" => array( |
1533 |
"om_sousetat", "om_sousetat_tab", |
1534 |
), |
1535 |
); |
1536 |
// |
1537 |
$links[] = array( |
1538 |
"href" => "../scr/tab.php?obj=om_sousetat", |
1539 |
"class" => "om_sousetat", |
1540 |
"title" => _("om_sousetat"), |
1541 |
"right" => array("om_sousetat", "om_sousetat_tab", ), |
1542 |
"open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ), |
1543 |
); |
1544 |
// |
1545 |
$links[] = array( |
1546 |
"title" => "<hr/>", |
1547 |
"right" => array("om_requete", "om_requete_tab", ), |
1548 |
); |
1549 |
// |
1550 |
$links[] = array( |
1551 |
"href" => "../scr/tab.php?obj=om_requete", |
1552 |
"class" => "om_requete", |
1553 |
"title" => _("om_requete"), |
1554 |
"right" => array("om_requete", "om_requete_tab", ), |
1555 |
"open" => array("tab.php|om_requete", "form.php|om_requete", ), |
1556 |
); |
1557 |
// |
1558 |
$links[] = array( |
1559 |
"title" => "<hr/>", |
1560 |
"right" => array("import", ), |
1561 |
); |
1562 |
// |
1563 |
$links[] = array( |
1564 |
"href" => "../scr/import.php", |
1565 |
"class" => "import", |
1566 |
"title" => _("Import"), |
1567 |
"right" => array("import", ), |
1568 |
"open" => array("import.php|", ), |
1569 |
); |
1570 |
// |
1571 |
$links[] = array( |
1572 |
"title" => "<hr/>", |
1573 |
"right" => array("gen", ), |
1574 |
); |
1575 |
// |
1576 |
$links[] = array( |
1577 |
"title" => _("Generateur"), |
1578 |
"href" => "../scr/gen.php", |
1579 |
"class" => "generator", |
1580 |
"right" => array("gen", ), |
1581 |
"open" => array( |
1582 |
"gen.php|","genauto.php|", "gensup.php|", "genfull.php|", |
1583 |
"genetat.php|", "gensousetat.php|", "genlettretype.php|", |
1584 |
"genimport.php|", |
1585 |
), |
1586 |
); |
1587 |
// |
1588 |
$rubrik['links'] = $links; |
1589 |
// |
1590 |
$menu[] = $rubrik; |
1591 |
// }}} |
1592 |
|
1593 |
?> |