Blame view

src/Template/SousCategories/index.ctp 2 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
<div class="sousCategories index">
8dff32eb   Etienne Pallier   Premiers bugfixes...
3
4
5
6
7

	<?php echo '<h2><i class="icon-list"></i> Liste des sous-catégories</h2>'; ?>
    
    <?=$this->element('button_add'); ?>
    
b2dade50   Prugniel   modifs Jeanne boo...
8
    <table style="border-collapse: separate; border-spacing: 0;width: 270px;">
63c3cb16   epallier   Nombreux petits b...
9
10
11
12
13
14
15
16
17
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
				<th><?= $this->Paginator->sort('categorie_id', 'Catégorie') ?></th>

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


96b028a1   Alexandre   Migration de tout...
33

63c3cb16   epallier   Nombreux petits b...
34
			</tr>
6c4edfa3   Alexandre   First Commit LabI...
35
36
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
37
	</table>
96b028a1   Alexandre   Migration de tout...
38

9478e982   Etienne Pallier   refactorisation d...
39
	<?php echo $this->element('pagination'); ?> 
96b028a1   Alexandre   Migration de tout...
40
    
6c4edfa3   Alexandre   First Commit LabI...
41
</div>
4260780b   Alexandre   Migration vue, co...
42

b2dade50   Prugniel   modifs Jeanne boo...
43
<!--
63c3cb16   epallier   Nombreux petits b...
44
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
45
46
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
47
48
49
50
51

echo $this->element('menu_index', [
    'pluralHumanName' => 'Sous-Catégories',
    'singularHumanName' => 'Sous-Catégorie'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
52
53
		</div>
-->