4 |
* dans le menu. |
* dans le menu. |
5 |
* |
* |
6 |
* @package openmairie_exemple |
* @package openmairie_exemple |
7 |
* @version SVN : $Id: menu.inc.php 324 2010-12-06 16:06:21Z fraynaud $ |
* @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(); |
$menu = array(); |
50 |
|
|
51 |
// {{{ Rubrique AUTORISATION |
// {{{ Rubrique AUTORISATION |
52 |
// |
// |
53 |
$rubrik = array( |
$rubrik = array( |
54 |
"title" => _("autorisation"), |
"title" => _("Autorisation"), |
55 |
"class" => "autorisation", |
"class" => "autorisation", |
56 |
"right" => "menu_autorisation", |
"right" => "menu_autorisation", |
57 |
); |
); |
58 |
// |
// |
59 |
$links = array(); |
$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; |
$rubrik['links'] = $links; |
80 |
// |
// |
92 |
$links = array(); |
$links = array(); |
93 |
// |
// |
94 |
$links[] = array( |
$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", |
"class" => "category", |
104 |
"title" => _("demandes"), |
"title" => _("nouvelle demande"), |
105 |
"right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab", |
"right" => array( |
106 |
"demande_dossier_existant","demande_dossier_existant_tab",), |
"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( |
$links[] = array( |
113 |
"title" => "<hr/>", |
"title" => "<hr/>", |
114 |
"right" => array("demande_nouveau_dossier","demande_nouveau_dossier_tab", |
"right" => array( |
115 |
"demande_dossier_existant","demande_dossier_existant_tab", |
"demande_dossier_encours_ajouter", |
116 |
"demande_recepisse_demande","demande_recepisse_demande_tab",), |
"demande_dossier_encours_ajouter", "demande_dossier_encours_tab", |
117 |
|
), |
118 |
); |
); |
119 |
$links[] = array( |
$links[] = array( |
120 |
"href" => "../scr/form.php?obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
"href" => "../scr/form.php?obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
121 |
"class" => "demande", |
"class" => "nouveau-dossier", |
122 |
"title" => _("nouveau dossier"), |
"title" => _("nouveau dossier"), |
123 |
"right" => array("demande_nouveau_dossier", "demande_nouveau_dossier_tab", ), |
"right" => array( |
124 |
|
"demande_nouveau_dossier_ajouter", |
125 |
|
), |
126 |
"open" => array("form.php|demande_nouveau_dossier",), |
"open" => array("form.php|demande_nouveau_dossier",), |
127 |
); |
); |
128 |
$links[] = array( |
$links[] = array( |
129 |
"href" => "../scr/tab.php?obj=demande_dossier_existant", |
"href" => "../scr/tab.php?obj=demande_dossier_encours", |
130 |
"class" => "demande_dossier_existant", |
"class" => "dossier-existant", |
131 |
"title" => _("dossier existant"), |
"title" => _("dossier en cours"), |
132 |
"right" => array("demande_dossier_existant", "demande_dossier_existant_tab", ), |
"right" => array( |
133 |
"open" => array("tab.php|demande_dossier_existant", "form.php|demande_dossier_existant"), |
"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( |
$links[] = array( |
138 |
"href" => "../scr/tab.php?obj=demande", |
"href" => "../scr/tab.php?obj=demande_autre_dossier", |
139 |
"class" => "demande", |
"class" => "autre-dossier", |
140 |
"title" => _("recepisse de demande"), |
"title" => _("autre dossier"), |
141 |
"right" => array("demande_recepisse_demande", "demande_recepisse_demande_tab", ), |
"right" => array( |
142 |
"open" => array("tab.php|demande","form.php|demande"), |
"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( |
$links[] = array( |
147 |
"class" => "category", |
"title" => "<hr/>", |
148 |
"title" => _("Affichage des dossiers"), |
"right" => array( |
149 |
"right" => array("edition_reglementaire","attestation_affichage",), |
"demande_consulter", "demande_tab" |
150 |
|
), |
151 |
); |
); |
152 |
$links[] = array( |
$links[] = array( |
153 |
"title" => "<hr/>", |
"href" => "../scr/tab.php?obj=demande", |
154 |
"right" => array("edition", "attestation_affichage"), |
"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( |
$links[] = array( |
162 |
"href" => "../app/edition_reglementaire.php", |
"title" => "<hr/>", |
163 |
"class" => "edition", |
"right" => array( |
164 |
"title" => _("edition reglementaire"), |
"petitionnaire_frequent_consulter", "petitionnaire_frequent_tab" |
165 |
"right" => "edition_reglementaire", |
), |
|
"open" => "edition_reglementaire.php|", |
|
166 |
); |
); |
167 |
$links[] = array( |
$links[] = array( |
168 |
"href" => "../app/attestation_affichage.php", |
"href" => "../scr/tab.php?obj=petitionnaire_frequent", |
169 |
"class" => "attestation_affichage", |
"class" => "petitionnaire_frequent", |
170 |
"title" => _("attestation d'affichage"), |
"title" => _("petitionnaire_frequent"), |
171 |
"right" => "attestation_affichage", |
"right" => array( |
172 |
"open" => "attestation_affichage.php|", |
"petitionnaire_frequent_consulter", "petitionnaire_frequent_tab" |
173 |
|
), |
174 |
|
"open" => array("tab.php|petitionnaire_frequent","form.php|petitionnaire_frequent"), |
175 |
); |
); |
176 |
// |
// |
177 |
/*$links[] = array( |
$links[] = array( |
178 |
"class" => "category", |
"class" => "category", |
179 |
"title" => _("Qualification"), |
"title" => _("affichage reglementaire"), |
180 |
"right" => array("qualification"), |
"right" => array( |
181 |
|
"affichage_reglementaire_registre", |
182 |
|
"affichage_reglementaire_attestation", |
183 |
|
), |
184 |
); |
); |
185 |
$links[] = array( |
$links[] = array( |
186 |
"title" => "<hr/>", |
"title" => "<hr/>", |
187 |
"right" => array("qualification"), |
"right" => array( |
188 |
|
"affichage_reglementaire_registre", |
189 |
|
"affichage_reglementaire_attestation", |
190 |
|
), |
191 |
); |
); |
192 |
$links[] = array( |
$links[] = array( |
193 |
"href" => "../scr/tab.php?obj=dossier", |
"href" => "../app/affichage_reglementaire_registre.php", |
194 |
"class" => "qualification", |
"class" => "edition", |
195 |
"title" => _("A Qualifier"), |
"title" => _("registre"), |
196 |
"right" => array("qualification", "qualification_tab", ), |
"right" => array( |
197 |
"open" => array("tab.php|qualification", "form.php|qualification", ), |
"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; |
$rubrik['links'] = $links; |
212 |
// |
// |
222 |
); |
); |
223 |
// |
// |
224 |
$links = array(); |
$links = array(); |
225 |
|
// |
226 |
|
$links[] = array( |
227 |
|
"href" => "../scr/dashboard.php", |
228 |
|
"class" => "tableau-de-bord", |
229 |
|
"title" => _("tableau de bord"), |
230 |
|
"right" => "menu_instruction_dashboard", |
231 |
|
"open" => array("dashboard.php|",), |
232 |
|
); |
233 |
// Catégorie DOSSIERS D'INSTRUCTION |
// Catégorie DOSSIERS D'INSTRUCTION |
234 |
$links[] = array( |
$links[] = array( |
235 |
"class" => "category", |
"class" => "category", |
240 |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
"dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", |
241 |
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
"dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", |
242 |
"dossier_instruction", "dossier_instruction_tab", |
"dossier_instruction", "dossier_instruction_tab", |
|
"dossiers_limites", "dossiers_limites_tab", |
|
243 |
"PC_modificatif", "PC_modificatif_tab", |
"PC_modificatif", "PC_modificatif_tab", |
244 |
), |
), |
245 |
); |
); |
276 |
); |
); |
277 |
// |
// |
278 |
$links[] = array( |
$links[] = array( |
|
"title" => "<hr/>", |
|
|
"right" => array( |
|
|
"dossiers_limites", "dossiers_limites_tab", |
|
|
"dossiers_limites", "dossiers_limites_tab", |
|
|
), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
279 |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures", |
"href" => "../scr/tab.php?obj=dossier_instruction_mes_clotures", |
280 |
"class" => "dossier_instruction_mes_clotures", |
"class" => "dossier_instruction_mes_clotures", |
281 |
"title" => _("mes clotures"), |
"title" => _("mes clotures"), |
293 |
// |
// |
294 |
$links[] = array( |
$links[] = array( |
295 |
"title" => "<hr/>", |
"title" => "<hr/>", |
296 |
"right" => array("PC_modificatif", "PC_modificatif_tab", ), |
"right" => array( |
297 |
|
"dossier_instruction", "dossier_instruction_tab", |
298 |
|
), |
299 |
); |
); |
300 |
// |
// |
301 |
$links[] = array( |
$links[] = array( |
302 |
"href" => "../scr/tab.php?obj=PC_modificatif", |
"href" => "../scr/tab.php?obj=dossier_instruction", |
303 |
"class" => "traitement", |
"class" => "dossier_instruction_recherche", |
304 |
"title" => _("modificatif transfert"), |
"title" => _("recherche"), |
305 |
"right" => array("PC_modificatif", "PC_modificatif_tab", ), |
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
306 |
"open" => array("|PC_modificatif", "dossier_modificatif.php|", ), |
"open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ), |
307 |
); |
); |
308 |
// |
|
309 |
|
// Catégorier Qualification |
310 |
$links[] = array( |
$links[] = array( |
311 |
"title" => "<hr/>", |
"class" => "category", |
312 |
"right" => array( |
"title" => _("qualification"), |
313 |
"dossiers_limites", "dossiers_limites_tab", |
"right" => array("dossier_qualifier", "architecte_frequent",), |
|
), |
|
314 |
); |
); |
315 |
// |
// |
316 |
$links[] = array( |
$links[] = array( |
317 |
"href" => "../scr/tab.php?obj=dossiers_limites", |
"title" => "<hr/>", |
318 |
"class" => "dossiers_limites", |
"right" => array("dossier_qualifier", "architecte_frequent", ), |
|
"title" => _("dossiers_limites"), |
|
|
"right" => array("dossiers_limites", "dossiers_limites_tab", ), |
|
|
"open" => array("tab.php|dossiers_limites", "form.php|dossiers_limites", ), |
|
319 |
); |
); |
320 |
// |
// |
321 |
$links[] = array( |
$links[] = array( |
322 |
"title" => "<hr/>", |
"href" => "../scr/tab.php?obj=dossier_qualifier", |
323 |
"right" => array( |
"class" => "dossier_qualifier", |
324 |
"dossier_instruction", "dossier_instruction_tab", |
"title" => _("dossiers a qualifier"), |
325 |
), |
"right" => array("dossier_qualifier", "dossier_qualifier_tab", ), |
326 |
|
"open" => array("tab.php|dossier_qualifier", "form.php|dossier_qualifier", ), |
327 |
); |
); |
328 |
// |
// |
329 |
$links[] = array( |
$links[] = array( |
330 |
"href" => "../scr/tab.php?obj=dossier_instruction", |
"href" => "../scr/tab.php?obj=architecte_frequent", |
331 |
"class" => "dossier_instruction", |
"class" => "architecte_frequent", |
332 |
"title" => _("recherche"), |
"title" => _("architecte_frequent"), |
333 |
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
"right" => array("architecte_frequent", "architecte_frequent_tab", ), |
334 |
"open" => array("tab.php|dossier_instruction", "form.php|dossier_instruction", ), |
"open" => array("tab.php|architecte_frequent", "form.php|architecte_frequent", ), |
335 |
); |
); |
336 |
// Catégorie CONSULTATIONS |
// Catégorie CONSULTATIONS |
337 |
$links[] = array( |
$links[] = array( |
362 |
"class" => "category", |
"class" => "category", |
363 |
"title" => _("Messages"), |
"title" => _("Messages"), |
364 |
"right" => array("messages_mes_retours", "messages_tous_retours"), |
"right" => array("messages_mes_retours", "messages_tous_retours"), |
365 |
"parameters" => array("option_ERP" => "true", ), |
"parameters" => array("option_erp" => "true", ), |
366 |
); |
); |
367 |
// |
// |
368 |
$links[] = array( |
$links[] = array( |
369 |
"title" => "<hr/>", |
"title" => "<hr/>", |
370 |
"right" => array("messages_mes_retours", "messages_tous_retours"), |
"right" => array("messages_mes_retours", "messages_tous_retours"), |
371 |
"parameters" => array("option_ERP" => "true", ), |
"parameters" => array("option_erp" => "true", ), |
372 |
); |
); |
373 |
// |
// |
374 |
$links[] = array( |
$links[] = array( |
377 |
"title" => _("Mes messages"), |
"title" => _("Mes messages"), |
378 |
"right" => array("messages_mes_retours", "messages_mes_retours_tab", ), |
"right" => array("messages_mes_retours", "messages_mes_retours_tab", ), |
379 |
"open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ), |
"open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ), |
380 |
"parameters" => array("option_ERP" => "true", ), |
"parameters" => array("option_erp" => "true", ), |
381 |
); |
); |
382 |
// |
// |
383 |
$links[] = array( |
$links[] = array( |
386 |
"title" => _("Tous les messages"), |
"title" => _("Tous les messages"), |
387 |
"right" => array("messages_tous_retours", "messages_tous_retours_tab", ), |
"right" => array("messages_tous_retours", "messages_tous_retours_tab", ), |
388 |
"open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ), |
"open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ), |
389 |
"parameters" => array("option_ERP" => "true", ), |
"parameters" => array("option_erp" => "true", ), |
390 |
); |
); |
391 |
// Catégorie COMMISSIONS |
// Catégorie COMMISSIONS |
392 |
$links[] = array( |
$links[] = array( |
436 |
$links = array(); |
$links = array(); |
437 |
// |
// |
438 |
$links[] = array( |
$links[] = array( |
439 |
"href" => "../app/avis_code_barre.php", |
"href" => "../scr/dashboard.php", |
440 |
"class" => "avis_code_barre", |
"class" => "tableau-de-bord", |
441 |
"title" => _("Retour de consultation"), |
"title" => _("tableau de bord"), |
442 |
"right" => array("avis_code_barre", ), |
"right" => "menu_suivi_dashboard", |
443 |
"open" => array("avis_code_barre.php|", "form.php|consultation", ), |
"open" => array("dashboard.php|",), |
444 |
|
); |
445 |
|
$links[] = array( |
446 |
|
"class" => "category", |
447 |
|
"title" => _("suivi des pieces"), |
448 |
|
"right" => array( |
449 |
|
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
450 |
|
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
451 |
|
), |
452 |
|
); |
453 |
|
// |
454 |
|
$links[] = array( |
455 |
|
"title" => "<hr/>", |
456 |
|
"right" => array( |
457 |
|
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
458 |
|
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
459 |
|
), |
460 |
|
); |
461 |
|
// |
462 |
|
$links[] = array( |
463 |
|
"href" => "../app/suivi_retours_de_consultation.php", |
464 |
|
"class" => "consultation-retour", |
465 |
|
"title" => _("retours de consultation"), |
466 |
|
"right" => array( |
467 |
|
"suivi_retours_de_consultation", |
468 |
|
), |
469 |
|
"open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ), |
470 |
|
); |
471 |
|
// |
472 |
|
$links[] = array( |
473 |
|
"title" => "<hr/>", |
474 |
|
"right" => array( |
475 |
|
"suivi_mise_a_jour_des_dates", |
476 |
|
), |
477 |
|
); |
478 |
|
// |
479 |
|
$links[] = array( |
480 |
|
"href" => "../app/suivi_mise_a_jour_des_dates.php", |
481 |
|
"class" => "suivi_mise_a_jour_des_dates", |
482 |
|
"title" => _("Mise a jour des dates"), |
483 |
|
"right" => array("suivi_mise_a_jour_des_dates", ), |
484 |
|
"open" => array("suivi_mise_a_jour_des_dates.php|"), |
485 |
|
); |
486 |
|
// |
487 |
|
$links[] = array( |
488 |
|
"title" => "<hr/>", |
489 |
|
"right" => array( |
490 |
|
"suivi_envoi_lettre_rar", |
491 |
|
), |
492 |
|
); |
493 |
|
// |
494 |
|
$links[] = array( |
495 |
|
"href" => "../app/suivi_envoi_lettre_rar.php", |
496 |
|
"class" => "edition", |
497 |
|
"title" => _("envoi lettre RAR"), |
498 |
|
"right" => array("suivi_envoi_lettre_rar", ), |
499 |
|
"open" => array("suivi_envoi_lettre_rar.php|"), |
500 |
|
); |
501 |
|
// |
502 |
|
$links[] = array( |
503 |
|
"title" => "<hr/>", |
504 |
|
"right" => array( |
505 |
|
"suivi_bordereaux", |
506 |
|
), |
507 |
|
); |
508 |
|
// |
509 |
|
$links[] = array( |
510 |
|
"href" => "../app/suivi_bordereaux.php", |
511 |
|
"class" => "edition", |
512 |
|
"title" => _("Bordereaux"), |
513 |
|
"right" => array("suivi_bordereaux", ), |
514 |
|
"open" => array("suivi_bordereaux.php|"), |
515 |
|
); |
516 |
|
// |
517 |
|
$links[] = array( |
518 |
|
"class" => "category", |
519 |
|
"title" => _("Demandes d'avis"), |
520 |
|
"right" => array( |
521 |
|
"demandes_avis_mise_a_jour_des_dates", |
522 |
|
), |
523 |
|
); |
524 |
|
// |
525 |
|
$links[] = array( |
526 |
|
"href" => "../app/demandes_avis_mise_a_jour_des_dates.php", |
527 |
|
"class" => "demandes_avis_mise_a_jour_des_dates", |
528 |
|
"title" => _("Mise a jour des dates"), |
529 |
|
"right" => array("demandes_avis_mise_a_jour_des_dates", ), |
530 |
|
"open" => array("demandes_avis_mise_a_jour_des_dates.php|"), |
531 |
|
); |
532 |
|
// |
533 |
|
// Catégorie COMMISSIONS |
534 |
|
$links[] = array( |
535 |
|
"class" => "category", |
536 |
|
"title" => _("commissions"), |
537 |
|
"right" => array( |
538 |
|
"commission", "commission_tab", |
539 |
|
"commission_demandes_passage", "commission_demandes_passage_tab", |
540 |
|
), |
541 |
|
); |
542 |
|
// |
543 |
|
$links[] = array( |
544 |
|
"title" => "<hr/>", |
545 |
|
"right" => array( |
546 |
|
"commission", "commission_tab", |
547 |
|
"commission_demandes_passage", "commission_demandes_passage_tab", |
548 |
|
), |
549 |
|
); |
550 |
|
// |
551 |
|
$links[] = array( |
552 |
|
"href" => "../scr/tab.php?obj=commission", |
553 |
|
"class" => "commissions", |
554 |
|
"title" => _("gestion"), |
555 |
|
"right" => array("commission", ), |
556 |
|
"open" => array("tab.php|commission", "form.php|commission", ), |
557 |
|
); |
558 |
|
// |
559 |
|
$links[] = array( |
560 |
|
"href" => "../scr/tab.php?obj=commission_demandes_passage", |
561 |
|
"class" => "commissions-demande-passage", |
562 |
|
"title" => _("demandes"), |
563 |
|
"right" => array("commission_demandes_passage", ), |
564 |
|
"open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ), |
565 |
); |
); |
566 |
// |
// |
567 |
$rubrik['links'] = $links; |
$rubrik['links'] = $links; |
580 |
$links = array(); |
$links = array(); |
581 |
// |
// |
582 |
$links[] = array( |
$links[] = array( |
583 |
|
"href" => "../scr/dashboard.php", |
584 |
|
"class" => "tableau-de-bord", |
585 |
|
"title" => _("tableau de bord"), |
586 |
|
"right" => "menu_demande_avis_dashboard", |
587 |
|
"open" => array("dashboard.php|",), |
588 |
|
); |
589 |
|
// |
590 |
|
$links[] = array( |
591 |
|
"title" => "<hr/>", |
592 |
|
"right" => array( |
593 |
|
"demande_avis_encours", "demande_avis_encours_tab", |
594 |
|
"demande_avis_passee", "demande_avis_passee_tab", |
595 |
|
"demande_avis", "demande_avis_tab", |
596 |
|
), |
597 |
|
); |
598 |
|
// |
599 |
|
$links[] = array( |
600 |
"href" => "../scr/tab.php?obj=demande_avis_encours", |
"href" => "../scr/tab.php?obj=demande_avis_encours", |
601 |
"class" => "demande_avis_encours", |
"class" => "demande_avis_encours", |
602 |
"title" => _("Demandes en cours"), |
"title" => _("Demandes en cours"), |
627 |
// }}} |
// }}} |
628 |
|
|
629 |
|
|
630 |
|
// Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle |
631 |
|
// dans cette version |
632 |
// {{{ Rubrique EXPORT |
// {{{ Rubrique EXPORT |
633 |
// |
// |
634 |
$rubrik = array( |
$rubrik = array( |
635 |
"title" => _("export"), |
"title" => _("export / import"), |
636 |
"class" => "edition", |
"class" => "edition", |
637 |
"right" => "menu_export", |
"right" => "menu_export", |
638 |
); |
); |
639 |
// |
// |
640 |
$links = array(); |
$links = array(); |
641 |
// |
// // |
642 |
$links[] = array( |
// $links[] = array( |
643 |
"href" => "../scr/edition.php", |
// "href" => "../scr/edition.php", |
644 |
"class" => "edition", |
// "class" => "edition", |
645 |
"title" => _("edition"), |
// "title" => _("edition"), |
646 |
"right" => "edition", |
// "right" => "edition", |
647 |
"open" => "edition.php|", |
// "open" => "edition.php|", |
648 |
|
// ); |
649 |
|
// // |
650 |
|
// $links[] = array( |
651 |
|
// "href" => "../app/edition_p.php", |
652 |
|
// "class" => "edition", |
653 |
|
// "title" => _("edition date depot"), |
654 |
|
// "right" => "edition_p", |
655 |
|
// "open" => "edition_p.php|", |
656 |
|
// ); |
657 |
|
// // |
658 |
|
// $links[] = array( |
659 |
|
// "href" => "../app/edition_d.php", |
660 |
|
// "class" => "edition", |
661 |
|
// "title" => _("edition date decision"), |
662 |
|
// "right" => "edition_d", |
663 |
|
// "open" => "edition_d.php|", |
664 |
|
// ); |
665 |
|
// // |
666 |
|
// $links[] = array( |
667 |
|
// "title" => "<hr/>", |
668 |
|
// "right" => array("reqmo", "export_sitadel", ), |
669 |
|
// ); |
670 |
|
// // |
671 |
|
// $links[] = array( |
672 |
|
// "href" => "../scr/reqmo.php", |
673 |
|
// "class" => "reqmo", |
674 |
|
// "title" => _("requetes memorisees"), |
675 |
|
// "right" => "reqmo", |
676 |
|
// "open" => array("reqmo.php|", "requeteur.php|", ), |
677 |
|
// ); |
678 |
|
// |
679 |
|
$links[] = array( |
680 |
|
"href" => "../app/sitadel.php", |
681 |
|
"class" => "reqmo", |
682 |
|
"title" => _("export sitadel"), |
683 |
|
"right" => "export_sitadel", |
684 |
|
"open" => "sitadel.php|", |
685 |
); |
); |
686 |
// |
// |
687 |
$links[] = array( |
$links[] = array( |
688 |
"href" => "../app/edition_p.php", |
"href" => "../app/versement_archives.php", |
689 |
"class" => "edition", |
"class" => "versement_archives", |
690 |
"title" => _("edition date depot"), |
"title" => _("versement aux archives"), |
691 |
"right" => "edition_p", |
"right" => "versement_archives", |
692 |
"open" => "edition_p.php|", |
"open" => "versement_archives.php|", |
693 |
); |
); |
694 |
// |
// |
695 |
$links[] = array( |
$links[] = array( |
696 |
"href" => "../app/edition_d.php", |
"href" => "../app/reqmo_pilot.php", |
697 |
"class" => "edition", |
"class" => "reqmo", |
698 |
"title" => _("edition date decision"), |
"title" => _("statistiques a la demande"), |
699 |
"right" => "edition_d", |
"right" => "reqmo_pilot", |
700 |
"open" => "edition_d.php|", |
"open" => "reqmo_pilot.php|", |
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"title" => "<hr/>", |
|
|
"right" => array("reqmo", "export_pc", "export_dp", "export_sitadel", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/reqmo.php", |
|
|
"class" => "reqmo", |
|
|
"title" => _("requetes memorisees"), |
|
|
"right" => "reqmo", |
|
|
"open" => array("reqmo.php|", "requeteur.php|", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../app/export_pc.php", |
|
|
"class" => "reqmo", |
|
|
"title" => _("export PC Lascot"), |
|
|
"right" => "export_pc", |
|
|
"open" => "export_pc.php|", |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../app/export_dp.php", |
|
|
"class" => "reqmo", |
|
|
"title" => _("export DP Lascot"), |
|
|
"right" => "export_dp", |
|
|
"open" => "export_dp.php|", |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../app/sitadel.php", |
|
|
"class" => "reqmo", |
|
|
"title" => _("export sitadel")." 2", |
|
|
"right" => "export_sitadel", |
|
|
"open" => "sitadel.php|", |
|
701 |
); |
); |
702 |
// |
// |
703 |
$rubrik['links'] = $links; |
$rubrik['links'] = $links; |
705 |
$menu[] = $rubrik; |
$menu[] = $rubrik; |
706 |
// }}} |
// }}} |
707 |
|
|
708 |
|
|
709 |
// {{{ Rubrique PARAMETRAGE |
// {{{ Rubrique PARAMETRAGE |
710 |
// |
// |
711 |
$rubrik = array( |
$rubrik = array( |
712 |
"title" => _("parametrage"), |
"title" => _("parametrage dossiers"), |
713 |
"class" => "parametrage", |
"class" => "parametrage", |
714 |
"right" => "menu_parametrage", |
"right" => "menu_parametrage", |
715 |
); |
); |
716 |
// |
// |
717 |
$links = array(); |
$links = array(); |
718 |
// |
// |
|
// GENERAUX |
|
719 |
$links[] = array( |
$links[] = array( |
720 |
"href" => "../scr/form.php?obj=dossier_numeromanuel", |
"class" => "category", |
721 |
"class" => "traitement", |
"title" => _("dossiers"), |
722 |
"title" => _("numero manuel"), |
"right" => array( |
723 |
"right" => "dossier_numeromanuel", |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
724 |
"open" => "|dossier_numeromanuel", |
"dossier_autorisation_type_detaille", |
725 |
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
726 |
|
"dossier_instruction_type_tab", "cerfa", "cerfa_tab", |
727 |
|
), |
728 |
); |
); |
729 |
// |
// |
730 |
$links[] = array( |
$links[] = array( |
731 |
"href" => "../app/num_dossier.php", |
"title" => "<hr/>", |
732 |
"class" => "traitement", |
"right" => array( |
733 |
"title" => _("remise a 0"), |
"cerfa", "cerfa_tab", |
734 |
"right" => "num_dossier", |
), |
735 |
"open" => "num_dossier.php|", |
); |
736 |
|
// |
737 |
|
$links[] = array( |
738 |
|
"href" => "../scr/tab.php?obj=cerfa", |
739 |
|
"class" => "cerfa", |
740 |
|
"title" => _("cerfa"), |
741 |
|
"right" => array("cerfa", "cerfa_tab", ), |
742 |
|
"open" => array("tab.php|cerfa", "form.php|cerfa", ), |
743 |
); |
); |
744 |
// |
// |
745 |
$links[] = array( |
$links[] = array( |
746 |
"title" => "<hr/>", |
"title" => "<hr/>", |
747 |
"right" => array( |
"right" => array( |
748 |
"architecte", "architecte_tab", |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
749 |
"travaux", "travaux_tab", "categorie_demandeur", "categorie_demandeur_tab", |
"dossier_autorisation_type_detaille", |
750 |
"destination", "destination_tab", "nature", "nature_tab", "rivoli", |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
751 |
"rivoli_tab", "civilite", "civilite_tab", "parametre", "parametre_tab", |
"dossier_instruction_type_tab", |
752 |
), |
), |
753 |
); |
); |
754 |
// |
// |
755 |
$links[] = array( |
$links[] = array( |
756 |
"href" => "../scr/tab.php?obj=architecte", |
"href" => "../scr/tab.php?obj=dossier_autorisation_type", |
757 |
"class" => "architecte", |
"class" => "dossier_autorisation_type", |
758 |
"title" => _("architecte"), |
"title" => _("type DA"), |
759 |
"right" => array("architecte", "architecte_tab", ), |
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
760 |
"open" => array("tab.php|architecte", "form.php|architecte", ), |
"open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ), |
761 |
|
); |
762 |
|
// |
763 |
|
$links[] = array( |
764 |
|
"href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille", |
765 |
|
"class" => "dossier_autorisation_type_detaille", |
766 |
|
"title" => _("type DA detaille"), |
767 |
|
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
768 |
|
"open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ), |
769 |
); |
); |
|
|
|
770 |
// |
// |
771 |
$links[] = array( |
$links[] = array( |
772 |
"href" => "../scr/tab.php?obj=travaux", |
"href" => "../scr/tab.php?obj=dossier_instruction_type", |
773 |
"class" => "travaux", |
"class" => "dossier_instruction_type", |
774 |
"title" => _("travaux"), |
"title" => _("type DI"), |
775 |
"right" => array("travaux", "travaux_tab", ), |
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
776 |
"open" => array("tab.php|travaux", "form.php|travaux", ), |
"open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ), |
777 |
); |
); |
778 |
// |
// |
779 |
$links[] = array( |
$links[] = array( |
780 |
"href" => "../scr/tab.php?obj=categorie_demandeur", |
"title" => "<hr/>", |
781 |
"class" => "categorie_demandeur", |
"right" => array( |
782 |
"title" => _("categorie_demandeur"), |
"contrainte", "contrainte_tab", |
783 |
"right" => array("categorie_demandeur", "categorie_demandeur_tab", ), |
"contrainte_souscategorie", "contrainte_souscategorie_tab", |
784 |
"open" => array( |
"contrainte_categorie", "contrainte_categorie_tab" |
785 |
"tab.php|categorie_demandeur", "form.php|categorie_demandeur", |
), |
786 |
|
"parameters" => array( |
787 |
|
"option_sig" => "sig_externe", |
788 |
|
), |
789 |
|
); |
790 |
|
$links[] = array( |
791 |
|
"title" => "<hr/>", |
792 |
|
"right" => array( |
793 |
|
"contrainte", "contrainte_tab", |
794 |
|
"contrainte_souscategorie", "contrainte_souscategorie_tab", |
795 |
|
"contrainte_categorie", "contrainte_categorie_tab" |
796 |
|
), |
797 |
|
"parameters" => array( |
798 |
|
"option_sig" => "sig_interne", |
799 |
), |
), |
800 |
); |
); |
801 |
// |
// |
802 |
$links[] = array( |
$links[] = array( |
803 |
"href" => "../scr/tab.php?obj=destination", |
"href" => "../scr/tab.php?obj=contrainte", |
804 |
"class" => "destination", |
"class" => "contrainte", |
805 |
"title" => _("destination"), |
"title" => _("contrainte"), |
806 |
"right" => array("destination", "destination_tab", ), |
"right" => array("contrainte", "contrainte_tab", ), |
807 |
"open" => array("tab.php|destination", "form.php|destination", ), |
"open" => array("tab.php|contrainte", "form.php|contrainte", ), |
808 |
|
"parameters" => array( |
809 |
|
"option_sig" => "sig_externe", |
810 |
|
), |
811 |
|
); |
812 |
|
$links[] = array( |
813 |
|
"href" => "../scr/tab.php?obj=contrainte", |
814 |
|
"class" => "contrainte", |
815 |
|
"title" => _("contrainte"), |
816 |
|
"right" => array("contrainte", "contrainte_tab", ), |
817 |
|
"open" => array("tab.php|contrainte", "form.php|contrainte", ), |
818 |
|
"parameters" => array( |
819 |
|
"option_sig" => "sig_interne", |
820 |
|
), |
821 |
); |
); |
822 |
// |
// |
823 |
$links[] = array( |
$links[] = array( |
824 |
"href" => "../scr/tab.php?obj=nature", |
"href" => "../app/contrainte_synchronisation.php", |
825 |
"class" => "nature", |
"class" => "contrainte", |
826 |
"title" => _("nature"), |
"title" => _("synchronisation des contraintes"), |
827 |
"right" => array("nature", "nature_tab", ), |
"right" => array("contrainte", "contrainte_synchronisation", ), |
828 |
"open" => array("tab.php|nature", "form.php|nature", ), |
"open" => array("contrainte_synchronisation.php|", ), |
829 |
|
"parameters" => array( |
830 |
|
"option_sig" => "sig_externe", |
831 |
|
), |
832 |
|
); |
833 |
|
// |
834 |
|
$links[] = array( |
835 |
|
"class" => "category", |
836 |
|
"title" => _("demandes"), |
837 |
|
"right" => array( |
838 |
|
"demande_type", |
839 |
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
840 |
|
), |
841 |
); |
); |
842 |
// |
// |
843 |
$links[] = array( |
$links[] = array( |
844 |
"href" => "../scr/tab.php?obj=rivoli", |
"title" => "<hr/>", |
845 |
"class" => "rivoli", |
"right" => array( |
846 |
"title" => _("rivoli"), |
"demande_type", |
847 |
"right" => array("rivoli", "rivoli_tab", ), |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
848 |
"open" => array("tab.php|rivoli", "form.php|rivoli", ), |
), |
849 |
); |
); |
850 |
// |
// |
851 |
$links[] = array( |
$links[] = array( |
852 |
"href" => "../scr/tab.php?obj=civilite", |
"href" => "../scr/tab.php?obj=demande_nature", |
853 |
"class" => "civilite", |
"class" => "demande_nature", |
854 |
"title" => _("civilite"), |
"title" => _("nature"), |
855 |
"right" => array("civilite", "civilite_tab", ), |
"right" => array("demande_nature", "demande_nature_tab", ), |
856 |
"open" => array("tab.php|civilite", "form.php|civilite", ), |
"open" => array("tab.php|demande_nature", "form.php|demande_nature", ), |
857 |
); |
); |
858 |
// |
// |
859 |
$links[] = array( |
$links[] = array( |
860 |
"href" => "../scr/tab.php?obj=parametre", |
"href" => "../scr/tab.php?obj=demande_type", |
861 |
"class" => "parametre", |
"class" => "demande_type", |
862 |
"title" => _("parametre")." "._("statistique"), |
"title" => _("type"), |
863 |
"right" => array("parametre", "parametre_tab", ), |
"right" => array("demande_type", "demande_type_tab",), |
864 |
"open" => array("tab.php|parametre", "form.php|parametre", ), |
"open" => array("tab.php|demande_type", "form.php|demande_type", ), |
865 |
); |
); |
|
|
|
866 |
// |
// |
867 |
$links[] = array( |
$links[] = array( |
868 |
"class" => "category", |
"class" => "category", |
869 |
"title" => _("workflows"), |
"title" => _("workflows"), |
870 |
"right" => array( |
"right" => array( |
871 |
"action", "action_tab", "transition", "transition_tab", "etat", |
"workflows", |
872 |
|
"action", "action_tab", "etat", |
873 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
874 |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
875 |
), |
), |
878 |
$links[] = array( |
$links[] = array( |
879 |
"title" => "<hr/>", |
"title" => "<hr/>", |
880 |
"right" => array( |
"right" => array( |
881 |
"action", "action_tab", "transition", "transition_tab", "etat", |
"workflows", |
882 |
|
"action", "action_tab", "etat", |
883 |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
884 |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
885 |
), |
), |
886 |
); |
); |
887 |
// |
// |
888 |
$links[] = array( |
$links[] = array( |
889 |
"href" => "../scr/tab.php?obj=action", |
"href" => "../app/workflows.php", |
890 |
"class" => "action", |
"class" => "workflows", |
891 |
"title" => _("action"), |
"title" => _("workflows"), |
892 |
"right" => array("action", "action_tab", ), |
"right" => array("workflows", ), |
893 |
"open" => array("tab.php|action", "form.php|action", ), |
"open" => array("workflows.php|", ), |
894 |
); |
); |
895 |
// |
// |
896 |
$links[] = array( |
$links[] = array( |
897 |
"href" => "../scr/tab.php?obj=transition", |
"title" => "<hr/>", |
898 |
"class" => "transition", |
"right" => array( |
899 |
"title" => _("transition"), |
"evenement", "evenement_tab", |
900 |
"right" => array("transition", "transition_tab", ), |
), |
901 |
"open" => array("tab.php|transition", "form.php|transition", ), |
); |
902 |
|
// |
903 |
|
$links[] = array( |
904 |
|
"href" => "../scr/tab.php?obj=evenement", |
905 |
|
"class" => "evenement", |
906 |
|
"title" => _("evenement"), |
907 |
|
"right" => array("evenement", "evenement_tab", ), |
908 |
|
"open" => array("tab.php|evenement", "form.php|evenement", ), |
909 |
|
); |
910 |
|
// |
911 |
|
$links[] = array( |
912 |
|
"title" => "<hr/>", |
913 |
|
"right" => array( |
914 |
|
"action", "action_tab", "etat", |
915 |
|
"etat_tab", "avis_decision", |
916 |
|
"avis_decision_tab", |
917 |
|
), |
918 |
); |
); |
919 |
// |
// |
920 |
$links[] = array( |
$links[] = array( |
921 |
"href" => "../scr/tab.php?obj=etat", |
"href" => "../scr/tab.php?obj=etat", |
922 |
"class" => "etat", |
"class" => "workflow-etat", |
923 |
"title" => _("etat"), |
"title" => _("etat"), |
924 |
"right" => array("etat", "etat_tab", ), |
"right" => array("etat", "etat_tab", ), |
925 |
"open" => array("tab.php|etat", "form.php|etat", ), |
"open" => array("tab.php|etat", "form.php|etat", ), |
926 |
); |
); |
927 |
// |
// |
928 |
$links[] = array( |
$links[] = array( |
929 |
"href" => "../scr/tab.php?obj=evenement", |
"href" => "../scr/tab.php?obj=avis_decision", |
930 |
"class" => "evenement", |
"class" => "avis_decision", |
931 |
"title" => _("evenement"), |
"title" => _("avis decision"), |
932 |
"right" => array("evenement", "evenement_tab", ), |
"right" => array("avis_decision", "avis_decision_tab", ), |
933 |
"open" => array("tab.php|evenement", "form.php|evenement", ), |
"open" => array("tab.php|avis_decision", "form.php|avis_decision", ), |
934 |
|
); |
935 |
|
// |
936 |
|
$links[] = array( |
937 |
|
"href" => "../scr/tab.php?obj=action", |
938 |
|
"class" => "action", |
939 |
|
"title" => _("action"), |
940 |
|
"right" => array("action", "action_tab", ), |
941 |
|
"open" => array("tab.php|action", "form.php|action", ), |
942 |
|
); |
943 |
|
// |
944 |
|
$links[] = array( |
945 |
|
"title" => "<hr/>", |
946 |
|
"right" => array( |
947 |
|
"bible", "bible_tab", |
948 |
|
), |
949 |
); |
); |
950 |
// |
// |
951 |
$links[] = array( |
$links[] = array( |
957 |
); |
); |
958 |
// |
// |
959 |
$links[] = array( |
$links[] = array( |
960 |
"href" => "../scr/tab.php?obj=avis_decision", |
"class" => "category", |
961 |
"class" => "avis_decision", |
"title" => _("editions"), |
962 |
"title" => _("avis decision"), |
"right" => array( |
963 |
"right" => array("avis_decision", "avis_decision_tab", ), |
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
964 |
"open" => array("tab.php|avis_decision", "form.php|avis_decision", ), |
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
965 |
|
"om_logo", "om_logo_tab", |
966 |
|
), |
967 |
|
); |
968 |
|
// |
969 |
|
$links[] = array( |
970 |
|
"title" => "<hr/>", |
971 |
|
"right" => array( |
972 |
|
"om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab", |
973 |
|
), |
974 |
|
); |
975 |
|
// |
976 |
|
$links[] = array( |
977 |
|
"href" => "../scr/tab.php?obj=om_etat", |
978 |
|
"class" => "om_etat", |
979 |
|
"title" => _("om_etat"), |
980 |
|
"right" => array("om_etat", "om_etat_tab", ), |
981 |
|
"open" => array("tab.php|om_etat", "form.php|om_etat", ), |
982 |
|
); |
983 |
|
// |
984 |
|
$links[] = array( |
985 |
|
"href" => "../scr/tab.php?obj=om_lettretype", |
986 |
|
"class" => "om_lettretype", |
987 |
|
"title" => _("om_lettretype"), |
988 |
|
"right" => array("om_lettretype", "om_lettretype_tab"), |
989 |
|
"open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ), |
990 |
|
); |
991 |
|
// |
992 |
|
$links[] = array( |
993 |
|
"title" => "<hr/>", |
994 |
|
"right" => array( |
995 |
|
"om_logo", "om_logo_tab", |
996 |
|
), |
997 |
|
); |
998 |
|
// |
999 |
|
$links[] = array( |
1000 |
|
"href" => "../scr/tab.php?obj=om_logo", |
1001 |
|
"class" => "om_logo", |
1002 |
|
"title" => _("om_logo"), |
1003 |
|
"right" => array("om_logo", "om_logo_tab", ), |
1004 |
|
"open" => array("tab.php|om_logo", "form.php|om_logo", ), |
1005 |
|
); |
1006 |
|
// |
1007 |
|
$rubrik['links'] = $links; |
1008 |
|
// |
1009 |
|
$menu[] = $rubrik; |
1010 |
|
// }}} |
1011 |
|
|
1012 |
|
// {{{ Rubrique PARAMETRAGE |
1013 |
|
// |
1014 |
|
$rubrik = array( |
1015 |
|
"title" => _("parametrage"), |
1016 |
|
"class" => "parametrage", |
1017 |
|
"right" => "menu_parametrage", |
1018 |
|
); |
1019 |
|
// |
1020 |
|
$links = array(); |
1021 |
|
// |
1022 |
|
$links[] = array( |
1023 |
|
"href" => "../scr/tab.php?obj=civilite", |
1024 |
|
"class" => "civilite", |
1025 |
|
"title" => _("civilite"), |
1026 |
|
"right" => array("civilite", "civilite_tab", ), |
1027 |
|
"open" => array("tab.php|civilite", "form.php|civilite", ), |
1028 |
|
); |
1029 |
|
// |
1030 |
|
$links[] = array( |
1031 |
|
"href" => "../scr/tab.php?obj=arrondissement", |
1032 |
|
"class" => "arrondissement", |
1033 |
|
"title" => _("arrondissement"), |
1034 |
|
"right" => array("arrondissement", "arrondissement_tab", ), |
1035 |
|
"open" => array("tab.php|arrondissement", "form.php|arrondissement", ), |
1036 |
|
); |
1037 |
|
// |
1038 |
|
$links[] = array( |
1039 |
|
"href" => "../scr/tab.php?obj=quartier", |
1040 |
|
"class" => "quartier", |
1041 |
|
"title" => _("quartier"), |
1042 |
|
"right" => array("quartier", "quartier_tab", ), |
1043 |
|
"open" => array("tab.php|quartier", "form.php|quartier", ), |
1044 |
); |
); |
1045 |
// |
// |
1046 |
$links[] = array( |
$links[] = array( |
1049 |
"right" => array( |
"right" => array( |
1050 |
"direction", "direction_tab", "division", "division_tab", "instructeur", |
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1051 |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1052 |
|
"signataire_arrete", "signataire_arrete_tab", |
1053 |
), |
), |
1054 |
); |
); |
1055 |
$links[] = array( |
$links[] = array( |
1057 |
"right" => array( |
"right" => array( |
1058 |
"direction", "direction_tab", "division", "division_tab", "instructeur", |
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1059 |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1060 |
|
"signataire_arrete", "signataire_arrete_tab", |
1061 |
), |
), |
1062 |
); |
); |
1063 |
// |
// |
1102 |
); |
); |
1103 |
// |
// |
1104 |
$links[] = array( |
$links[] = array( |
1105 |
|
"href" => "../scr/tab.php?obj=signataire_arrete", |
1106 |
|
"class" => "signataire_arrete", |
1107 |
|
"title" => _("signataire arrete"), |
1108 |
|
"right" => array("signataire_arrete", "signataire_arrete", ), |
1109 |
|
"open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ), |
1110 |
|
); |
1111 |
|
// |
1112 |
|
$links[] = array( |
1113 |
"class" => "category", |
"class" => "category", |
1114 |
"title" => _("gestion des commissions"), |
"title" => _("gestion des commissions"), |
1115 |
"right" => array( |
"right" => array( |
1189 |
"dossier_autorisation_type_detaille", |
"dossier_autorisation_type_detaille", |
1190 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1191 |
"dossier_instruction_type_tab", |
"dossier_instruction_type_tab", |
|
"lien_evenement_dossier_autorisation_type", |
|
|
"lien_evenement_dossier_autorisation_type_tab", |
|
1192 |
"autorite_competente", "autorite_competente_tab", |
"autorite_competente", "autorite_competente_tab", |
1193 |
"affectation_automatique", "affectation_automatique_tab", |
"affectation_automatique", "affectation_automatique_tab", |
1194 |
), |
), |
1201 |
"dossier_autorisation_type_detaille", |
"dossier_autorisation_type_detaille", |
1202 |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1203 |
"dossier_instruction_type_tab", |
"dossier_instruction_type_tab", |
|
"lien_evenement_dossier_autorisation_type", |
|
|
"lien_evenement_dossier_autorisation_type_tab", |
|
1204 |
"autorite_competente", "autorite_competente_tab", |
"autorite_competente", "autorite_competente_tab", |
1205 |
"affectation_automatique", "affectation_automatique_tab", |
"affectation_automatique", "affectation_automatique_tab", |
1206 |
|
|
1208 |
); |
); |
1209 |
// |
// |
1210 |
$links[] = array( |
$links[] = array( |
1211 |
"href" => "../scr/tab.php?obj=dossier_autorisation_type", |
"href" => "../scr/tab.php?obj=etat_dossier_autorisation", |
1212 |
"class" => "dossier_autorisation_type", |
"class" => "etat_dossier_autorisation", |
1213 |
"title" => _("dossier")." ".("autorisation")." "._("type"), |
"title" => _("etat dossiers autorisations"), |
1214 |
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
1215 |
"open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ), |
"open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ), |
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille", |
|
|
"class" => "dossier_autorisation_type_detaille", |
|
|
"title" => _("dossier")." ".("autorisation")." "._("type")." "._("detaille"), |
|
|
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
|
|
"open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=dossier_instruction_type", |
|
|
"class" => "dossier_instruction_type", |
|
|
"title" => _("dossier")." "._("instruction")." "._("type"), |
|
|
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
|
|
"open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=lien_evenement_dossier_autorisation_type", |
|
|
"class" => "lien_evenement_dossier_autorisation_type", |
|
|
"title" => _("lien")." "._("evenement")." "._("dossier")." "._("autorisation")." "._("type"), |
|
|
"right" => array("lien_evenement_dossier_autorisation_type", "lien_evenement_dossier_autorisation_type_tab", ), |
|
|
"open" => array("tab.php|lien_evenement_dossier_autorisation_type", "form.php|lien_evenement_dossier_autorisation_type", ), |
|
1216 |
); |
); |
1217 |
// |
// |
1218 |
$links[] = array( |
$links[] = array( |
1230 |
"right" => array("autorite_competente", "autorite_competente_tab", ), |
"right" => array("autorite_competente", "autorite_competente_tab", ), |
1231 |
"open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ), |
"open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ), |
1232 |
); |
); |
|
// |
|
|
$links[] = array( |
|
|
"class" => "category", |
|
|
"title" => _("gestion du guichet unique"), |
|
|
"right" => array( |
|
|
"demande_type", |
|
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
|
|
), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"title" => "<hr/>", |
|
|
"right" => array( |
|
|
"demande_type", |
|
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
|
|
), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=demande_nature", |
|
|
"class" => "demande_nature", |
|
|
"title" => _("nature de la demande"), |
|
|
"right" => array("demande_nature", "demande_nature_tab", ), |
|
|
"open" => array("tab.php|demande_nature", "form.php|demande_nature", ), |
|
|
); |
|
1233 |
|
|
1234 |
// |
// |
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=demande_type", |
|
|
"class" => "demande_type", |
|
|
"title" => _("type de la demande"), |
|
|
"right" => array("demande_type", "demande_type_tab",), |
|
|
"open" => array("tab.php|demande_type", "form.php|demande_type", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"class" => "category", |
|
|
"title" => _("editions"), |
|
|
"right" => array( |
|
|
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
|
|
"om_lettretype", "om_lettretype_tab", |
|
|
), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"title" => "<hr/>", |
|
|
"right" => array( |
|
|
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
|
|
"om_lettretype", "om_lettretype_tab", |
|
|
), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=om_etat", |
|
|
"class" => "etat", |
|
|
"title" => _("om_etat"), |
|
|
"right" => array("om_etat", "om_etat_tab", ), |
|
|
"open" => array("tab.php|om_etat", "form.php|om_etat", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=om_sousetat", |
|
|
"class" => "sousetat", |
|
|
"title" => _("om_sousetat"), |
|
|
"right" => array("om_sousetat", "om_sousetat_tab", ), |
|
|
"open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ), |
|
|
); |
|
|
// |
|
|
$links[] = array( |
|
|
"href" => "../scr/tab.php?obj=om_lettretype", |
|
|
"class" => "lettretype", |
|
|
"title" => _("om_lettretype"), |
|
|
"right" => array("om_lettretype", "om_lettretype_tab"), |
|
|
"open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ), |
|
|
); |
|
|
// |
|
1235 |
$rubrik['links'] = $links; |
$rubrik['links'] = $links; |
1236 |
// |
// |
1237 |
$menu[] = $rubrik; |
$menu[] = $rubrik; |
1243 |
"title" => _("sig"), |
"title" => _("sig"), |
1244 |
"class" => "sig", |
"class" => "sig", |
1245 |
"right" => "menu_sig", |
"right" => "menu_sig", |
1246 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1247 |
); |
); |
1248 |
// |
// |
1249 |
$links = array(); |
$links = array(); |
1254 |
"title" => _("parcelle"), |
"title" => _("parcelle"), |
1255 |
"right" => array("parcelle", "parcelle_tab"), |
"right" => array("parcelle", "parcelle_tab"), |
1256 |
"open" => array("tab.php|parcelle", "form.php|parcelle", ), |
"open" => array("tab.php|parcelle", "form.php|parcelle", ), |
1257 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1258 |
); |
); |
1259 |
// |
// |
1260 |
$links[] = array( |
$links[] = array( |
1263 |
"title" => _("proprietaire"), |
"title" => _("proprietaire"), |
1264 |
"right" => array("proprietaire", "proprietaire_tab"), |
"right" => array("proprietaire", "proprietaire_tab"), |
1265 |
"open" => array("tab.php|proprietaire", "form.php|proprietaire", ), |
"open" => array("tab.php|proprietaire", "form.php|proprietaire", ), |
1266 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1267 |
); |
); |
1268 |
// |
// |
1269 |
$links[] = array( |
$links[] = array( |
1274 |
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1275 |
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1276 |
), |
), |
1277 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1278 |
); |
); |
1279 |
// |
// |
1280 |
$links[] = array( |
$links[] = array( |
1284 |
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1285 |
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1286 |
), |
), |
1287 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1288 |
); |
); |
1289 |
// |
// |
1290 |
$links[] = array( |
$links[] = array( |
1293 |
"title" => _("pos"), |
"title" => _("pos"), |
1294 |
"right" => array("pos", "pos_tab"), |
"right" => array("pos", "pos_tab"), |
1295 |
"open" => array("tab.php|pos", "form.php|pos", ), |
"open" => array("tab.php|pos", "form.php|pos", ), |
1296 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1297 |
); |
); |
1298 |
// |
// |
1299 |
$links[] = array( |
$links[] = array( |
1304 |
"open" => array( |
"open" => array( |
1305 |
"tab.php|servitude_surfacique", "form.php|servitude_surfacique", |
"tab.php|servitude_surfacique", "form.php|servitude_surfacique", |
1306 |
), |
), |
1307 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1308 |
); |
); |
1309 |
// |
// |
1310 |
$links[] = array( |
$links[] = array( |
1313 |
"title" => _("servitude_ligne"), |
"title" => _("servitude_ligne"), |
1314 |
"right" => array("servitude_ligne", "servitude_ligne_tab"), |
"right" => array("servitude_ligne", "servitude_ligne_tab"), |
1315 |
"open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ), |
"open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ), |
1316 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1317 |
); |
); |
1318 |
// |
// |
1319 |
$links[] = array( |
$links[] = array( |
1322 |
"title" => _("servitude_point"), |
"title" => _("servitude_point"), |
1323 |
"right" => array("servitude_point", "servitude_point_tab"), |
"right" => array("servitude_point", "servitude_point_tab"), |
1324 |
"open" => array("tab.php|servitude_point", "form.php|servitude_point", ), |
"open" => array("tab.php|servitude_point", "form.php|servitude_point", ), |
1325 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1326 |
); |
); |
1327 |
// |
// |
1328 |
$links[] = array( |
$links[] = array( |
1331 |
"title" => _("parcelle_lot"), |
"title" => _("parcelle_lot"), |
1332 |
"right" => array("parcelle_lot", "parcelle_lot_tab"), |
"right" => array("parcelle_lot", "parcelle_lot_tab"), |
1333 |
"open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ), |
"open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ), |
1334 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1335 |
); |
); |
1336 |
// |
// |
1337 |
$rubrik['links'] = $links; |
$rubrik['links'] = $links; |
1425 |
"class" => "category", |
"class" => "category", |
1426 |
"title" => _("tableaux de bord"), |
"title" => _("tableaux de bord"), |
1427 |
"right" => array( |
"right" => array( |
1428 |
"om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab", |
"om_widget", "om_widget_tab", "om_dashboard", |
1429 |
), |
), |
1430 |
); |
); |
1431 |
// |
// |
1432 |
$links[] = array( |
$links[] = array( |
1433 |
"title" => "<hr/>", |
"title" => "<hr/>", |
1434 |
"right" => array( |
"right" => array( |
1435 |
"om_widget", "om_widget_tab", "om_dashboard", "om_dashboard_tab", |
"om_widget", "om_widget_tab", "om_dashboard", |
1436 |
), |
), |
1437 |
); |
); |
1438 |
// |
// |
1445 |
); |
); |
1446 |
// |
// |
1447 |
$links[] = array( |
$links[] = array( |
1448 |
"href" => "../scr/tab.php?obj=om_dashboard", |
"href" => "../scr/dashboard_composer.php", |
1449 |
"class" => "om_dashboard", |
"class" => "om_dashboard", |
1450 |
"title" => _("om_dashboard"), |
"title" => _("composition"), |
1451 |
"right" => array( ), |
"right" => array("om_dashboard", ), |
1452 |
"open" => array("tab.php|om_dashboard", "form.php|om_dashboard", ), |
"open" => array("dashboard_composer.php|", ), |
1453 |
); |
); |
1454 |
// |
// |
1455 |
$links[] = array( |
$links[] = array( |
1458 |
"right" => array( |
"right" => array( |
1459 |
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
1460 |
), |
), |
1461 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1462 |
); |
); |
1463 |
// |
// |
1464 |
$links[] = array( |
$links[] = array( |
1466 |
"right" => array( |
"right" => array( |
1467 |
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
"om_sig_map", "om_sig_map_tab", "om_sig_wms", "om_sig_wms_tab", |
1468 |
), |
), |
1469 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1470 |
); |
); |
1471 |
// |
// |
1472 |
$links[] = array( |
$links[] = array( |
1475 |
"title" => _("om_sig_map"), |
"title" => _("om_sig_map"), |
1476 |
"right" => array("om_sig_map", "om_sig_map_tab", ), |
"right" => array("om_sig_map", "om_sig_map_tab", ), |
1477 |
"open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ), |
"open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ), |
1478 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1479 |
); |
); |
1480 |
// |
// |
1481 |
$links[] = array( |
$links[] = array( |
1484 |
"title" => _("om_sig_wms"), |
"title" => _("om_sig_wms"), |
1485 |
"right" => array("om_sig_wms", "om_sig_wms_tab", ), |
"right" => array("om_sig_wms", "om_sig_wms_tab", ), |
1486 |
"open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ), |
"open" => array("tab.php|om_sig_wms", "form.php|om_sig_wms", ), |
1487 |
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1488 |
); |
); |
1489 |
// |
// |
1490 |
$links[] = array( |
$links[] = array( |
1491 |
"class" => "category", |
"class" => "category", |
1492 |
"title" => _("options avancees"), |
"title" => _("options avancees"), |
1493 |
"right" => array("import", "gen", ), |
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
1494 |
|
"om_sousetat", "om_sousetat_tab",), |
1495 |
|
); |
1496 |
|
// |
1497 |
|
$links[] = array( |
1498 |
|
"title" => "<hr/>", |
1499 |
|
"right" => array( |
1500 |
|
"om_sousetat", "om_sousetat_tab", |
1501 |
|
), |
1502 |
|
); |
1503 |
|
// |
1504 |
|
$links[] = array( |
1505 |
|
"href" => "../scr/tab.php?obj=om_sousetat", |
1506 |
|
"class" => "om_sousetat", |
1507 |
|
"title" => _("om_sousetat"), |
1508 |
|
"right" => array("om_sousetat", "om_sousetat_tab", ), |
1509 |
|
"open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ), |
1510 |
|
); |
1511 |
|
// |
1512 |
|
$links[] = array( |
1513 |
|
"title" => "<hr/>", |
1514 |
|
"right" => array("om_requete", "om_requete_tab", ), |
1515 |
|
); |
1516 |
|
// |
1517 |
|
$links[] = array( |
1518 |
|
"href" => "../scr/tab.php?obj=om_requete", |
1519 |
|
"class" => "om_requete", |
1520 |
|
"title" => _("om_requete"), |
1521 |
|
"right" => array("om_requete", "om_requete_tab", ), |
1522 |
|
"open" => array("tab.php|om_requete", "form.php|om_requete", ), |
1523 |
); |
); |
1524 |
// |
// |
1525 |
$links[] = array( |
$links[] = array( |