Blame view

src/Template/TypeDocuments/view.ctp 1.29 KB
9b4da83b   Alexandre   Version: 2.5.0.0
1
2

<div class="typeDocuments view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
	<h2>Détail du type de Document</h2>
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
9b4da83b   Alexandre   Version: 2.5.0.0
10
    	
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
33
34
35
36
37
38
39
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce type de Document'), [
            'action' => 'edit',
            $typeDocument->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce type de Document'), [
            'action' => 'delete',
            $typeDocument->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $typeDocument->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($typeDocument->nom));
    ?>
9b4da83b   Alexandre   Version: 2.5.0.0
40
41
42


    </table>
63c3cb16   epallier   Nombreux petits b...
43
44


9b4da83b   Alexandre   Version: 2.5.0.0
45
46
</div>

63c3cb16   epallier   Nombreux petits b...
47
<div class="actions">
9b4da83b   Alexandre   Version: 2.5.0.0
48
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
49
50
51
52
53
54
55
			<?php

echo $this->element('menu_view', [
    'pluralHumanName' => 'Types Documents',
    'singularHumanName' => 'Type Document',
    'lien' => $typeDocument->id
])?>
9b4da83b   Alexandre   Version: 2.5.0.0
56
		</div>