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