menu_view.ctp
4.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
<h3 style="margin-top: 20px;"><?php echo $pluralHumanName;?></h3>
<ul>
<?php
/**
* 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);
?>
<!-- RETOUR action -->
<li>
<?php
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]);
}
?>
</li>
<!-- EDIT action -->
<li><?php
$isAuthorized = false;
if($singularHumanName == 'Matériel') {
if (in_array($materiel->status, ['CREATED', 'VALIDATED'])) {
if(($role == 'Utilisateur' && (in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]))) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id)) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))) {
$isAuthorized = true;
}
}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' && ($suivi->groupes_metier_id == $userConnected->groupes_metier_id || $suivi->groupes_thematique_id == $userConnected->groupe_thematique_id)) {
$isAuthorized = true;
}
} 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 (in_array($role, ['Administration Plus', 'Super Administrateur'])) {
$isAuthorized = true;
}
}
if ($isAuthorized == true) {
$action = '';
if(strstr($t, 'catégorie'))
$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;']
);
}
?>
</li>
<!-- DELETE action -->
<li>
<?php
$isAuthorized = false;
if($singularHumanName == 'Matériel') {
if ($materiel->status == 'CREATED') {
if(($role == 'Utilisateur' && (in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]))) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id)) || (in_array($role, ['Administration', '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' && ($suivi->groupes_metier_id == $userConnected->groupes_metier_id || $suivi->groupes_thematique_id == $userConnected->groupe_thematique_id)) {
$isAuthorized = true;
}
} else {
if(in_array($username, [$emprunt->nom_createur, $emprunt->nom_emprunteur])) {
$isAuthorized = true;
}
else if ($role == 'Responsable') {
$isAuthorized = true;
}
}
}
}
else {
if (in_array($role, ['Super Administrateur'])) {
$isAuthorized = true;
}
}
if($isAuthorized == true) {
$action = '';
if(strstr($t, 'catégorie'))
$action = ' Supprimer cette';
elseif ( strstr($t, 'utilisateur') || strstr($t, 'emprunt') )
$action = ' Supprimer cet';
else
$action = ' Supprimer ce';
echo $this->Form->postLink('<i class="icon-trash"></i>' . $action . ' ' . $t,
['action' => 'delete', $lien],
['escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer '.$lien.' ?')]);
}
?>
</li>
</ul>