Blame view

src/Template/Sites/index.ctp 1.76 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
3
<div class="sites index">
<?php echo '<h2><i class="icon-list"></i> Liste des sites</h2>'; ?>
b2dade50   Prugniel   modifs Jeanne boo...
4
    <table style="border-collapse: separate; border-spacing: 0; width: 270px;">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
10
11
12
13
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>

			</tr>
		</thead>
		<tbody>
            <?php
b2b6828b   Alexandre   Version: 2.4.6.7
14
            
63c3cb16   epallier   Nombreux petits b...
15
16
17
18
foreach ($sites as $site) :
                
                if ($site->id != 9) {
                    ?>
b2b6828b   Alexandre   Version: 2.4.6.7
19
20
            
            
6c4edfa3   Alexandre   First Commit LabI...
21
            <tr>
63c3cb16   epallier   Nombreux petits b...
22
				<td class="actions" style="padding: 6px 0; text-align: left;">             
08d8dbb0   Alexandre   Version: 2.4.2.14
23
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
24
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $site->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
25
26
27
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
28
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $site->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $site->id)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
29
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
30
                </td>
63c3cb16   epallier   Nombreux petits b...
31
32

				<td class="smallText"><?= $this->Html->link($site->nom, ['action' => 'view', $site->id]) ?></td>
0ea7290f   Alexandre   Version: 2.5.4.2
33
34


96b028a1   Alexandre   Migration de tout...
35

63c3cb16   epallier   Nombreux petits b...
36
37
38
39
40
41
42
			</tr>
            <?php
                
}
            endforeach
            ;
            ?>
6c4edfa3   Alexandre   First Commit LabI...
43
        </tbody>
63c3cb16   epallier   Nombreux petits b...
44
	</table>
96b028a1   Alexandre   Migration de tout...
45

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

b2dade50   Prugniel   modifs Jeanne boo...
50
<!--
63c3cb16   epallier   Nombreux petits b...
51
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
52
53
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
54
55
56
57
58

echo $this->element('menu_index', [
    'pluralHumanName' => 'Sites',
    'singularHumanName' => 'Site'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
59
60
		</div>
-->