Blame view

src/Template/Element/menu_view.ctp 13.3 KB
63c3cb16   epallier   Nombreux petits b...
1
<?php
f4e6dc02   Alexandre   Version: 2.5.2.0
2
3
4
use Cake\ORM\TableRegistry;
?>

4260780b   Alexandre   Migration vue, co...
5
6
7
<h3 style="margin-top: 20px;"><?php echo $pluralHumanName;?></h3>
<ul>
	<?php
63c3cb16   epallier   Nombreux petits b...
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * menu_vieuw.ctp
 * Lower left menu bar definition
 * Buttons definition and action : "retour a la liste" + "Edit" + "Suppr."
 * Used with dom, categorie,sscat, emprunt, suivi, utilisateur
 */
$t = strtolower($singularHumanName);
$t = str_replace('groupes', 'groupe', $t);
$t = str_replace('thematique', 'thémat.', $t);
$t = str_replace('metier', 'métier', $t);
$t = str_replace('categorie', 'catégorie', $t);
$t = str_replace('unite', 'unité', $t);
?>
4260780b   Alexandre   Migration vue, co...
21
22
23
	<!-- RETOUR action -->
	<li>
		<?php
63c3cb16   epallier   Nombreux petits b...
24
25
26
27
28
29
30
31
32
33
34
if ($this->request->session()->read("retourForm1")) {
    echo $this->Html->link('<i class="icon-arrow-left"></i> Retour', 'javascript:window.history.go(-2)', [
        'escape' => false
    ]);
} else {
    echo $this->Html->link('<i class="icon-arrow-left"></i> Retour', 'javascript:window.history.go(-1)', [
        'escape' => false
    ]);
}

?>
4260780b   Alexandre   Migration vue, co...
35
	</li>
63c3cb16   epallier   Nombreux petits b...
36

4260780b   Alexandre   Migration vue, co...
37
38
	<!-- EDIT action -->
	<li><?php
63c3cb16   epallier   Nombreux petits b...
39
$isAuthorized = false;
9fc6b8a2   Alexandre   Version: 2.4.2.6
40

63c3cb16   epallier   Nombreux petits b...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
if ($singularHumanName == 'Matériel') {
    if (in_array($materiel->status, [
        'CREATED',
        'VALIDATED'
    ])) {
        if ((($role == 'Utilisateur' || $role == 'Responsable') && (in_array($username, [
            $materiel->nom_createur,
            $materiel->nom_responsable
        ]))) || (in_array($role, [
            'Administration',
            'Administration Plus',
            'Super Administrateur'
        ]))) {
            $isAuthorized = true;
        } else if ($role == 'Responsable') {
            if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id) {
                $isAuthorized = true;
            } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $materiel->groupes_thematique_id == $priviledgedUser->groupe_thematique_id) {
                $isAuthorized = true;
            } else {
                $isAuthorized = false;
            }
        }
    } else {
        if (in_array($role, [
            'Administration Plus',
            'Super Administrateur'
        ])) {
            $isAuthorized = true;
        }
    }
} else if (in_array($singularHumanName, [
    'Suivi',
    'Emprunt'
])) {
    if (in_array($role, [
        'Administration',
        'Administration Plus',
        'Super Administrateur'
    ])) {
        $isAuthorized = true;
    } else {
        if ($singularHumanName == 'Suivi') {
            if (in_array($username, [
                $suivi->nom_createur
            ])) {
                $isAuthorized = true;
            } else if ($role == 'Responsable') {
                if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $priviledgedUser->groupes_metier_id) {
                    $isAuthorized = true;
                } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $priviledgedUser->groupe_thematique_id) {
                    $isAuthorized = true;
                } else {
                    $isAuthorized = false;
                }
            }
        } else {
            if (in_array($username, [
                $emprunt->nom_createur,
                $emprunt->nom_emprunteur
            ])) {
                $isAuthorized = true;
            } else if ($role == 'Responsable') {
                $isAuthorized = true;
            }
        }
    }
} else if ($singularHumanName == 'Utilisateur') {
    if ($role == 'Super Administrateur') {
        $isAuthorized = true;
    }
} else if ($singularHumanName == 'Fournisseur') {
    if ($role == 'Super Administrateur') {
        $isAuthorized = true;
    } else if ($role == 'Administration') {
        $isAuthorized = true;
    }
} else if ($singularHumanName == 'Document') {
    if (in_array($role, [
        'Administration',
        'Administration Plus',
        'Super Administrateur'
    ])) {
        $isAuthorized = true;
    }
    $doc = TableRegistry::get('Documents')->get((int) $this->request->getAttribute('params')['pass'][0]);
    
    $id = $doc->get('materiel_id');
    
    if (empty($id)) {
        $id = $doc->get('suivi_id');
        if ($role == 'Responsable') {
            $suiviTable = TableRegistry::get('Suivis');
            if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa) {
                $isAuthorized = ($suiviTable->exists([
                    'id' => $id,
                    'groupes_metier_id' => $priviledgedUser->groupes_metier_id
                ]));
            } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa) {
                $isAuthorized = ($suiviTable->exists([
                    'id' => $id,
                    'groupes_thematique_id' => $priviledgedUser->groupe_thematique_id
                ]));
            } else {
                $isAuthorized = false;
            }
        }
        if ($role == 'Utilisateur') {
            $isAuthorized = $suiviTable->exists([
                'id' => $id,
                'nom_createur' => $username
            ]);
        }
    } else {
        $materielTable = TableRegistry::get('Materiels');
        if ($role == 'Responsable') {
            
            if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa) {
                $isAuthorized = ($materielTable->exists([
                    'id' => $id,
                    'groupes_metier_id' => $priviledgedUser->groupes_metier_id
                ]));
            } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa) {
                $isAuthorized = ($materielTable->exists([
                    'id' => $id,
                    'groupes_thematique_id' => $priviledgedUser->groupe_thematique_id
                ]));
            } else {
                $isAuthorized = false;
            }
        }
        if ($role == 'Utilisateur') {
            $isAuthorized = ($materielTable->exists([
                'id' => $id,
                'nom_createur' => $username
            ]) || $materielTable->exists([
                'id' => $id,
                'nom_responsable' => $username
            ]));
        }
    }
} else if ($singularHumanName == 'Formulaire') {
    
    $isAuthorized = false;
} else {
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        $isAuthorized = true;
    }
}
if ($isAuthorized == true) {
    $action = '';
    if (strstr($t, 'catégorie') || strstr($t, 'unité') || strstr($t, 'formule'))
        $action = ' Editer cette';
    elseif (strstr($t, 'utilisateur') || strstr($t, 'emprunt'))
        $action = ' Editer cet';
    else
        $action = ' Editer ce';
    
    $action = "$action $t";
    
    echo $this->Html->link('<i class="icon-pencil"></i>' . $action, [
        'action' => 'edit',
        $lien
    ], [
        'escape' => false,
        'onclick' => 'return true;'
    ]);
}
9fc6b8a2   Alexandre   Version: 2.4.2.6
212

