Blame view

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

96b028a1   Alexandre   Migration de tout...
2
3
<div class="sousCategories index">
<?php echo '<h2><i class="icon-list"></i> Liste des sous-catégories</h2>'; ?>
d653b27f   Thibaud Ajas   Correction de fau...
4
    <table style="border-collapse: separate; border-spacing: 0;">
6c4edfa3   Alexandre   First Commit LabI...
5
6
        <thead>
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
7
            	<th class="actions"><?= __('') ?></th>
96b028a1   Alexandre   Migration de tout...
8
9
                <th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
                <th><?= $this->Paginator->sort('categorie_id', 'Catégorie') ?></th>
0ea7290f   Alexandre   Version: 2.5.4.2
10
                
6c4edfa3   Alexandre   First Commit LabI...
11
12
13
14
15
            </tr>
        </thead>
        <tbody>
            <?php foreach ($sousCategories as $sousCategory): ?>
            <tr>
602e9d7a   Alexandre   Version: 2.5.5.0
16
                <td class="actions" style="padding: 6px 0; text-align: left;">         
08d8dbb0   Alexandre   Version: 2.4.2.14
17
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
18
                    <?= $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
19
20
21
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
22
                    <?= $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
23
               		<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
24
                </td>
0ea7290f   Alexandre   Version: 2.5.4.2
25
26
27
28
                <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>


96b028a1   Alexandre   Migration de tout...
29

6c4edfa3   Alexandre   First Commit LabI...
30
31
32
33
            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
96b028a1   Alexandre   Migration de tout...
34

4260780b   Alexandre   Migration vue, co...
35
    <p><?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p>
96b028a1   Alexandre   Migration de tout...
36
37
38
39
40
41
42
    
    <div class="paging" style="color: black;">
    		<?= $this->Paginator->first('<< ' . __(''), ['class' => 'prev']) ?>
            <?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
            <?= $this->Paginator->numbers(['separator' => '']) ?>
            <?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
            <?= $this->Paginator->last(__('') . ' >>', ['class' => 'next']) ?>
6c4edfa3   Alexandre   First Commit LabI...
43
    </div>
96b028a1   Alexandre   Migration de tout...
44

6c4edfa3   Alexandre   First Commit LabI...
45
</div>
4260780b   Alexandre   Migration vue, co...
46
47
48
49
50
51
52

    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_index', 
			[ 'pluralHumanName' => 'Sous-Catégories',
			'singularHumanName' => 'Sous-Catégorie' ]) ?>
		</div>