Blame view

src/Template/Categories/index.ctp 1.91 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
3
<div class="categories index">
<?php echo '<h2><i class="icon-list"></i> Liste des catégories</h2>'; ?>
d653b27f   Thibaud Ajas   Correction de fau...
4
    <table style="border-collapse: separate; border-spacing: 0;">
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>
				<th><?= $this->Paginator->sort('sur_categorie_id', 'Domaine') ?></th>

			</tr>
		</thead>
		<tbody>
6c4edfa3   Alexandre   First Commit LabI...
14
15
            <?php foreach ($categories as $category): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
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', $category->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', $category->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $category->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

63c3cb16   epallier   Nombreux petits b...
26
27
28
29
30
31
				<td class="smallText"><?= $this->Html->link($category->nom, ['action' => 'view', $category->id]) ?></td>
				<td class="smallText"><?= $category->has('sur_category') ? $this->Html->link($category->sur_category->nom, ['controller' => 'SurCategories', 'action' => 'view', $category->sur_category->id]) : '' ?></td>



			</tr>
6c4edfa3   Alexandre   First Commit LabI...
32
33
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
34
	</table>
9478e982   Etienne Pallier   refactorisation d...
35
36
37
38
	
	<?php echo $this->element('pagination_with_first_and_last'); ?> 
	

6c4edfa3   Alexandre   First Commit LabI...
39
</div>
4260780b   Alexandre   Migration vue, co...
40

63c3cb16   epallier   Nombreux petits b...
41
<div class="actions">
4260780b   Alexandre   Migration vue, co...
42
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
43
44
45
46
47
48
			<?php

echo $this->element('menu_index', [
    'pluralHumanName' => 'Catégories',
    'singularHumanName' => 'Catégorie'
])?>
4260780b   Alexandre   Migration vue, co...
49
		</div>