63c3cb16   epallier   Nombreux petits b...
213
?>
4260780b   Alexandre   Migration vue, co...
214
	</li>
63c3cb16   epallier   Nombreux petits b...
215

4260780b   Alexandre   Migration vue, co...
216
217
	<!-- DELETE action -->
	<li>
63c3cb16   epallier   Nombreux petits b...
218
219
		<?php
$isAuthorized = false;
602e9d7a   Alexandre   Version: 2.5.5.0
220

63c3cb16   epallier   Nombreux petits b...
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
if ($singularHumanName == 'Matériel') {
    if ($materiel->status == 'CREATED') {
        if ((($role == 'Utilisateur' || $role == 'Responsable') && (in_array($username, [
            $materiel->nom_createur,
            $materiel->nom_responsable
        ]))) || (in_array($role, [
            'Administration',
            'Administration Plus',
            'Super Administrateur'
        ]))) {
            $isAuthorized = true;
        } else if ($role == 'Responsable') {
            if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id) {
                $isAuthorized = true;
            } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $materiel->groupes_thematique_id == $priviledgedUser->groupe_thematique_id) {
                $isAuthorized = true;
            } else {
                $isAuthorized = false;
            }
        }
    }
} else if (in_array($singularHumanName, [
    'Suivi',
    'Emprunt'
])) {
    if (in_array($role, [
        'Administration',
        'Administration Plus',
        'Super Administrateur'
    ])) {
        $isAuthorized = true;
    } else {
        if ($singularHumanName == 'Suivi') {
            if (in_array($username, [
                $suivi->nom_createur
            ])) {
                $isAuthorized = true;
            } else if ($role == 'Responsable') {
                if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $priviledgedUser->groupes_metier_id) {
                    $isAuthorized = true;
                } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $priviledgedUser->groupe_thematique_id) {
                    $isAuthorized = true;
                } else {
                    $isAuthorized = false;
                }
            }
        } else {
            if (in_array($username, [
                $emprunt->nom_createur,
                $emprunt->nom_emprunteur
            ])) {
                $isAuthorized = true;
            } else if ($role == 'Responsable') {
                $isAuthorized = true;
            }
        }
    }
} else if ($singularHumanName == 'Document') {
    if (in_array($role, [
        'Administration',
        'Administration Plus',
        'Super Administrateur'
    ])) {
        $isAuthorized = true;
    }
    $doc = TableRegistry::get('Documents')->get((int) $this->request->getAttribute('params')['pass'][0]);
    
    $id = $doc->get('materiel_id');
    
    if (empty($id)) {
        $id = $doc->get('suivi_id');
        if ($role == 'Responsable') {
            $suiviTable = TableRegistry::get('Suivis');
            if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa) {
                $isAuthorized = ($suiviTable->exists([
                    'id' => $id,
                    'groupes_metier_id' => $priviledgedUser->groupes_metier_id
                ]));
            } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa) {
                $isAuthorized = ($suiviTable->exists([
                    'id' => $id,
                    'groupes_thematique_id' => $priviledgedUser->groupe_thematique_id
                ]));
            } else {
                $isAuthorized = false;
            }
        }
        if ($role == 'Utilisateur') {
            $isAuthorized = $suiviTable->exists([
                'id' => $id,
                'nom_createur' => $username
            ]);
        }
    } else {
        $materielTable = TableRegistry::get('Materiels');
        if ($role == 'Responsable') {
            if (isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa) {
                $isAuthorized = ($materielTable->exists([
                    'id' => $id,
                    'groupes_metier_id' => $priviledgedUser->groupes_metier_id
                ]));
            } else if (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa) {
                $isAuthorized = ($materielTable->exists([
                    'id' => $id,
                    'groupes_thematique_id' => $priviledgedUser->groupe_thematique_id
                ]));
            } else {
                $isAuthorized = false;
            }
        }
        if ($role == 'Utilisateur') {
            $isAuthorized = ($materielTable->exists([
                'id' => $id,
                'nom_createur' => $username
            ]) || $materielTable->exists([
                'id' => $id,
                'nom_responsable' => $username
            ]));
        }
    }
} else {
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        $isAuthorized = true;
    }
}
b9143fb9   Alexandre   Ajout page pdo_er...
348

