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