Blame view

src/Template/Documents/index.ctp 4.9 KB
64fba1a2   Alexandre   Base du projet : ...
1

06938694   Etienne Pallier   Vue liste projets...
2
3
4
5
6
7
<?php 
// Documents attachés photo
$photo_formats = ['png','jpg','jpeg'];
?>


4260780b   Alexandre   Migration vue, co...
8
<div class="documents index">
4fd23929   Alexandre   Version: 2.5.0
9
<?php echo '<h2><i class="icon-list"></i> Liste des documents</h2>'; ?>
b2dade50   Prugniel   modifs Jeanne boo...
10
    <table style="border-collapse: separate; border-spacing: 0; width: 270px;">
63c3cb16   epallier   Nombreux petits b...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
				<th><?= $this->Paginator->sort('materiel_id', 'Materiel') ?></th>
				<th><?= $this->Paginator->sort('suivi_id', 'Suivi') ?></th>
				<th><?= $this->Paginator->sort('type_document_id', 'Type') ?></th>
				<th><?= $this->Paginator->sort('type_doc', 'Extension fichier') ?></th>
				<th><?= $this->Paginator->sort('photo', 'Miniature') ?></th>

			</tr>
		</thead>
		<tbody>
            <?php
            
foreach ($documents as $document) :
                if ($document->photo) {
                    $p = 'Oui';
                } else {
                    $p = '';
                }
                ?>
6c4edfa3   Alexandre   First Commit LabI...
33
            <tr>
63c3cb16   epallier   Nombreux petits b...
34
35
				<td class="actions" style="padding: 6px 0; text-align: left;">
                    <?php
06938694   Etienne Pallier   Vue liste projets...
36
37
38
39
40
                    
                    if (in_array($document->type_doc, $photo_formats)) {
                        // TODO: $echoActionButton()
                        //echo $this->Html->link(__('<i class="icon-download-alt"></i>'), '/webroot/img/photos/' . $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc, [
                        echo $this->Html->link(__('<i class="icon-download-alt"></i>'), '/img/photos/' . $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc, [
63c3cb16   epallier   Nombreux petits b...
41
                        'title' => 'Télécharger',
06938694   Etienne Pallier   Vue liste projets...
42
                        'style' => 'margin:0',
63c3cb16   epallier   Nombreux petits b...
43
                        'escape' => false
06938694   Etienne Pallier   Vue liste projets...
44
45
46
47
48
49
                        ]);
                        // - autre doc (pdf...) from files/
                    } 
                    else {
                        //echo $this->Html->link(__('<i class="icon-download-alt"></i>'), '/webroot/files/' . $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc, [
                        echo $this->Html->link(__('<i class="icon-download-alt"></i>'), '/files/' . $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc, [
63c3cb16   epallier   Nombreux petits b...
50
                        'title' => 'Télécharger',
06938694   Etienne Pallier   Vue liste projets...
51
                        'style' => 'margin:0',
63c3cb16   epallier   Nombreux petits b...
52
                        'escape' => false
06938694   Etienne Pallier   Vue liste projets...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
                        ]);
                    }
                    /*
                    if ($document->photo) {
                        echo $this->Form->postLink(__('<i class="icon-download-alt"></i>'), '/webroot/img/photos/' . $document->id . '.' . $document->type_doc, [
                            'title' => 'Télécharger',
                            'style' => 'margin: 0 2px',
                            'escape' => false
                        ]);
                    } else {
                        echo $this->Form->postLink(__('<i class="icon-download-alt"></i>'), '/webroot/files/' . $document->id . '.' . $document->type_doc, [
                            'title' => 'Télécharger',
                            'style' => 'margin: 0 2px',
                            'escape' => false
                        ]);
                    }
                    */
                    ?>
0ea7290f   Alexandre   Version: 2.5.4.2
71
72
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $document->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false]) ?>
                
ed4c8419   mimelhaine   Test avant merge
73
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $document->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $document->nom)]) ?>
0ea7290f   Alexandre   Version: 2.5.4.2
74
                </td>
63c3cb16   epallier   Nombreux petits b...
75
76

				<td class="smallText"><?= $this->Html->link($document->nom, ['action' => 'view', $document->id]) ?></td>
4fd23929   Alexandre   Version: 2.5.0
77
78
                
                <?php if(!empty($document->materiel_id)) { ?>           
9b4da83b   Alexandre   Version: 2.5.0.0
79
                	<td class="smallText"><?= $this->Html->link($materiel->find()->where(['id =' => $document->materiel_id])->first()['designation'], ['controller' => 'Materiels', 'action' => 'view', $document->materiel_id]) ?></td>
63c3cb16   epallier   Nombreux petits b...
80
				<td class="smallText"></td>
4fd23929   Alexandre   Version: 2.5.0
81
                <?php } else {?>
9b4da83b   Alexandre   Version: 2.5.0.0
82
                	<td class="smallText"></td>
63c3cb16   epallier   Nombreux petits b...
83
				<td class="smallText"><?= $this->Html->link('Suivi '.$document->suivi_id, ['controller' => 'Suivis', 'action' => 'view', $document->suivi_id]) ?></td>
4fd23929   Alexandre   Version: 2.5.0
84
				<?php }  ?>
9b4da83b   Alexandre   Version: 2.5.0.0
85
86
87

				<td class="smallText"><?= $document->has('type_document') ? h($document->type_document->nom) : '' ?></td>
				<td class="smallText"><?= h($document->type_doc) ?></td>
4dae83a2   Alexandre   Version: 2.5.1.0
88
				<td class="smallText"><?= $p ?></td>
4260780b   Alexandre   Migration vue, co...
89

0ea7290f   Alexandre   Version: 2.5.4.2
90

63c3cb16   epallier   Nombreux petits b...
91
			</tr>
4dae83a2   Alexandre   Version: 2.5.1.0
92
            <?php  endforeach; ?>
6c4edfa3   Alexandre   First Commit LabI...
93
        </tbody>
63c3cb16   epallier   Nombreux petits b...
94
	</table>
4260780b   Alexandre   Migration vue, co...
95

9478e982   Etienne Pallier   refactorisation d...
96
97
	<?php echo $this->element('pagination'); ?> 
    
6c4edfa3   Alexandre   First Commit LabI...
98
</div>
4260780b   Alexandre   Migration vue, co...
99

b2dade50   Prugniel   modifs Jeanne boo...
100
<!--
63c3cb16   epallier   Nombreux petits b...
101
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
102
103
104
			<php echo $this->element('menu') ?>
		</div>
-->