Blame view

src/Template/Suivis/view.ctp 1.86 KB
bb6d5bed   Alexandre   Migration des vue...
1
2
3
4
5
6
<?php 
function displayElement($nom, $valeur) {
	if ($valeur != "")
		echo '<tr><td><strong>'.$nom.' </strong></td><td>'.$valeur.'</td></tr>';
}
?>
64fba1a2   Alexandre   Base du projet : ...
7

bb6d5bed   Alexandre   Migration des vue...
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

<div class="suivis view">
    <h2>Détail suivi</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 suivi'),
    		['action' => 'edit', $suivi->id],
    		['escape' => false,'onclick' => 'return true;']
    		);
    echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce suivi'),
    		['action' => 'delete', $suivi->id],
    		['style'=>'margin-left: 140px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $suivi->id)]
    		);
    
    displayElement(__('Materiel'), $suivi->has('materiel') ? $this->Html->link($suivi->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $suivi->materiel->id]) : '');
    displayElement(__('Numéro interne (labo)'), $suivi->has('materiel') ? h($suivi->materiel->numero_laboratoire) : '');
    displayElement(__('Date Intervention'), strftime("%e %B %Y", strtotime(h($suivi->date_controle))));
    displayElement(__('Date Prochaine Intervention'), strftime("%e %B %Y", strtotime(h($suivi->date_prochain_controle))));
    displayElement(__('Type d\'intervention'), h($suivi->type_intervention));
    displayElement(__('Fournisseur'), h($suivi->organisme));
    displayElement(__('Fréquence'), h($suivi->frequence));
    displayElement(__('Commentaire'), h($suivi->commentaire));
    displayElement(__('Date création'), h($suivi->created));
    displayElement(__('Nom du créateur'), h($suivi->nom_createur));
    displayElement(__('Date modification'), h($suivi->modified));
    displayElement(__('Nom du modificateur'), h($suivi->nom_modificateur));
    
    ?>
    
    
6c4edfa3   Alexandre   First Commit LabI...
42
    </table>
bb6d5bed   Alexandre   Migration des vue...
43
44
    
    
6c4edfa3   Alexandre   First Commit LabI...
45
</div>