view.ctp
6.6 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
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
<?php
use App\Controller\SurCategoriesController;
use App\Model\Entity\SurCategory;
$DEBUG=false;
//$DEBUG=true;
// Variables passées par le contrôleur
$role = $role;
$entity = $entity;
$parent_entity_infos=$parent_entity_infos;
/*
$parent_entity_controller_name = $parent_entity_controller_name;
$parent_entity_type_name = $parent_entity_type_name;
$parent_entity_name = $parent_entity_name;
$parent_entity_id = $parent_entity_id;
*/
//$categories = $categories;
//$materiels = $materiels;
$entity_article = $entity_article;
$entity_type_name_singular = $entity_type_name_singular;
$entity_name = $entity_name;
// Liste des entités à afficher (en tant qu'entité associée) :
// En général, par défaut : "Matériels associés" et "Utilisateurs associés"
$entities_list = $entities_list;
// Fonctions
//$displayElement = $displayElement;
//debug($entity);
//debug($entity->getSource());
//exit;
if ($DEBUG) {
$entity_article = 'le ';
$entity_type_name_singular = 'domaine';
//$entity_name = $entity->getMyName();
$entity_name = $entity->nom;
//function displaySectionShowHide($controller_name, $entity_type_name, $title, $id_name, $is_masculine, $name_field_name, $entities) {
$categories = [
'controller_name' => 'Categories',
'entity_type_name' => 'catégorie',
'title' => 'Catégories',
//'id_name' => 'categs',
'is_masculine' => false,
'name_field_name' => 'nom',
'entities' => $categories,
];
//$materiels = $categories;
$materiels = [
'controller_name' => 'Materiels',
'entity_type_name' => 'matériel',
'title' => 'Matériels',
//'id_name' => 'categs',
'is_masculine' => true,
'name_field_name' => 'designation',
'entities' => $materiels,
];
//displaySectionShowHide($this->Html, false, 'Aucune catégorie liée', 'categs', 'Catégories', $categories, 'nom', 'Categories', 'catégorie');
//$this->MyButton->displaySectionShowHide(false, 'Aucune catégorie liée', 'categs', 'Catégories', $categories, 'nom', 'Categories', 'catégorie');
$entities_list = [$categories, $materiels];
}
?>
<!--
<div class="surCategories view">
-->
<div class="Entity view">
<!--
<h2>Détail domaine</h2>
-->
<h2>Informations sur <?=$entity_article.$entity_type_name_singular.' "'.$entity_name.'"'?></h2>
<?= $this->Html->link("Voir toutes les entités (liste)", ['action'=>'index']) ?>
<br />
<br />
<table style="margin-bottom: 30px;">
<tr>
<th style="width: 250px;"></th>
<th></th>
</tr>
<?php
// Lien Editer
if (in_array($role, [
'Administration Plus',
'Super Administrateur'
])) {
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer'), [
'action' => 'edit',
//$surCategory->id
$entity->id
], [
'style' => 'margin-right: 40px; display: inline-block',
'escape' => false,
'onclick' => 'return true;'
]);
}
// Lien Supprimer
if (in_array($role, [
'Super Administrateur'
])) {
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer'), [
'action' => 'delete',
$entity->id
], [
'style' => 'display: inline-block',
'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir supprimer cette entité ?')
//'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $surCategory->id)
]);
}
// Affichage des champs de l'entité (nom, description)
//$displayElement(__('Nom'), h($entity_name));
$this->MyHelper->displayElement(__('Nom'), h($entity_name));
$this->MyHelper->displayElement(__('Description'), h($entity->description));
// Affichage du nom de l'entité parente si elle existe
// (ex: Domaine pour une catégorie, ou catégorie pour une sous-catégorie)
//debug($entity->sur_category->getSource()); // 'SurCategories'
/*
$e = new SurCategory();
debug($e->getSource());
*/
if($parent_entity_infos)
//$this->MyHelper->displayElement(__('Domaine'), h($entity->sur_category->nom));
//$this->MyHelper->displayElement(__(ucfirst($parent_entity_type_name)), h($parent_entity_name));
$this->MyHelper->displayElement(
__(ucfirst($parent_entity_infos['type_name'])),
//$category->has('sur_category') ? $this->Html->link($category->sur_category->nom, [
$this->Html->link($parent_entity_infos['name'], [
'controller' => $parent_entity_infos['controller_name'],
//'controller' => 'SurCategories',
'action' => 'view',
$parent_entity_infos['id']
//$category->sur_category->id
])
);
/*
$this->MyHelper->displayElement(__('Domaine'), $this->Html->link($entity->sur_category->nom, [
'controller' => 'SurCategories',
'action' => 'view',
$entity->sur_category->id
])
);
*/
?>
</table>
<!-- Affichage des entités associées (matériels, utilisateurs, ...) -->
<?php
foreach ($entities_list as $es) {
//debug($es);
//debug($es['entities']);
// function displaySectionShowHide($controller_name, $entity_type_name, $title, $id_name, $is_masculine, $name_field_name, $entities) {
$this->MyHelper->displayAssociatedEntitiesAsSectionShowHide(
$es['controller_name'],
$es['entity_type_name_singular'],
$es['entity_title'],
//$es['id_name'],
$es['is_masculin'],
$es['name_field_label'],
$es['entities']
);
//displaySectionShowHide($this->Html, false, 'Aucune catégorie liée', 'categs', 'Catégories', $categories, 'nom', 'Categories', 'catégorie');
//$this->MyButton->displaySectionShowHide(false, 'Aucune catégorie liée', 'categs', 'Catégories', $categories, 'nom', 'Categories', 'catégorie');
//$this->MyButton->displaySectionShowHide(true, 'Aucun matériel lié', 'materiels', 'Matériels', $materiels, 'designation', 'Materiels', 'matériel');
}
?>
</div>
<!--
<div class="actions">
<php echo $this->element('menu') ?>
<php
echo $this->element('menu_view', [
'pluralHumanName' => 'Domaines',
'singularHumanName' => 'Domaine',
'lien' => $surCategory->id
])?>
</div>
-->