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