63c3cb16   epallier   Nombreux petits b...
349
if ($isAuthorized == true) {
5b54a286   mimelhaine   Version master pe...
350
	$determinant = '';
63c3cb16   epallier   Nombreux petits b...
351
    $action = '';
5b54a286   mimelhaine   Version master pe...
352
    if (strstr($t, 'catégorie') || strstr($t, 'unité') || strstr($t, 'formule')) {
63c3cb16   epallier   Nombreux petits b...
353
        $action = ' Supprimer cette';
5b54a286   mimelhaine   Version master pe...
354
355
        $determinant = 'cette';      
    } elseif (strstr($t, 'utilisateur') || strstr($t, 'emprunt')) {
63c3cb16   epallier   Nombreux petits b...
356
        $action = ' Supprimer cet';
5b54a286   mimelhaine   Version master pe...
357
358
        $determinant = 'cet';
    } else {
63c3cb16   epallier   Nombreux petits b...
359
        $action = ' Supprimer ce';
5b54a286   mimelhaine   Version master pe...
360
361
        $determinant = 'ce';
    }
63c3cb16   epallier   Nombreux petits b...
362
363
364
365
366
367
    
    echo $this->Form->postLink('<i class="icon-trash"></i>' . $action . ' ' . $t, [
        'action' => 'delete',
        $lien
    ], [
        'escape' => false,
5b54a286   mimelhaine   Version master pe...
368
        'confirm' => __('Êtes-vous sur de vouloir supprimer '.$determinant.' '. $t . ' ?')
63c3cb16   epallier   Nombreux petits b...
369
370
371
    ]);
}

5b54a286   mimelhaine   Version master pe...
372
373
374
375
376





63c3cb16   epallier   Nombreux petits b...
377
?>
4260780b   Alexandre   Migration vue, co...
378
	</li>
5b54a286   mimelhaine   Version master pe...
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
	
	<li>
	
	<?php 
	//Add action dans le cas des utilisateurs, et pour le superadmin
	//cela évite de devoir quitter la page pour repartir à la liste des utilisateurs pour faire un ajout
	
	
	if ($role == 'Super Administrateur' && strstr($t, 'utilisateur')) {
		$action = ' Ajouter un';
		echo $this->Form->postLink('<i class="icon-trash"></i>' . $action . ' ' . $t, [
				'action' => 'add',
				$lien
		], [
				'escape' => false,
				'confirm' => __('Êtes-vous sur de vouloir quitter la page pour ajouter un utilisateur ?')
		]);
	}
	
	
	?>
	</li>
9fc6b8a2   Alexandre   Version: 2.4.2.6
401
</ul>