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