view.ctp
1.61 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
<div class="documents view">
<h2>Détail fichier</h2>
<table style="margin-bottom: 30px;">
<tr><th style="width: 250px;"></th><th></th></tr>
<?php
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce fichier'),
['action' => 'edit', $document->id],
['escape' => false,'onclick' => 'return true;']
);
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce fichier'),
['action' => 'delete', $document->id],
['style'=>'margin-left: 110px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $document->id)]
);
$displayElement(__('N°'), 'Fichier '.$this->Number->format($document->id));
$displayElement(__('Chemin'), h($document->chemin));
$displayElement(__('Type'), h($document->type_doc));
$displayElement(__('Materiel'), $document->has('materiel') ? $this->Html->link($document->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $document->materiel->id]) : '');
$displayElement(__('Suivi'), 'Suivi '.$document->has('suivi') ? $this->Html->link('Suivi '.$document->suivi->id, ['controller' => 'Suivis', 'action' => 'view', $document->suivi->id]) : '' );
$displayElement(__('Numéro interne (labo)'), $document->has('materiel') ? h($document->materiel->numero_laboratoire) : '');
?>
</table>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
<?php echo $this->element('menu_view',
[ 'pluralHumanName' => 'Fichiers',
'singularHumanName' => 'Fichier',
'lien' => $document->id ]) ?>
</div>