view.ctp
4.65 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
<?php
// Variables passées à cette vue par le controleur
$document = $document;
$parent = $parent;
$parent_controller = $parent_controller;
$PARENT_IS_MATERIEL = $PARENT_IS_MATERIEL;
$parent_name = $PARENT_IS_MATERIEL ? 'matériel' : 'suivi';
$CAN_EDIT = $CAN_EDIT;
$CAN_DELETE = $CAN_DELETE;
// Nouvelles variables définies pour cette vue
$photo_formats = ['png','jpg','jpeg'];
?>
<div class="documents view">
<h2>Détail document</h2>
<?php
// Boutons Edit & Delete
echo $this->element(
'buttons_edit_del', [
'id' => $document->id,
'CAN_EDIT' => $CAN_EDIT,
'CAN_DELETE' => $CAN_DELETE,
'style_num' => 2,
'WITH_DIV' => true,
]);
// Affichage Photo
$doc_name = $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc;
// Seulement les photos :
//$is_doc_photo = $document->type_document->nom == 'Photo';
// Toute image :
$is_doc_photo = in_array($document->type_doc, $photo_formats);
//echo $is_doc_photo;
//debug($document);
//if ($document->photo || $is_doc_photo) {
if ($is_doc_photo) {
//$style = 'max-width: 300px; text-align: center;';
$style = 'max-width: 300px;';
//echo '<div style="text-align: center;">';
echo '<div>';
//echo $this->Html->link('files/' . $doc_name, [
//echo $this->Html->image('photos/' . $doc_name, [
//echo '<strong>Fichier</strong><a href="' . $this->request->webroot . 'files/' . $doc_name . '">Photo</a>';
//if ($document->photo)
echo $this->Html->image('photos/' . $doc_name, [
//echo $this->Html->image('photos/' . $document->id . '.' . $document->type_doc, [
'alt' => 'Photo',
'style' => $style
]);
// $is_doc_photo
//else echo '<img src="'.$this->request->webroot . 'files/' . $doc_name.'" alt="Photo" style="'.$style.'"/>';
//else echo "<img src='{$this->request->webroot}files/$doc_name' alt='Image' style='$style'/>";
echo '</div>';
}
?>
<table style="margin-bottom: 30px;">
<tr>
<th style="width: 250px;"></th>
<th></th>
</tr>
<?php
// - Parent : lien vers le materiel (ou le suivi)
// matériel
//if (isset($materiel)) {
$parent_ref = $PARENT_IS_MATERIEL ? $parent->designation : $parent->intitule.' (suivi#'.$parent->id.')';
$displayElement(__("Lié au $parent_name"), $this->Html->link($parent_ref, [
'controller' => $parent_controller,
'action' => 'view',
$parent->id
]));
/*
// suivi
//else if (isset($suivi)) {
else {
$displayElement(__('Suivi'), $this->Html->link('Suivi ' . $parent->id, [
'controller' => 'Suivis',
'action' => 'view',
$parent->id
]));
}
*/
// - Nom du doc
$displayElement(__('Nom'), h($document->nom));
// - Type
//debug($document);
$displayElement(__('Type'), $document->has('type_document') ? h($document->type_document->nom) : '');
/*
// - Miniature
if ($document->photo) {
$p = 'Oui';
} else {
$p = 'Non';
}
$displayElement(__('Miniature'), $p);
*/
// - Description
echo '<tr><td><strong>' . __('Description') . ' </strong></td><td>' . nl2br($document->description) . '</td></tr>';
// - Extension fichier
$displayElement(__('Extension fichier'), h($document->type_doc));
// - Lien téléchargement
//$doc_name = $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc;
//if ($document->photo) {
if ($is_doc_photo) {
//echo '<tr><td><strong>Fichier</strong></td><td><a href="' . $this->request->webroot . 'webroot/img/photos/' . $document->id . '.' . $document->type_doc . '">Télécharger fichier</a></td></tr>';
echo '<tr><td><strong>Fichier</strong></td><td><a href="' . $this->request->webroot . 'img/photos/' . $doc_name . '">Voir photo</a></td></tr>';
} else {
echo '<tr><td><strong>Fichier</strong></td><td><a href="' . $this->request->webroot . 'files/' . $doc_name . '">Télécharger fichier</a></td></tr>';
}
?>
</table>
</div>
<!--
<div class="actions">
<php echo $this->element('menu') ?>
<php
echo $this->element('menu_view', [
'pluralHumanName' => 'Documents',
'singularHumanName' => 'Document',
'lien' => $document->id
])?>
</div>
-->