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 |
|
|
"right" => array("consultation_mes_retours", "consultation_tous_retours", ), |
374 |
|
|
); |
375 |
|
|
$links[] = array( |
376 |
|
|
"title" => "<hr/>", |
377 |
|
|
"right" => array("consultation_mes_retours", "consultation_tous_retours", ), |
378 |
|
|
); |
379 |
|
|
$links[] = array( |
380 |
|
|
"href" => "../scr/tab.php?obj=consultation_mes_retours", |
381 |
|
|
"class" => "consultation_mes_retours", |
382 |
|
|
"title" => _("Mes retours"), |
383 |
|
|
"right" => array("consultation_mes_retours", "consultation_mes_retours_tab", ), |
384 |
|
|
"open" => array("tab.php|consultation_mes_retours", "form.php|consultation_mes_retours", ), |
385 |
|
|
); |
386 |
|
|
$links[] = array( |
387 |
|
|
"href" => "../scr/tab.php?obj=consultation_tous_retours", |
388 |
|
|
"class" => "consultation_tous_retours", |
389 |
|
|
"title" => _("Tous les retours"), |
390 |
|
|
"right" => array("consultation_tous_retours", "consultation_tous_retours_tab", ), |
391 |
|
|
"open" => array("tab.php|consultation_tous_retours", "form.php|consultation_tous_retours", ), |
392 |
|
|
); |
393 |
|
|
// Catégorie MESSAGES |
394 |
|
|
$links[] = array( |
395 |
|
|
"class" => "category", |
396 |
|
|
"title" => _("Messages"), |
397 |
|
|
"right" => array("messages_mes_retours", "messages_tous_retours"), |
398 |
|
|
"parameters" => array("option_erp" => "true", ), |
399 |
|
|
); |
400 |
|
|
// |
401 |
|
|
$links[] = array( |
402 |
|
|
"title" => "<hr/>", |
403 |
|
|
"right" => array("messages_mes_retours", "messages_tous_retours"), |
404 |
|
|
"parameters" => array("option_erp" => "true", ), |
405 |
|
|
); |
406 |
|
|
// |
407 |
|
|
$links[] = array( |
408 |
|
|
"href" => "../scr/tab.php?obj=messages_mes_retours", |
409 |
|
|
"class" => "messages_mes_retours", |
410 |
|
|
"title" => _("Mes messages"), |
411 |
|
|
"right" => array("messages_mes_retours", "messages_mes_retours_tab", ), |
412 |
|
|
"open" => array("tab.php|messages_mes_retours", "form.php|messages_mes_retours", ), |
413 |
|
|
"parameters" => array("option_erp" => "true", ), |
414 |
|
|
); |
415 |
|
|
// |
416 |
|
|
$links[] = array( |
417 |
|
|
"href" => "../scr/tab.php?obj=messages_tous_retours", |
418 |
|
|
"class" => "messages_tous_retours", |
419 |
|
|
"title" => _("Tous les messages"), |
420 |
|
|
"right" => array("messages_tous_retours", "messages_tous_retours_tab", ), |
421 |
|
|
"open" => array("tab.php|messages_tous_retours", "form.php|messages_tous_retours", ), |
422 |
|
|
"parameters" => array("option_erp" => "true", ), |
423 |
|
|
); |
424 |
|
|
// Catégorie COMMISSIONS |
425 |
|
|
$links[] = array( |
426 |
|
|
"class" => "category", |
427 |
|
|
"title" => _("commissions"), |
428 |
|
|
"right" => array( |
429 |
|
|
"commission_mes_retours", "commission_mes_retours_tab", |
430 |
|
|
"commission_tous_retours", "commission_tous_retours_tab", |
431 |
|
|
), |
432 |
|
|
); |
433 |
|
|
$links[] = array( |
434 |
|
|
"title" => "<hr/>", |
435 |
|
|
"right" => array( |
436 |
|
|
"commission_mes_retours", "commission_mes_retours_tab", |
437 |
|
|
"commission_tous_retours", "commission_tous_retours_tab", |
438 |
|
|
), |
439 |
|
|
); |
440 |
|
|
$links[] = array( |
441 |
|
|
"href" => "../scr/tab.php?obj=commission_mes_retours", |
442 |
|
|
"class" => "commission_mes_retours", |
443 |
|
|
"title" => _("Mes retours"), |
444 |
|
|
"right" => array("commission_mes_retours", "commission_mes_retours_tab", ), |
445 |
|
|
"open" => array("tab.php|commission_mes_retours", "form.php|commission_mes_retours", ), |
446 |
|
|
); |
447 |
|
|
$links[] = array( |
448 |
|
|
"href" => "../scr/tab.php?obj=commission_tous_retours", |
449 |
|
|
"class" => "commission_tous_retours", |
450 |
|
|
"title" => _("Tous les retours"), |
451 |
|
|
"right" => array("commission_tous_retours", "commission_tous_retours_tab", ), |
452 |
|
|
"open" => array("tab.php|commission_tous_retours", "form.php|commission_tous_retours", ), |
453 |
|
|
); |
454 |
|
|
|
455 |
|
|
// |
456 |
|
|
$rubrik['links'] = $links; |
457 |
|
|
// |
458 |
|
|
$menu[] = $rubrik; |
459 |
|
|
// }}} |
460 |
|
|
|
461 |
|
|
// {{{ Rubrique SUIVI |
462 |
|
|
// |
463 |
|
|
$rubrik = array( |
464 |
|
|
"title" => _("Suivi"), |
465 |
|
|
"class" => "suivi", |
466 |
|
|
"right" => "menu_suivi", |
467 |
|
|
); |
468 |
|
|
// |
469 |
|
|
$links = array(); |
470 |
|
|
// |
471 |
|
|
$links[] = array( |
472 |
|
|
"href" => "../scr/dashboard.php", |
473 |
|
|
"class" => "tableau-de-bord", |
474 |
|
|
"title" => _("tableau de bord"), |
475 |
|
|
"right" => "menu_suivi_dashboard", |
476 |
|
|
"open" => array("dashboard.php|",), |
477 |
|
|
); |
478 |
|
|
$links[] = array( |
479 |
|
|
"class" => "category", |
480 |
|
|
"title" => _("suivi des pieces"), |
481 |
|
|
"right" => array( |
482 |
|
|
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
483 |
|
|
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
484 |
|
|
), |
485 |
|
|
); |
486 |
|
|
// |
487 |
|
|
$links[] = array( |
488 |
|
|
"title" => "<hr/>", |
489 |
|
|
"right" => array( |
490 |
|
|
"suivi_retours_de_consultation", "suivi_mise_a_jour_des_dates", |
491 |
|
|
"suivi_envoi_lettre_rar", "suivi_bordereaux", |
492 |
|
|
), |
493 |
|
|
); |
494 |
|
|
// |
495 |
|
|
$links[] = array( |
496 |
|
|
"title" => "<hr/>", |
497 |
|
|
"right" => array( |
498 |
|
|
"suivi_mise_a_jour_des_dates", |
499 |
|
|
), |
500 |
|
|
); |
501 |
|
|
// |
502 |
|
|
$links[] = array( |
503 |
|
|
"href" => "../scr/form.php?obj=instruction_suivi_mise_a_jour_des_dates&action=170&idx=0", |
504 |
|
|
"class" => "suivi_mise_a_jour_des_dates", |
505 |
|
|
"title" => _("Mise a jour des dates"), |
506 |
|
|
"right" => array("instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", ), |
507 |
|
|
"open" => array("tab.php|instruction_suivi_mise_a_jour_des_dates", "form.php|instruction_suivi_mise_a_jour_des_dates"), |
508 |
|
|
); |
509 |
|
|
// |
510 |
|
|
$links[] = array( |
511 |
|
|
"title" => "<hr/>", |
512 |
|
|
"right" => array( |
513 |
|
|
"suivi_envoi_lettre_rar", |
514 |
|
|
), |
515 |
|
|
); |
516 |
|
|
// |
517 |
|
|
$links[] = array( |
518 |
|
|
"href" => "../scr/form.php?obj=instruction_suivi_envoi_lettre_rar&action=160&idx=0", |
519 |
|
|
"class" => "edition", |
520 |
|
|
"title" => _("envoi lettre RAR"), |
521 |
|
|
"right" => array("instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", ), |
522 |
|
|
"open" => array("tab.php|instruction_suivi_envoi_lettre_rar", "form.php|instruction_suivi_envoi_lettre_rar"), |
523 |
|
|
); |
524 |
|
|
// |
525 |
|
|
$links[] = array( |
526 |
|
|
"title" => "<hr/>", |
527 |
|
|
"right" => array( |
528 |
|
|
"suivi_bordereaux", |
529 |
|
|
), |
530 |
|
|
); |
531 |
|
|
// |
532 |
|
|
$links[] = array( |
533 |
|
|
"href" => "../scr/form.php?obj=instruction_suivi_bordereaux&action=150&idx=0", |
534 |
|
|
"class" => "edition", |
535 |
|
|
"title" => _("Bordereaux"), |
536 |
|
|
"right" => array("instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", ), |
537 |
|
|
"open" => array("tab.php|instruction_suivi_bordereaux", "form.php|instruction_suivi_bordereaux"), |
538 |
|
|
); |
539 |
|
|
// |
540 |
|
|
$links[] = array( |
541 |
|
|
"href" => "../scr/form.php?obj=bordereau_envoi_maire&action=190&idx=0", |
542 |
|
|
"class" => "bordereau_envoi_maire", |
543 |
|
|
"title" => _("Bordereau d'envoi au maire"), |
544 |
|
|
"right" => array("instruction_bordereau_envoi_maire",), |
545 |
|
|
"open" => array("form.php|bordereau_envoi_maire",), |
546 |
|
|
); |
547 |
|
|
// |
548 |
|
|
$links[] = array( |
549 |
|
|
"class" => "category", |
550 |
|
|
"title" => _("Demandes d'avis"), |
551 |
|
|
"right" => array( |
552 |
|
|
"demandes_avis_mise_a_jour_des_dates", |
553 |
|
|
), |
554 |
|
|
); |
555 |
|
|
// |
556 |
|
|
$links[] = array( |
557 |
|
|
"href" => "../app/demandes_avis_mise_a_jour_des_dates.php", |
558 |
|
|
"class" => "demandes_avis_mise_a_jour_des_dates", |
559 |
|
|
"title" => _("Mise a jour des dates"), |
560 |
|
|
"right" => array("demandes_avis_mise_a_jour_des_dates", ), |
561 |
|
|
"open" => array("demandes_avis_mise_a_jour_des_dates.php|"), |
562 |
|
|
); |
563 |
|
|
// |
564 |
|
|
$links[] = array( |
565 |
|
|
"href" => "../app/suivi_retours_de_consultation.php", |
566 |
|
|
"class" => "consultation-retour", |
567 |
|
|
"title" => _("retours de consultation"), |
568 |
|
|
"right" => array( |
569 |
|
|
"suivi_retours_de_consultation", |
570 |
|
|
), |
571 |
|
|
"open" => array("suivi_retours_de_consultation.php|", "form.php|consultation", ), |
572 |
|
|
); |
573 |
|
|
// Catégorie COMMISSIONS |
574 |
|
|
$links[] = array( |
575 |
|
|
"class" => "category", |
576 |
|
|
"title" => _("commissions"), |
577 |
|
|
"right" => array( |
578 |
|
|
"commission", "commission_tab", |
579 |
|
|
"commission_demandes_passage", "commission_demandes_passage_tab", |
580 |
|
|
), |
581 |
|
|
); |
582 |
|
|
// |
583 |
|
|
$links[] = array( |
584 |
|
|
"title" => "<hr/>", |
585 |
|
|
"right" => array( |
586 |
|
|
"commission", "commission_tab", |
587 |
|
|
"commission_demandes_passage", "commission_demandes_passage_tab", |
588 |
|
|
), |
589 |
|
|
); |
590 |
|
|
// |
591 |
|
|
$links[] = array( |
592 |
|
|
"href" => "../scr/tab.php?obj=commission", |
593 |
|
|
"class" => "commissions", |
594 |
|
|
"title" => _("gestion"), |
595 |
|
|
"right" => array("commission", ), |
596 |
|
|
"open" => array("tab.php|commission", "form.php|commission", ), |
597 |
|
|
); |
598 |
|
|
// |
599 |
|
|
$links[] = array( |
600 |
|
|
"href" => "../scr/tab.php?obj=commission_demandes_passage", |
601 |
|
|
"class" => "commissions-demande-passage", |
602 |
|
|
"title" => _("demandes"), |
603 |
|
|
"right" => array("commission_demandes_passage", ), |
604 |
|
|
"open" => array("tab.php|commission_demandes_passage", "form.php|commission_demandes_passage", ), |
605 |
|
|
); |
606 |
|
|
// |
607 |
|
|
$rubrik['links'] = $links; |
608 |
|
|
// |
609 |
|
|
$menu[] = $rubrik; |
610 |
|
|
// }}} |
611 |
|
|
|
612 |
|
|
// {{{ Rubrique DEMANDES D'AVIS |
613 |
|
|
// |
614 |
|
|
$rubrik = array( |
615 |
|
|
"title" => _("Demandes d'avis"), |
616 |
|
|
"class" => "demande_avis", |
617 |
|
|
"right" => "menu_demande_avis", |
618 |
|
|
); |
619 |
|
|
// |
620 |
|
|
$links = array(); |
621 |
|
|
// |
622 |
|
|
$links[] = array( |
623 |
|
|
"href" => "../scr/dashboard.php", |
624 |
|
|
"class" => "tableau-de-bord", |
625 |
|
|
"title" => _("tableau de bord"), |
626 |
|
|
"right" => "menu_demande_avis_dashboard", |
627 |
|
|
"open" => array("dashboard.php|",), |
628 |
|
|
); |
629 |
|
|
// |
630 |
|
|
$links[] = array( |
631 |
|
|
"title" => "<hr/>", |
632 |
|
|
"right" => array( |
633 |
|
|
"demande_avis_encours", "demande_avis_encours_tab", |
634 |
|
|
"demande_avis_passee", "demande_avis_passee_tab", |
635 |
|
|
"demande_avis", "demande_avis_tab", |
636 |
|
|
), |
637 |
|
|
); |
638 |
|
|
// |
639 |
|
|
$links[] = array( |
640 |
|
|
"href" => "../scr/tab.php?obj=demande_avis_encours", |
641 |
|
|
"class" => "demande_avis_encours", |
642 |
|
|
"title" => _("Demandes en cours"), |
643 |
|
|
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
644 |
|
|
"open" => array("tab.php|demande_avis_encours", "form.php|demande_avis_encours", ), |
645 |
|
|
); |
646 |
|
|
|
647 |
|
|
$links[] = array( |
648 |
|
|
"href" => "../scr/tab.php?obj=demande_avis_passee", |
649 |
|
|
"class" => "demande_avis_passee", |
650 |
|
|
"title" => _("Demandes passees"), |
651 |
|
|
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
652 |
|
|
"open" => array("tab.php|demande_avis_passee", "form.php|demande_avis_passee", ), |
653 |
|
|
); |
654 |
|
|
|
655 |
|
|
$links[] = array( |
656 |
|
|
"href" => "../scr/tab.php?obj=demande_avis", |
657 |
|
|
"class" => "demande_avis", |
658 |
|
|
"title" => _("Exports"), |
659 |
|
|
"right" => array("demande_avis", "demande_avis_tab", ), |
660 |
|
|
"open" => array("tab.php|demande_avis", "form.php|demande_avis", ), |
661 |
|
|
); |
662 |
|
|
|
663 |
|
|
// |
664 |
|
|
$rubrik['links'] = $links; |
665 |
|
|
// |
666 |
|
|
$menu[] = $rubrik; |
667 |
|
|
// }}} |
668 |
|
|
|
669 |
|
|
|
670 |
|
|
// Commentaire de la rubrique EXPORT qui n'est pas prévue d'être opérationnelle |
671 |
|
|
// dans cette version |
672 |
|
|
// {{{ Rubrique EXPORT |
673 |
|
|
// |
674 |
|
|
$rubrik = array( |
675 |
|
|
"title" => _("export / import"), |
676 |
|
|
"class" => "edition", |
677 |
|
|
"right" => "menu_export", |
678 |
|
|
); |
679 |
|
|
// |
680 |
|
|
$links = array(); |
681 |
|
|
|
682 |
|
|
// |
683 |
|
|
$links[] = array( |
684 |
|
|
"href" => "../scr/form.php?obj=sitadel&action=6&idx=0", |
685 |
|
|
"class" => "sitadel", |
686 |
|
|
"title" => _("export sitadel"), |
687 |
|
|
"right" => "export_sitadel", |
688 |
|
|
"open" => "form.php|sitadel", |
689 |
|
|
); |
690 |
|
|
// |
691 |
|
|
$links[] = array( |
692 |
|
|
"href" => "../app/versement_archives.php", |
693 |
|
|
"class" => "versement_archives", |
694 |
|
|
"title" => _("versement aux archives"), |
695 |
|
|
"right" => "versement_archives", |
696 |
|
|
"open" => "versement_archives.php|", |
697 |
|
|
); |
698 |
|
|
// |
699 |
|
|
$links[] = array( |
700 |
|
|
"href" => "../app/reqmo_pilot.php", |
701 |
|
|
"class" => "reqmo", |
702 |
|
|
"title" => _("statistiques a la demande"), |
703 |
|
|
"right" => "reqmo_pilot", |
704 |
|
|
"open" => "reqmo_pilot.php|", |
705 |
|
|
); |
706 |
|
|
// |
707 |
|
|
$rubrik['links'] = $links; |
708 |
|
|
// |
709 |
|
|
$menu[] = $rubrik; |
710 |
|
|
// }}} |
711 |
|
|
|
712 |
|
|
|
713 |
|
|
// {{{ Rubrique PARAMETRAGE |
714 |
|
|
// |
715 |
|
|
$rubrik = array( |
716 |
|
|
"title" => _("parametrage dossiers"), |
717 |
|
|
"class" => "parametrage-dossier", |
718 |
|
|
"right" => "menu_parametrage", |
719 |
|
|
); |
720 |
|
|
// |
721 |
|
|
$links = array(); |
722 |
|
|
// |
723 |
|
|
$links[] = array( |
724 |
|
|
"class" => "category", |
725 |
|
|
"title" => _("dossiers"), |
726 |
|
|
"right" => array( |
727 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
728 |
|
|
"dossier_autorisation_type_detaille", |
729 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
730 |
|
|
"dossier_instruction_type_tab", "cerfa", "cerfa_tab", |
731 |
|
|
), |
732 |
|
|
); |
733 |
|
|
// |
734 |
|
|
$links[] = array( |
735 |
|
|
"title" => "<hr/>", |
736 |
|
|
"right" => array( |
737 |
|
|
"cerfa", "cerfa_tab", |
738 |
|
|
), |
739 |
|
|
); |
740 |
|
|
// |
741 |
|
|
$links[] = array( |
742 |
|
|
"href" => "../scr/tab.php?obj=cerfa", |
743 |
|
|
"class" => "cerfa", |
744 |
|
|
"title" => _("cerfa"), |
745 |
|
|
"right" => array("cerfa", "cerfa_tab", ), |
746 |
|
|
"open" => array("tab.php|cerfa", "form.php|cerfa", ), |
747 |
|
|
); |
748 |
|
|
// |
749 |
|
|
$links[] = array( |
750 |
|
|
"title" => "<hr/>", |
751 |
|
|
"right" => array( |
752 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
753 |
|
|
"dossier_autorisation_type_detaille", |
754 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
755 |
|
|
"dossier_instruction_type_tab", |
756 |
|
|
), |
757 |
|
|
); |
758 |
|
|
// |
759 |
|
|
$links[] = array( |
760 |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation_type", |
761 |
|
|
"class" => "dossier_autorisation_type", |
762 |
|
|
"title" => _("type DA"), |
763 |
|
|
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
764 |
|
|
"open" => array("tab.php|dossier_autorisation_type", "form.php|dossier_autorisation_type", ), |
765 |
|
|
); |
766 |
|
|
// |
767 |
|
|
$links[] = array( |
768 |
|
|
"href" => "../scr/tab.php?obj=dossier_autorisation_type_detaille", |
769 |
|
|
"class" => "dossier_autorisation_type_detaille", |
770 |
|
|
"title" => _("type DA detaille"), |
771 |
|
|
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
772 |
|
|
"open" => array("tab.php|dossier_autorisation_type_detaille", "form.php|dossier_autorisation_type_detaille", ), |
773 |
|
|
); |
774 |
|
|
// |
775 |
|
|
$links[] = array( |
776 |
|
|
"href" => "../scr/tab.php?obj=dossier_instruction_type", |
777 |
|
|
"class" => "dossier_instruction_type", |
778 |
|
|
"title" => _("type DI"), |
779 |
|
|
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
780 |
|
|
"open" => array("tab.php|dossier_instruction_type", "form.php|dossier_instruction_type", ), |
781 |
|
|
); |
782 |
|
|
// |
783 |
|
|
$links[] = array( |
784 |
|
|
"title" => "<hr/>", |
785 |
|
|
"right" => array( |
786 |
|
|
"contrainte", "contrainte_tab", |
787 |
|
|
"contrainte_souscategorie", "contrainte_souscategorie_tab", |
788 |
|
|
"contrainte_categorie", "contrainte_categorie_tab" |
789 |
|
|
), |
790 |
|
|
); |
791 |
|
|
// |
792 |
|
|
$links[] = array( |
793 |
|
|
"href" => "../scr/tab.php?obj=contrainte", |
794 |
|
|
"class" => "contrainte", |
795 |
|
|
"title" => _("contrainte"), |
796 |
|
|
"right" => array("contrainte", "contrainte_tab", ), |
797 |
|
|
"open" => array("tab.php|contrainte", "form.php|contrainte", ), |
798 |
|
|
); |
799 |
|
|
// |
800 |
|
|
$links[] = array( |
801 |
|
|
"href" => "../app/contrainte_synchronisation.php", |
802 |
|
|
"class" => "contrainte", |
803 |
|
|
"title" => _("synchronisation des contraintes"), |
804 |
|
|
"right" => array("contrainte", "contrainte_synchronisation", ), |
805 |
|
|
"open" => array("contrainte_synchronisation.php|", ), |
806 |
|
|
"parameters" => array( |
807 |
|
|
"option_sig" => "sig_externe", |
808 |
|
|
), |
809 |
|
|
); |
810 |
|
|
// |
811 |
|
|
$links[] = array( |
812 |
|
|
"class" => "category", |
813 |
|
|
"title" => _("demandes"), |
814 |
|
|
"right" => array( |
815 |
|
|
"demande_type", |
816 |
|
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
817 |
|
|
), |
818 |
|
|
); |
819 |
|
|
// |
820 |
|
|
$links[] = array( |
821 |
|
|
"title" => "<hr/>", |
822 |
|
|
"right" => array( |
823 |
|
|
"demande_type", |
824 |
|
|
"demande_type_tab", "demande_nature", "demande_nature_tab", |
825 |
|
|
), |
826 |
|
|
); |
827 |
|
|
// |
828 |
|
|
$links[] = array( |
829 |
|
|
"href" => "../scr/tab.php?obj=demande_nature", |
830 |
|
|
"class" => "demande_nature", |
831 |
|
|
"title" => _("nature"), |
832 |
|
|
"right" => array("demande_nature", "demande_nature_tab", ), |
833 |
|
|
"open" => array("tab.php|demande_nature", "form.php|demande_nature", ), |
834 |
|
|
); |
835 |
|
|
// |
836 |
|
|
$links[] = array( |
837 |
|
|
"href" => "../scr/tab.php?obj=demande_type", |
838 |
|
|
"class" => "demande_type", |
839 |
|
|
"title" => _("type"), |
840 |
|
|
"right" => array("demande_type", "demande_type_tab",), |
841 |
|
|
"open" => array("tab.php|demande_type", "form.php|demande_type", ), |
842 |
|
|
); |
843 |
|
|
// |
844 |
|
|
$links[] = array( |
845 |
|
|
"class" => "category", |
846 |
|
|
"title" => _("workflows"), |
847 |
|
|
"right" => array( |
848 |
|
|
"workflows", |
849 |
|
|
"action", "action_tab", "etat", |
850 |
|
|
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
851 |
|
|
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
852 |
|
|
), |
853 |
|
|
); |
854 |
|
|
// |
855 |
|
|
$links[] = array( |
856 |
|
|
"title" => "<hr/>", |
857 |
|
|
"right" => array( |
858 |
|
|
"workflows", |
859 |
|
|
"action", "action_tab", "etat", |
860 |
|
|
"etat_tab", "evenement", "evenement_tab", "bible", "bible_tab", "avis_decision", |
861 |
|
|
"avis_decision_tab", "avis_consultation", "avis_consultation_tab", |
862 |
|
|
), |
863 |
|
|
); |
864 |
|
|
// |
865 |
|
|
$links[] = array( |
866 |
|
|
"href" => "../app/workflows.php", |
867 |
|
|
"class" => "workflows", |
868 |
|
|
"title" => _("workflows"), |
869 |
|
|
"right" => array("workflows", ), |
870 |
|
|
"open" => array("workflows.php|", ), |
871 |
|
|
); |
872 |
|
|
// |
873 |
|
|
$links[] = array( |
874 |
|
|
"title" => "<hr/>", |
875 |
|
|
"right" => array( |
876 |
|
|
"evenement", "evenement_tab", |
877 |
|
|
), |
878 |
|
|
); |
879 |
|
|
// |
880 |
|
|
$links[] = array( |
881 |
|
|
"href" => "../scr/tab.php?obj=evenement", |
882 |
|
|
"class" => "evenement", |
883 |
|
|
"title" => _("evenement"), |
884 |
|
|
"right" => array("evenement", "evenement_tab", ), |
885 |
|
|
"open" => array("tab.php|evenement", "form.php|evenement", ), |
886 |
|
|
); |
887 |
|
|
// |
888 |
|
|
$links[] = array( |
889 |
|
|
"title" => "<hr/>", |
890 |
|
|
"right" => array( |
891 |
|
|
"action", "action_tab", "etat", |
892 |
|
|
"etat_tab", "avis_decision", |
893 |
|
|
"avis_decision_tab", |
894 |
|
|
), |
895 |
|
|
); |
896 |
|
|
// |
897 |
|
|
$links[] = array( |
898 |
|
|
"href" => "../scr/tab.php?obj=etat", |
899 |
|
|
"class" => "workflow-etat", |
900 |
|
|
"title" => _("etat"), |
901 |
|
|
"right" => array("etat", "etat_tab", ), |
902 |
|
|
"open" => array("tab.php|etat", "form.php|etat", ), |
903 |
|
|
); |
904 |
|
|
// |
905 |
|
|
$links[] = array( |
906 |
|
|
"href" => "../scr/tab.php?obj=avis_decision", |
907 |
|
|
"class" => "avis_decision", |
908 |
|
|
"title" => _("avis decision"), |
909 |
|
|
"right" => array("avis_decision", "avis_decision_tab", ), |
910 |
|
|
"open" => array("tab.php|avis_decision", "form.php|avis_decision", ), |
911 |
|
|
); |
912 |
|
|
// |
913 |
|
|
$links[] = array( |
914 |
|
|
"href" => "../scr/tab.php?obj=action", |
915 |
|
|
"class" => "action", |
916 |
|
|
"title" => _("action"), |
917 |
|
|
"right" => array("action", "action_tab", ), |
918 |
|
|
"open" => array("tab.php|action", "form.php|action", ), |
919 |
|
|
); |
920 |
|
|
// |
921 |
|
|
$links[] = array( |
922 |
|
|
"title" => "<hr/>", |
923 |
|
|
"right" => array( |
924 |
|
|
"bible", "bible_tab", |
925 |
|
|
), |
926 |
|
|
); |
927 |
|
|
// |
928 |
|
|
$links[] = array( |
929 |
|
|
"href" => "../scr/tab.php?obj=bible", |
930 |
|
|
"class" => "bible", |
931 |
|
|
"title" => _("bible"), |
932 |
|
|
"right" => array("bible", "bible_tab", ), |
933 |
|
|
"open" => array("tab.php|bible", "form.php|bible", ), |
934 |
|
|
); |
935 |
|
|
// |
936 |
|
|
$links[] = array( |
937 |
|
|
"class" => "category", |
938 |
|
|
"title" => _("editions"), |
939 |
|
|
"right" => array( |
940 |
|
|
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
941 |
|
|
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
942 |
|
|
"om_logo", "om_logo_tab", |
943 |
|
|
), |
944 |
|
|
); |
945 |
|
|
// |
946 |
|
|
$links[] = array( |
947 |
|
|
"title" => "<hr/>", |
948 |
|
|
"right" => array( |
949 |
|
|
"om_etat", "om_etat_tab", "om_lettretype", "om_lettretype_tab", |
950 |
|
|
), |
951 |
|
|
); |
952 |
|
|
// |
953 |
|
|
$links[] = array( |
954 |
|
|
"href" => "../scr/tab.php?obj=om_etat", |
955 |
|
|
"class" => "om_etat", |
956 |
|
|
"title" => _("om_etat"), |
957 |
|
|
"right" => array("om_etat", "om_etat_tab", ), |
958 |
|
|
"open" => array("tab.php|om_etat", "form.php|om_etat", ), |
959 |
|
|
); |
960 |
|
|
// |
961 |
|
|
$links[] = array( |
962 |
|
|
"href" => "../scr/tab.php?obj=om_lettretype", |
963 |
|
|
"class" => "om_lettretype", |
964 |
|
|
"title" => _("om_lettretype"), |
965 |
|
|
"right" => array("om_lettretype", "om_lettretype_tab"), |
966 |
|
|
"open" => array("tab.php|om_lettretype", "form.php|om_lettretype", ), |
967 |
|
|
); |
968 |
|
|
// |
969 |
|
|
$links[] = array( |
970 |
|
|
"title" => "<hr/>", |
971 |
|
|
"right" => array( |
972 |
|
|
"om_logo", "om_logo_tab", |
973 |
|
|
), |
974 |
|
|
); |
975 |
|
|
// |
976 |
|
|
$links[] = array( |
977 |
|
|
"href" => "../scr/tab.php?obj=om_logo", |
978 |
|
|
"class" => "om_logo", |
979 |
|
|
"title" => _("om_logo"), |
980 |
|
|
"right" => array("om_logo", "om_logo_tab", ), |
981 |
|
|
"open" => array("tab.php|om_logo", "form.php|om_logo", ), |
982 |
|
|
); |
983 |
|
|
// |
984 |
|
|
$rubrik['links'] = $links; |
985 |
|
|
// |
986 |
|
|
$menu[] = $rubrik; |
987 |
|
|
// }}} |
988 |
|
|
|
989 |
|
|
// {{{ Rubrique PARAMETRAGE |
990 |
|
|
// |
991 |
|
|
$rubrik = array( |
992 |
|
|
"title" => _("parametrage"), |
993 |
|
|
"class" => "parametrage", |
994 |
|
|
"right" => "menu_parametrage", |
995 |
|
|
); |
996 |
|
|
// |
997 |
|
|
$links = array(); |
998 |
|
|
// |
999 |
|
|
$links[] = array( |
1000 |
|
|
"href" => "../scr/tab.php?obj=civilite", |
1001 |
|
|
"class" => "civilite", |
1002 |
|
|
"title" => _("civilite"), |
1003 |
|
|
"right" => array("civilite", "civilite_tab", ), |
1004 |
|
|
"open" => array("tab.php|civilite", "form.php|civilite", ), |
1005 |
|
|
); |
1006 |
|
|
// |
1007 |
|
|
$links[] = array( |
1008 |
|
|
"href" => "../scr/tab.php?obj=arrondissement", |
1009 |
|
|
"class" => "arrondissement", |
1010 |
|
|
"title" => _("arrondissement"), |
1011 |
|
|
"right" => array("arrondissement", "arrondissement_tab", ), |
1012 |
|
|
"open" => array("tab.php|arrondissement", "form.php|arrondissement", ), |
1013 |
|
|
); |
1014 |
|
|
// |
1015 |
|
|
$links[] = array( |
1016 |
|
|
"href" => "../scr/tab.php?obj=quartier", |
1017 |
|
|
"class" => "quartier", |
1018 |
|
|
"title" => _("quartier"), |
1019 |
|
|
"right" => array("quartier", "quartier_tab", ), |
1020 |
|
|
"open" => array("tab.php|quartier", "form.php|quartier", ), |
1021 |
|
|
); |
1022 |
|
|
// |
1023 |
|
|
$links[] = array( |
1024 |
|
|
"class" => "category", |
1025 |
|
|
"title" => _("Organisation"), |
1026 |
|
|
"right" => array( |
1027 |
|
|
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1028 |
|
|
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1029 |
|
|
"signataire_arrete", "signataire_arrete_tab", "taxe_amenagement_tab", "taxe_amenagement", |
1030 |
|
|
), |
1031 |
|
|
); |
1032 |
|
|
$links[] = array( |
1033 |
|
|
"title" => "<hr/>", |
1034 |
|
|
"right" => array( |
1035 |
|
|
"direction", "direction_tab", "division", "division_tab", "instructeur", |
1036 |
|
|
"instructeur_tab", "groupe", "groupe_tab", "genre", "genre_tab", |
1037 |
|
|
"signataire_arrete", "signataire_arrete_tab", "taxe_amenagement_tab", "taxe_amenagement", |
1038 |
|
|
), |
1039 |
|
|
); |
1040 |
|
|
// |
1041 |
|
|
$links[] = array( |
1042 |
|
|
"href" => "../scr/tab.php?obj=genre", |
1043 |
|
|
"class" => "genre", |
1044 |
|
|
"title" => _("genre"), |
1045 |
|
|
"right" => array("genre", "genre_tab", ), |
1046 |
|
|
"open" => array("tab.php|genre", "form.php|genre", ), |
1047 |
|
|
); |
1048 |
|
|
// |
1049 |
|
|
$links[] = array( |
1050 |
|
|
"href" => "../scr/tab.php?obj=groupe", |
1051 |
|
|
"class" => "groupe", |
1052 |
|
|
"title" => _("groupe"), |
1053 |
|
|
"right" => array("groupe", "groupe_tab", ), |
1054 |
|
|
"open" => array("tab.php|groupe", "form.php|groupe", ), |
1055 |
|
|
); |
1056 |
|
|
// |
1057 |
|
|
$links[] = array( |
1058 |
|
|
"href" => "../scr/tab.php?obj=direction", |
1059 |
|
|
"class" => "direction", |
1060 |
|
|
"title" => _("direction"), |
1061 |
|
|
"right" => array("direction", "direction_tab", ), |
1062 |
|
|
"open" => array("tab.php|direction", "form.php|direction", ), |
1063 |
|
|
); |
1064 |
|
|
// |
1065 |
|
|
$links[] = array( |
1066 |
|
|
"href" => "../scr/tab.php?obj=division", |
1067 |
|
|
"class" => "division", |
1068 |
|
|
"title" => _("division"), |
1069 |
|
|
"right" => array("division", "division_tab", ), |
1070 |
|
|
"open" => array("tab.php|division", "form.php|division", ), |
1071 |
|
|
); |
1072 |
|
|
// |
1073 |
|
|
$links[] = array( |
1074 |
|
|
"href" => "../scr/tab.php?obj=instructeur", |
1075 |
|
|
"class" => "instructeur", |
1076 |
|
|
"title" => _("instructeur"), |
1077 |
|
|
"right" => array("instructeur", "instructeur_tab", ), |
1078 |
|
|
"open" => array("tab.php|instructeur", "form.php|instructeur", ), |
1079 |
|
|
); |
1080 |
|
|
// |
1081 |
|
|
$links[] = array( |
1082 |
|
|
"href" => "../scr/tab.php?obj=signataire_arrete", |
1083 |
|
|
"class" => "signataire_arrete", |
1084 |
|
|
"title" => _("signataire arrete"), |
1085 |
|
|
"right" => array("signataire_arrete", "signataire_arrete", ), |
1086 |
|
|
"open" => array("tab.php|signataire_arrete", "form.php|signataire_arrete", ), |
1087 |
|
|
); |
1088 |
|
|
// |
1089 |
|
|
$links[] = array( |
1090 |
|
|
"href" => "../scr/tab.php?obj=taxe_amenagement", |
1091 |
|
|
"class" => "taxe_amenagement", |
1092 |
|
|
"title" => _("taxe d'amenagement"), |
1093 |
|
|
"right" => array("taxe_amenagement", "taxe_amenagement", ), |
1094 |
|
|
"open" => array("tab.php|taxe_amenagement", "form.php|taxe_amenagement", ), |
1095 |
|
|
); |
1096 |
|
|
// |
1097 |
|
|
$links[] = array( |
1098 |
|
|
"class" => "category", |
1099 |
|
|
"title" => _("gestion des commissions"), |
1100 |
|
|
"right" => array( |
1101 |
|
|
"commission_type", "commission_type_tab", |
1102 |
|
|
), |
1103 |
|
|
); |
1104 |
|
|
// |
1105 |
|
|
$links[] = array( |
1106 |
|
|
"title" => "<hr/>", |
1107 |
|
|
"right" => array( |
1108 |
|
|
"commission_type", "commission_type_tab", |
1109 |
|
|
), |
1110 |
|
|
); |
1111 |
|
|
// |
1112 |
|
|
$links[] = array( |
1113 |
|
|
"href" => "../scr/tab.php?obj=commission_type", |
1114 |
|
|
"class" => "commission-type", |
1115 |
|
|
"title" => _("commission_type"), |
1116 |
|
|
"right" => array("commission_type", "commission_type_tab", ), |
1117 |
|
|
"open" => array("tab.php|commission_type", "form.php|commission_type", ), |
1118 |
|
|
); |
1119 |
|
|
// |
1120 |
|
|
$links[] = array( |
1121 |
|
|
"class" => "category", |
1122 |
|
|
"title" => _("gestion des consultations"), |
1123 |
|
|
"right" => array( |
1124 |
|
|
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1125 |
|
|
"service_categorie", "service_categorie_tab", |
1126 |
|
|
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1127 |
|
|
), |
1128 |
|
|
); |
1129 |
|
|
// |
1130 |
|
|
$links[] = array( |
1131 |
|
|
"title" => "<hr/>", |
1132 |
|
|
"right" => array( |
1133 |
|
|
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
1134 |
|
|
"service_categorie", "service_categorie_tab", |
1135 |
|
|
"lien_service_service_categorie", "lien_service_service_categorie_tab", |
1136 |
|
|
), |
1137 |
|
|
); |
1138 |
|
|
// |
1139 |
|
|
$links[] = array( |
1140 |
|
|
"href" => "../scr/tab.php?obj=avis_consultation", |
1141 |
|
|
"class" => "avis_consultation", |
1142 |
|
|
"title" => _("avis consultation"), |
1143 |
|
|
"right" => array("avis_consultation", "avis_consultation_tab", ), |
1144 |
|
|
"open" => array("tab.php|avis_consultation", "form.php|avis_consultation", ), |
1145 |
|
|
); |
1146 |
|
|
// |
1147 |
|
|
$links[] = array( |
1148 |
|
|
"href" => "../scr/tab.php?obj=service", |
1149 |
|
|
"class" => "service", |
1150 |
|
|
"title" => _("service"), |
1151 |
|
|
"right" => array("service", "service_tab", ), |
1152 |
|
|
"open" => array("tab.php|service", "form.php|service", ), |
1153 |
|
|
); |
1154 |
|
|
$links[] = array( |
1155 |
|
|
"href" => "../scr/tab.php?obj=service_categorie", |
1156 |
|
|
"class" => "service_categorie", |
1157 |
|
|
"title" => _("thematique des services"), |
1158 |
|
|
"right" => array("service_categorie", "service_categorie_tab", ), |
1159 |
|
|
"open" => array("tab.php|service_categorie", "form.php|service_categorie", ), |
1160 |
|
|
); |
1161 |
|
|
// |
1162 |
|
|
$links[] = array( |
1163 |
|
|
"class" => "category", |
1164 |
|
|
"title" => _("Gestion des dossiers"), |
1165 |
|
|
"right" => array( |
1166 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1167 |
|
|
"dossier_autorisation_type_detaille", |
1168 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1169 |
|
|
"dossier_instruction_type_tab", |
1170 |
|
|
"autorite_competente", "autorite_competente_tab", |
1171 |
|
|
"affectation_automatique", "affectation_automatique_tab", |
1172 |
|
|
), |
1173 |
|
|
); |
1174 |
|
|
// |
1175 |
|
|
$links[] = array( |
1176 |
|
|
"title" => "<hr/>", |
1177 |
|
|
"right" => array( |
1178 |
|
|
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
1179 |
|
|
"dossier_autorisation_type_detaille", |
1180 |
|
|
"dossier_autorisation_type_detaille_tab", "dossier_instruction_type", |
1181 |
|
|
"dossier_instruction_type_tab", |
1182 |
|
|
"autorite_competente", "autorite_competente_tab", |
1183 |
|
|
"affectation_automatique", "affectation_automatique_tab", |
1184 |
|
|
|
1185 |
|
|
), |
1186 |
|
|
); |
1187 |
|
|
// |
1188 |
|
|
$links[] = array( |
1189 |
|
|
"href" => "../scr/tab.php?obj=etat_dossier_autorisation", |
1190 |
|
|
"class" => "etat_dossier_autorisation", |
1191 |
|
|
"title" => _("etat dossiers autorisations"), |
1192 |
|
|
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
1193 |
|
|
"open" => array("tab.php|etat_dossier_autorisation", "form.php|etat_dossier_autorisation", ), |
1194 |
|
|
); |
1195 |
|
|
// |
1196 |
|
|
$links[] = array( |
1197 |
|
|
"href" => "../scr/tab.php?obj=affectation_automatique", |
1198 |
|
|
"class" => "affectation_automatique", |
1199 |
|
|
"title" => _("affectation automatique"), |
1200 |
|
|
"right" => array("affectation_automatique", "affectation_automatique_tab", ), |
1201 |
|
|
"open" => array("tab.php|affectation_automatique", "form.php|affectation_automatique", ), |
1202 |
|
|
); |
1203 |
|
|
// |
1204 |
|
|
$links[] = array( |
1205 |
|
|
"href" => "../scr/tab.php?obj=autorite_competente", |
1206 |
|
|
"class" => "autorite_competente", |
1207 |
|
|
"title" => _("autorite")." "._("competente"), |
1208 |
|
|
"right" => array("autorite_competente", "autorite_competente_tab", ), |
1209 |
|
|
"open" => array("tab.php|autorite_competente", "form.php|autorite_competente", ), |
1210 |
|
|
); |
1211 |
softime |
3834 |
// |
1212 |
|
|
$links[] = array( |
1213 |
|
|
"href" => "../scr/tab.php?obj=phase", |
1214 |
|
|
"class" => "phase", |
1215 |
|
|
"title" => _("phase"), |
1216 |
|
|
"right" => array("phase", "phase_tab", ), |
1217 |
|
|
"open" => array("tab.php|phase", "form.php|phase", ), |
1218 |
|
|
); |
1219 |
mbroquet |
3730 |
|
1220 |
|
|
// |
1221 |
|
|
$rubrik['links'] = $links; |
1222 |
|
|
// |
1223 |
|
|
$menu[] = $rubrik; |
1224 |
|
|
// }}} |
1225 |
|
|
|
1226 |
|
|
// {{{ Rubrique SIG |
1227 |
|
|
// |
1228 |
|
|
$rubrik = array( |
1229 |
|
|
"title" => _("sig"), |
1230 |
|
|
"class" => "sig", |
1231 |
|
|
"right" => "menu_sig", |
1232 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1233 |
|
|
); |
1234 |
|
|
// |
1235 |
|
|
$links = array(); |
1236 |
|
|
// |
1237 |
|
|
$links[] = array( |
1238 |
|
|
"href" => "../scr/tab.php?obj=parcelle", |
1239 |
|
|
"class" => "parcelle", |
1240 |
|
|
"title" => _("parcelle"), |
1241 |
|
|
"right" => array("parcelle", "parcelle_tab"), |
1242 |
|
|
"open" => array("tab.php|parcelle", "form.php|parcelle", ), |
1243 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1244 |
|
|
); |
1245 |
|
|
// |
1246 |
|
|
$links[] = array( |
1247 |
|
|
"href" => "../scr/tab.php?obj=proprietaire", |
1248 |
|
|
"class" => "proprietaire", |
1249 |
|
|
"title" => _("proprietaire"), |
1250 |
|
|
"right" => array("proprietaire", "proprietaire_tab"), |
1251 |
|
|
"open" => array("tab.php|proprietaire", "form.php|proprietaire", ), |
1252 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1253 |
|
|
); |
1254 |
|
|
// |
1255 |
|
|
$links[] = array( |
1256 |
|
|
"class" => "category", |
1257 |
|
|
"title" => _("servitudes"), |
1258 |
|
|
"right" => array( |
1259 |
|
|
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
1260 |
|
|
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1261 |
|
|
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1262 |
|
|
), |
1263 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1264 |
|
|
); |
1265 |
|
|
// |
1266 |
|
|
$links[] = array( |
1267 |
|
|
"title" => "<hr/>", |
1268 |
|
|
"right" => array( |
1269 |
|
|
"pos", "pos_tab", "servitude_surfacique", "servitude_surfacique_tab", |
1270 |
|
|
"servitude_ligne", "servitude_ligne_tab", "servitude_point", |
1271 |
|
|
"servitude_point_tab", "parcelle_lot", "parcelle_lot_tab", |
1272 |
|
|
), |
1273 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1274 |
|
|
); |
1275 |
|
|
// |
1276 |
|
|
$links[] = array( |
1277 |
|
|
"href" => "../scr/tab.php?obj=pos", |
1278 |
|
|
"class" => "pos", |
1279 |
|
|
"title" => _("pos"), |
1280 |
|
|
"right" => array("pos", "pos_tab"), |
1281 |
|
|
"open" => array("tab.php|pos", "form.php|pos", ), |
1282 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1283 |
|
|
); |
1284 |
|
|
// |
1285 |
|
|
$links[] = array( |
1286 |
|
|
"href" => "../scr/tab.php?obj=servitude_surfacique", |
1287 |
|
|
"class" => "servitude_surfacique", |
1288 |
|
|
"title" => _("servitude_surfacique"), |
1289 |
|
|
"right" => array("servitude_surfacique", "servitude_surfacique_tab"), |
1290 |
|
|
"open" => array( |
1291 |
|
|
"tab.php|servitude_surfacique", "form.php|servitude_surfacique", |
1292 |
|
|
), |
1293 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1294 |
|
|
); |
1295 |
|
|
// |
1296 |
|
|
$links[] = array( |
1297 |
|
|
"href" => "../scr/tab.php?obj=servitude_ligne", |
1298 |
|
|
"class" => "servitude_ligne", |
1299 |
|
|
"title" => _("servitude_ligne"), |
1300 |
|
|
"right" => array("servitude_ligne", "servitude_ligne_tab"), |
1301 |
|
|
"open" => array("tab.php|servitude_ligne", "form.php|servitude_ligne", ), |
1302 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1303 |
|
|
); |
1304 |
|
|
// |
1305 |
|
|
$links[] = array( |
1306 |
|
|
"href" => "../scr/tab.php?obj=servitude_point", |
1307 |
|
|
"class" => "servitude_point", |
1308 |
|
|
"title" => _("servitude_point"), |
1309 |
|
|
"right" => array("servitude_point", "servitude_point_tab"), |
1310 |
|
|
"open" => array("tab.php|servitude_point", "form.php|servitude_point", ), |
1311 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1312 |
|
|
); |
1313 |
|
|
// |
1314 |
|
|
$links[] = array( |
1315 |
|
|
"href" => "../scr/tab.php?obj=parcelle_lot", |
1316 |
|
|
"class" => "parcelle_lot", |
1317 |
|
|
"title" => _("parcelle_lot"), |
1318 |
|
|
"right" => array("parcelle_lot", "parcelle_lot_tab"), |
1319 |
|
|
"open" => array("tab.php|parcelle_lot", "form.php|parcelle_lot", ), |
1320 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1321 |
|
|
); |
1322 |
|
|
// |
1323 |
|
|
$rubrik['links'] = $links; |
1324 |
|
|
// |
1325 |
|
|
$menu[] = $rubrik; |
1326 |
|
|
// }}} |
1327 |
|
|
|
1328 |
|
|
// {{{ Rubrique ADMINISTRATION |
1329 |
|
|
// |
1330 |
|
|
$rubrik = array( |
1331 |
|
|
"title" => _("administration"), |
1332 |
|
|
"class" => "administration", |
1333 |
|
|
"right" => "menu_administration", |
1334 |
|
|
); |
1335 |
|
|
// |
1336 |
|
|
$links = array(); |
1337 |
|
|
// |
1338 |
|
|
$links[] = array( |
1339 |
|
|
"href" => "../scr/tab.php?obj=om_collectivite", |
1340 |
|
|
"class" => "collectivite", |
1341 |
|
|
"title" => _("om_collectivite"), |
1342 |
|
|
"right" => array("om_collectivite", "om_collectivite_tab", ), |
1343 |
|
|
"open" => array("tab.php|om_collectivite", "form.php|om_collectivite", ), |
1344 |
|
|
); |
1345 |
|
|
// |
1346 |
|
|
$links[] = array( |
1347 |
|
|
"href" => "../scr/tab.php?obj=om_parametre", |
1348 |
|
|
"class" => "parametre", |
1349 |
|
|
"title" => _("om_parametre"), |
1350 |
|
|
"right" => array("om_parametre", "om_parametre_tab", ), |
1351 |
|
|
"open" => array("tab.php|om_parametre", "form.php|om_parametre", ), |
1352 |
|
|
); |
1353 |
|
|
// |
1354 |
|
|
$links[] = array( |
1355 |
|
|
"class" => "category", |
1356 |
|
|
"title" => _("gestion des utilisateurs"), |
1357 |
|
|
"right" => array( |
1358 |
|
|
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1359 |
|
|
"om_droit", "om_droit_tab", "directory", |
1360 |
|
|
), |
1361 |
|
|
); |
1362 |
|
|
// |
1363 |
|
|
$links[] = array( |
1364 |
|
|
"title" => "<hr/>", |
1365 |
|
|
"right" => array( |
1366 |
|
|
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
1367 |
|
|
"om_droit", "om_droit_tab", |
1368 |
|
|
), |
1369 |
|
|
); |
1370 |
|
|
// |
1371 |
|
|
$links[] = array( |
1372 |
|
|
"href" => "../scr/tab.php?obj=om_profil", |
1373 |
|
|
"class" => "profil", |
1374 |
|
|
"title" => _("om_profil"), |
1375 |
|
|
"right" => array("om_profil", "om_profil_tab", ), |
1376 |
|
|
"open" => array("tab.php|om_profil", "form.php|om_profil", ), |
1377 |
|
|
); |
1378 |
|
|
// |
1379 |
|
|
$links[] = array( |
1380 |
|
|
"href" => "../scr/tab.php?obj=om_droit", |
1381 |
|
|
"class" => "droit", |
1382 |
|
|
"title" => _("om_droit"), |
1383 |
|
|
"right" => array("om_droit", "om_droit_tab", ), |
1384 |
|
|
"open" => array("tab.php|om_droit", "form.php|om_droit", ), |
1385 |
|
|
); |
1386 |
|
|
// |
1387 |
|
|
$links[] = array( |
1388 |
|
|
"href" => "../scr/tab.php?obj=om_utilisateur", |
1389 |
|
|
"class" => "utilisateur", |
1390 |
|
|
"title" => _("om_utilisateur"), |
1391 |
|
|
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
1392 |
|
|
"open" => array( |
1393 |
|
|
"tab.php|om_utilisateur", |
1394 |
|
|
"form.php|om_utilisateur[action=0]", |
1395 |
|
|
"form.php|om_utilisateur[action=1]", |
1396 |
|
|
"form.php|om_utilisateur[action=2]", |
1397 |
|
|
"form.php|om_utilisateur[action=3]", |
1398 |
|
|
), |
1399 |
|
|
); |
1400 |
|
|
// |
1401 |
|
|
$links[] = array( |
1402 |
|
|
"title" => "<hr/>", |
1403 |
|
|
"right" => array("om_utilisateur", "om_utilisateur_synchroniser", ), |
1404 |
|
|
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1405 |
|
|
); |
1406 |
|
|
// |
1407 |
|
|
$links[] = array( |
1408 |
|
|
"href" => "../scr/form.php?obj=om_utilisateur&idx=0&action=11", |
1409 |
|
|
"class" => "annuaire", |
1410 |
|
|
"title" => _("annuaire"), |
1411 |
|
|
"right" => array("om_utilisateur", "om_utilisateur_synchroniser", ), |
1412 |
|
|
"open" => array("form.php|om_utilisateur[action=11]", ), |
1413 |
|
|
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
1414 |
|
|
); |
1415 |
|
|
// |
1416 |
|
|
$links[] = array( |
1417 |
|
|
"class" => "category", |
1418 |
|
|
"title" => _("tableaux de bord"), |
1419 |
|
|
"right" => array( |
1420 |
|
|
"om_widget", "om_widget_tab", "om_dashboard", |
1421 |
|
|
), |
1422 |
|
|
); |
1423 |
|
|
// |
1424 |
|
|
$links[] = array( |
1425 |
|
|
"title" => "<hr/>", |
1426 |
|
|
"right" => array( |
1427 |
|
|
"om_widget", "om_widget_tab", "om_dashboard", |
1428 |
|
|
), |
1429 |
|
|
); |
1430 |
|
|
// |
1431 |
|
|
$links[] = array( |
1432 |
|
|
"href" => "../scr/tab.php?obj=om_widget", |
1433 |
|
|
"class" => "om_widget", |
1434 |
|
|
"title" => _("om_widget"), |
1435 |
|
|
"right" => array("om_widget", "om_widget_tab", ), |
1436 |
|
|
"open" => array("tab.php|om_widget", "form.php|om_widget", ), |
1437 |
|
|
); |
1438 |
|
|
// |
1439 |
|
|
$links[] = array( |
1440 |
|
|
"href" => "../scr/dashboard_composer.php", |
1441 |
|
|
"class" => "om_dashboard", |
1442 |
|
|
"title" => _("composition"), |
1443 |
|
|
"right" => array("om_dashboard", ), |
1444 |
|
|
"open" => array("dashboard_composer.php|", ), |
1445 |
|
|
); |
1446 |
|
|
// |
1447 |
|
|
$links[] = array( |
1448 |
|
|
"class" => "category", |
1449 |
|
|
"title" => _("sig"), |
1450 |
|
|
"right" => array( |
1451 |
|
|
"om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab", |
1452 |
|
|
), |
1453 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1454 |
|
|
); |
1455 |
|
|
// |
1456 |
|
|
$links[] = array( |
1457 |
|
|
"title" => "<hr/>", |
1458 |
|
|
"right" => array( |
1459 |
|
|
"om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab", |
1460 |
|
|
), |
1461 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1462 |
|
|
); |
1463 |
|
|
// |
1464 |
|
|
$links[] = array( |
1465 |
|
|
"href" => "../scr/tab.php?obj=om_sig_extent", |
1466 |
|
|
"class" => "om_sig_extent", |
1467 |
|
|
"title" => _("om_sig_extent"), |
1468 |
|
|
"right" => array("om_sig_extent", "om_sig_extent_tab", ), |
1469 |
|
|
"open" => array("tab.php|om_sig_extent", "form.php|om_sig_extent", ), |
1470 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1471 |
|
|
); |
1472 |
|
|
// |
1473 |
|
|
$links[] = array( |
1474 |
|
|
"href" => "../scr/tab.php?obj=om_sig_map", |
1475 |
|
|
"class" => "om_sig_map", |
1476 |
|
|
"title" => _("om_sig_map"), |
1477 |
|
|
"right" => array("om_sig_map", "om_sig_map_tab", ), |
1478 |
|
|
"open" => array("tab.php|om_sig_map", "form.php|om_sig_map", ), |
1479 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1480 |
|
|
); |
1481 |
|
|
// |
1482 |
|
|
$links[] = array( |
1483 |
|
|
"href" => "../scr/tab.php?obj=om_sig_flux", |
1484 |
|
|
"class" => "om_sig_flux", |
1485 |
|
|
"title" => _("om_sig_flux"), |
1486 |
|
|
"right" => array("om_sig_flux", "om_sig_flux_tab", ), |
1487 |
|
|
"open" => array("tab.php|om_sig_flux", "form.php|om_sig_flux", ), |
1488 |
|
|
"parameters" => array("option_localisation" => "sig_interne", ), |
1489 |
|
|
); |
1490 |
|
|
// |
1491 |
|
|
$links[] = array( |
1492 |
|
|
"class" => "category", |
1493 |
|
|
"title" => _("options avancees"), |
1494 |
|
|
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
1495 |
|
|
"om_sousetat", "om_sousetat_tab",), |
1496 |
|
|
); |
1497 |
|
|
// |
1498 |
|
|
$links[] = array( |
1499 |
|
|
"title" => "<hr/>", |
1500 |
|
|
"right" => array( |
1501 |
|
|
"om_sousetat", "om_sousetat_tab", |
1502 |
|
|
), |
1503 |
|
|
); |
1504 |
|
|
// |
1505 |
|
|
$links[] = array( |
1506 |
|
|
"href" => "../scr/tab.php?obj=om_sousetat", |
1507 |
|
|
"class" => "om_sousetat", |
1508 |
|
|
"title" => _("om_sousetat"), |
1509 |
|
|
"right" => array("om_sousetat", "om_sousetat_tab", ), |
1510 |
|
|
"open" => array("tab.php|om_sousetat", "form.php|om_sousetat", ), |
1511 |
|
|
); |
1512 |
|
|
// |
1513 |
|
|
$links[] = array( |
1514 |
|
|
"title" => "<hr/>", |
1515 |
|
|
"right" => array("om_requete", "om_requete_tab", ), |
1516 |
|
|
); |
1517 |
|
|
// |
1518 |
|
|
$links[] = array( |
1519 |
|
|
"href" => "../scr/tab.php?obj=om_requete", |
1520 |
|
|
"class" => "om_requete", |
1521 |
|
|
"title" => _("om_requete"), |
1522 |
|
|
"right" => array("om_requete", "om_requete_tab", ), |
1523 |
|
|
"open" => array("tab.php|om_requete", "form.php|om_requete", ), |
1524 |
|
|
); |
1525 |
|
|
// |
1526 |
|
|
$links[] = array( |
1527 |
|
|
"title" => "<hr/>", |
1528 |
|
|
"right" => array("import", ), |
1529 |
|
|
); |
1530 |
|
|
// |
1531 |
|
|
$links[] = array( |
1532 |
|
|
"href" => "../scr/import.php", |
1533 |
|
|
"class" => "import", |
1534 |
|
|
"title" => _("Import"), |
1535 |
|
|
"right" => array("import", ), |
1536 |
|
|
"open" => array("import.php|", ), |
1537 |
|
|
); |
1538 |
|
|
// |
1539 |
|
|
$links[] = array( |
1540 |
|
|
"href" => "../app/import_specific.php", |
1541 |
|
|
"class" => "import_specific", |
1542 |
|
|
"title" => _("Import specifique"), |
1543 |
|
|
"right" => array("import", ), |
1544 |
|
|
"open" => array("import_specific.php|", ), |
1545 |
|
|
); |
1546 |
|
|
// |
1547 |
|
|
$links[] = array( |
1548 |
|
|
"title" => "<hr/>", |
1549 |
|
|
"right" => array("gen", ), |
1550 |
|
|
); |
1551 |
|
|
// |
1552 |
|
|
$links[] = array( |
1553 |
|
|
"title" => _("Generateur"), |
1554 |
|
|
"href" => "../scr/gen.php", |
1555 |
|
|
"class" => "generator", |
1556 |
|
|
"right" => array("gen", ), |
1557 |
|
|
"open" => array( |
1558 |
|
|
"gen.php|","genauto.php|", "gensup.php|", "genfull.php|", |
1559 |
|
|
"genetat.php|", "gensousetat.php|", "genlettretype.php|", |
1560 |
|
|
"genimport.php|", |
1561 |
|
|
), |
1562 |
|
|
); |
1563 |
|
|
// |
1564 |
|
|
$rubrik['links'] = $links; |
1565 |
|
|
// |
1566 |
|
|
$menu[] = $rubrik; |
1567 |
|
|
// }}} |
1568 |
|
|
|
1569 |
|
|
?> |