tools_menu_sm.ctp
2.38 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
<div class="index">
<h2>
<i class="icon-wrench"></i> Voir les autres listes
</h2>
<table style="border-collapse: separate; border-spacing: 0;">
<tr>
<th></th>
</tr>
<?php
echo '<tr><td>';
echo $this->Html->link('Liste des Catégories', [
'controller' => 'pages',
'action' => 'tools_menu_cat'
]);
echo '</td></tr>';
//On restreint l'affichage sur les champs qu'un utilisateur n'a besoin de modifier
if (! $USER_IS_UTILISATEUR) {
echo '<tr><td>';
echo $this->Html->link('Liste des Sites', [
'controller' => 'sites',
'sort' => 'nom'
]);
echo '</td></tr>';
echo '<tr><td>';
echo $this->Html->link('Liste des Organismes', [
'controller' => 'organismes',
'sort' => 'nom'
]);
echo '</td></tr>';
}
echo '<tr><td>';
echo $this->Html->link('Liste des types de Suivis', [
'controller' => 'type_suivis',
'sort' => 'nom'
]);
echo '</td></tr>';
//On restreint l'affichage sur les champs qu'un utilisateur n'a besoin de modifier
if (! $USER_IS_UTILISATEUR) {
$names = explode(" ", $configuration->nom_groupe_thematique);
if (isset($names[1])) {
$nom = $names[0] . 's ' . $names[1] . 's';
} else {
$nom = $names[0] . 's';
}
echo '<tr><td>';
echo $this->Html->link('Liste des ' . $nom, [
'controller' => 'groupes_thematiques',
'sort' => 'nom'
]);
echo '</td></tr>';
$names = explode(" ", $configuration->nom_groupe_metier);
if (isset($names[1])) {
$nom = $names[0] . 's ' . $names[1] . 's';
} else {
$nom = $names[0] . 's';
}
echo '<tr><td>';
echo $this->Html->link('Liste des ' . $nom, [
'controller' => 'groupes_metiers',
'sort' => 'nom'
]);
echo '</td></tr>';
}
echo '<tr><td>';
echo $this->Html->link('Liste des types de Documents', [
'controller' => 'type_documents',
'sort' => 'nom'
]);
echo '</td></tr>';
echo '<tr><td>';
echo $this->Html->link('Liste des Fournisseurs', [
'controller' => 'fournisseurs',
'sort' => 'nom'
]);
echo '</td></tr>';
// METROLOGIE MODULE ONLY
if ($configuration->metrologie) {
//if (! $USER_IS_UTILISATEUR) {
echo '<tr><td>';
echo $this->Html->link('Liste des Unités', [
'controller' => 'unites',
'sort' => 'nom'
]);
echo '</td></tr>';
echo '<tr><td>';
echo $this->Html->link('Liste des Formules', [
'controller' => 'formules',
'sort' => 'nom'
]);
echo '</td></tr>';
}
?>
</table>
</div>
<!--
<div class="actions">
<php echo $this->element('menu') ?>
</div>
-->